From f5e2fc75a0a4f1ae0e6c415126c8da449ea72c29 Mon Sep 17 00:00:00 2001 From: Shivani Sharma Date: Wed, 4 Aug 2021 23:38:17 +0100 Subject: [PATCH] Add project files. --- .gitattributes | 63 + .gitignore | 363 + mederly.Android/Assets/AboutAssets.txt | 19 + mederly.Android/MainActivity.cs | 28 + .../Properties/AndroidManifest.xml | 12 + mederly.Android/Properties/AssemblyInfo.cs | 30 + mederly.Android/Resources/AboutResources.txt | 50 + .../Resources/Resource.designer.cs | 19546 ++++++++++++++++ mederly.Android/Resources/drawable/cal.png | Bin 0 -> 23956 bytes mederly.Android/Resources/drawable/dr.png | Bin 0 -> 8707 bytes .../Resources/drawable/drMessage.png | Bin 0 -> 8188 bytes .../Resources/drawable/drVideoChat.png | Bin 0 -> 32346 bytes .../Resources/drawable/message.png | Bin 0 -> 8216 bytes .../Resources/drawable/messageDr.png | Bin 0 -> 15075 bytes mederly.Android/Resources/drawable/nurse.png | Bin 0 -> 49711 bytes .../Resources/drawable/openTeams.png | Bin 0 -> 23726 bytes mederly.Android/Resources/drawable/phone.png | Bin 0 -> 5512 bytes .../Resources/drawable/videoChat.png | Bin 0 -> 22097 bytes .../Resources/mipmap-anydpi-v26/icon.xml | 5 + .../mipmap-anydpi-v26/icon_round.xml | 5 + .../Resources/mipmap-hdpi/icon.png | Bin 0 -> 4754 bytes .../mipmap-hdpi/launcher_foreground.png | Bin 0 -> 11695 bytes .../Resources/mipmap-mdpi/icon.png | Bin 0 -> 2807 bytes .../mipmap-mdpi/launcher_foreground.png | Bin 0 -> 6439 bytes .../Resources/mipmap-xhdpi/icon.png | Bin 0 -> 7028 bytes .../mipmap-xhdpi/launcher_foreground.png | Bin 0 -> 17898 bytes .../Resources/mipmap-xxhdpi/icon.png | Bin 0 -> 12827 bytes .../mipmap-xxhdpi/launcher_foreground.png | Bin 0 -> 33484 bytes .../Resources/mipmap-xxxhdpi/icon.png | Bin 0 -> 19380 bytes .../mipmap-xxxhdpi/launcher_foreground.png | Bin 0 -> 52285 bytes mederly.Android/Resources/values/colors.xml | 7 + mederly.Android/Resources/values/styles.xml | 18 + mederly.Android/mederly.Android.csproj | 123 + mederly.iOS/AppDelegate.cs | 31 + .../AppIcon.appiconset/Contents.json | 117 + .../AppIcon.appiconset/Icon1024.png | Bin 0 -> 70429 bytes .../AppIcon.appiconset/Icon120.png | Bin 0 -> 3773 bytes .../AppIcon.appiconset/Icon152.png | Bin 0 -> 4750 bytes .../AppIcon.appiconset/Icon167.png | Bin 0 -> 4692 bytes .../AppIcon.appiconset/Icon180.png | Bin 0 -> 5192 bytes .../AppIcon.appiconset/Icon20.png | Bin 0 -> 1313 bytes .../AppIcon.appiconset/Icon29.png | Bin 0 -> 845 bytes .../AppIcon.appiconset/Icon40.png | Bin 0 -> 1101 bytes .../AppIcon.appiconset/Icon58.png | Bin 0 -> 1761 bytes .../AppIcon.appiconset/Icon60.png | Bin 0 -> 2537 bytes .../AppIcon.appiconset/Icon76.png | Bin 0 -> 2332 bytes .../AppIcon.appiconset/Icon80.png | Bin 0 -> 2454 bytes .../AppIcon.appiconset/Icon87.png | Bin 0 -> 2758 bytes mederly.iOS/Entitlements.plist | 7 + mederly.iOS/Info.plist | 38 + mederly.iOS/Main.cs | 20 + mederly.iOS/Properties/AssemblyInfo.cs | 36 + mederly.iOS/Resources/Default-568h@2x.png | Bin 0 -> 8884 bytes mederly.iOS/Resources/Default-Portrait.png | Bin 0 -> 10710 bytes mederly.iOS/Resources/Default-Portrait@2x.png | Bin 0 -> 34540 bytes mederly.iOS/Resources/Default.png | Bin 0 -> 7243 bytes mederly.iOS/Resources/Default@2x.png | Bin 0 -> 8368 bytes mederly.iOS/Resources/LaunchScreen.storyboard | 39 + mederly.iOS/mederly.iOS.csproj | 136 + mederly.sln | 83 + mederly/App.xaml | 8 + mederly/App.xaml.cs | 28 + mederly/AssemblyInfo.cs | 3 + mederly/MainPage.xaml | 47 + mederly/MainPage.xaml.cs | 40 + mederly/Teams.xaml | 43 + mederly/Teams.xaml.cs | 25 + mederly/Telephone.xaml | 12 + mederly/Telephone.xaml.cs | 20 + mederly/callDr.xaml | 29 + mederly/callDr.xaml.cs | 31 + mederly/callNurse.xaml | 29 + mederly/callNurse.xaml.cs | 30 + mederly/mederly.csproj | 39 + mederly/messageDr.xaml | 31 + mederly/messageDr.xaml.cs | 25 + mederly/messageNurse.xaml | 31 + mederly/messageNurse.xaml.cs | 28 + 78 files changed, 21275 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 mederly.Android/Assets/AboutAssets.txt create mode 100644 mederly.Android/MainActivity.cs create mode 100644 mederly.Android/Properties/AndroidManifest.xml create mode 100644 mederly.Android/Properties/AssemblyInfo.cs create mode 100644 mederly.Android/Resources/AboutResources.txt create mode 100644 mederly.Android/Resources/Resource.designer.cs create mode 100644 mederly.Android/Resources/drawable/cal.png create mode 100644 mederly.Android/Resources/drawable/dr.png create mode 100644 mederly.Android/Resources/drawable/drMessage.png create mode 100644 mederly.Android/Resources/drawable/drVideoChat.png create mode 100644 mederly.Android/Resources/drawable/message.png create mode 100644 mederly.Android/Resources/drawable/messageDr.png create mode 100644 mederly.Android/Resources/drawable/nurse.png create mode 100644 mederly.Android/Resources/drawable/openTeams.png create mode 100644 mederly.Android/Resources/drawable/phone.png create mode 100644 mederly.Android/Resources/drawable/videoChat.png create mode 100644 mederly.Android/Resources/mipmap-anydpi-v26/icon.xml create mode 100644 mederly.Android/Resources/mipmap-anydpi-v26/icon_round.xml create mode 100644 mederly.Android/Resources/mipmap-hdpi/icon.png create mode 100644 mederly.Android/Resources/mipmap-hdpi/launcher_foreground.png create mode 100644 mederly.Android/Resources/mipmap-mdpi/icon.png create mode 100644 mederly.Android/Resources/mipmap-mdpi/launcher_foreground.png create mode 100644 mederly.Android/Resources/mipmap-xhdpi/icon.png create mode 100644 mederly.Android/Resources/mipmap-xhdpi/launcher_foreground.png create mode 100644 mederly.Android/Resources/mipmap-xxhdpi/icon.png create mode 100644 mederly.Android/Resources/mipmap-xxhdpi/launcher_foreground.png create mode 100644 mederly.Android/Resources/mipmap-xxxhdpi/icon.png create mode 100644 mederly.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png create mode 100644 mederly.Android/Resources/values/colors.xml create mode 100644 mederly.Android/Resources/values/styles.xml create mode 100644 mederly.Android/mederly.Android.csproj create mode 100644 mederly.iOS/AppDelegate.cs create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png create mode 100644 mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png create mode 100644 mederly.iOS/Entitlements.plist create mode 100644 mederly.iOS/Info.plist create mode 100644 mederly.iOS/Main.cs create mode 100644 mederly.iOS/Properties/AssemblyInfo.cs create mode 100644 mederly.iOS/Resources/Default-568h@2x.png create mode 100644 mederly.iOS/Resources/Default-Portrait.png create mode 100644 mederly.iOS/Resources/Default-Portrait@2x.png create mode 100644 mederly.iOS/Resources/Default.png create mode 100644 mederly.iOS/Resources/Default@2x.png create mode 100644 mederly.iOS/Resources/LaunchScreen.storyboard create mode 100644 mederly.iOS/mederly.iOS.csproj create mode 100644 mederly.sln create mode 100644 mederly/App.xaml create mode 100644 mederly/App.xaml.cs create mode 100644 mederly/AssemblyInfo.cs create mode 100644 mederly/MainPage.xaml create mode 100644 mederly/MainPage.xaml.cs create mode 100644 mederly/Teams.xaml create mode 100644 mederly/Teams.xaml.cs create mode 100644 mederly/Telephone.xaml create mode 100644 mederly/Telephone.xaml.cs create mode 100644 mederly/callDr.xaml create mode 100644 mederly/callDr.xaml.cs create mode 100644 mederly/callNurse.xaml create mode 100644 mederly/callNurse.xaml.cs create mode 100644 mederly/mederly.csproj create mode 100644 mederly/messageDr.xaml create mode 100644 mederly/messageDr.xaml.cs create mode 100644 mederly/messageNurse.xaml create mode 100644 mederly/messageNurse.xaml.cs diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9491a2f --- /dev/null +++ b/.gitignore @@ -0,0 +1,363 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd \ No newline at end of file diff --git a/mederly.Android/Assets/AboutAssets.txt b/mederly.Android/Assets/AboutAssets.txt new file mode 100644 index 0000000..072563f --- /dev/null +++ b/mederly.Android/Assets/AboutAssets.txt @@ -0,0 +1,19 @@ +Any raw assets you want to be deployed with your application can be placed in +this directory (and child directories) and given a Build Action of "AndroidAsset". + +These files will be deployed with your package and will be accessible using Android's +AssetManager, like this: + +public class ReadAsset : Activity +{ + protected override void OnCreate (Bundle bundle) + { + base.OnCreate (bundle); + + InputStream input = Assets.Open ("my_asset.txt"); + } +} + +Additionally, some Android functions will automatically load asset files: + +Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); diff --git a/mederly.Android/MainActivity.cs b/mederly.Android/MainActivity.cs new file mode 100644 index 0000000..a1e37af --- /dev/null +++ b/mederly.Android/MainActivity.cs @@ -0,0 +1,28 @@ +using System; + +using Android.App; +using Android.Content.PM; +using Android.Runtime; +using Android.OS; + +namespace mederly.Droid +{ + [Activity(Label = "mederly", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize )] + public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity + { + protected override void OnCreate(Bundle savedInstanceState) + { + base.OnCreate(savedInstanceState); + + Xamarin.Essentials.Platform.Init(this, savedInstanceState); + global::Xamarin.Forms.Forms.Init(this, savedInstanceState); + LoadApplication(new App()); + } + public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Android.Content.PM.Permission[] grantResults) + { + Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults); + + base.OnRequestPermissionsResult(requestCode, permissions, grantResults); + } + } +} \ No newline at end of file diff --git a/mederly.Android/Properties/AndroidManifest.xml b/mederly.Android/Properties/AndroidManifest.xml new file mode 100644 index 0000000..cde68a4 --- /dev/null +++ b/mederly.Android/Properties/AndroidManifest.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/mederly.Android/Properties/AssemblyInfo.cs b/mederly.Android/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b88f326 --- /dev/null +++ b/mederly.Android/Properties/AssemblyInfo.cs @@ -0,0 +1,30 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using Android.App; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("mederly.Android")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("mederly.Android")] +[assembly: AssemblyCopyright("Copyright © 2014")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: ComVisible(false)] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] + +// Add some common permissions, these can be removed if not needed +[assembly: UsesPermission(Android.Manifest.Permission.Internet)] +[assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] diff --git a/mederly.Android/Resources/AboutResources.txt b/mederly.Android/Resources/AboutResources.txt new file mode 100644 index 0000000..cb30f20 --- /dev/null +++ b/mederly.Android/Resources/AboutResources.txt @@ -0,0 +1,50 @@ +Images, layout descriptions, binary blobs and string dictionaries can be included +in your application as resource files. Various Android APIs are designed to +operate on the resource IDs instead of dealing with images, strings or binary blobs +directly. + +For example, a sample Android app that contains a user interface layout (main.xml), +an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) +would keep its resources in the "Resources" directory of the application: + +Resources/ + drawable-hdpi/ + icon.png + + drawable-ldpi/ + icon.png + + drawable-mdpi/ + icon.png + + layout/ + main.xml + + values/ + strings.xml + +In order to get the build system to recognize Android resources, set the build action to +"AndroidResource". The native Android APIs do not operate directly with filenames, but +instead operate on resource IDs. When you compile an Android application that uses resources, +the build system will package the resources for distribution and generate a class called +"Resource" that contains the tokens for each one of the resources included. For example, +for the above Resources layout, this is what the Resource class would expose: + +public class Resource { + public class drawable { + public const int icon = 0x123; + } + + public class layout { + public const int main = 0x456; + } + + public class strings { + public const int first_string = 0xabc; + public const int second_string = 0xbcd; + } +} + +You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main +to reference the layout/main.xml file, or Resource.strings.first_string to reference the first +string in the dictionary file values/strings.xml. diff --git a/mederly.Android/Resources/Resource.designer.cs b/mederly.Android/Resources/Resource.designer.cs new file mode 100644 index 0000000..95a0420 --- /dev/null +++ b/mederly.Android/Resources/Resource.designer.cs @@ -0,0 +1,19546 @@ +#pragma warning disable 1591 +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +[assembly: global::Android.Runtime.ResourceDesignerAttribute("mederly.Droid.Resource", IsApplication=true)] + +namespace mederly.Droid +{ + + + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] + public partial class Resource + { + + static Resource() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + public static void UpdateIdValues() + { + global::Xamarin.Essentials.Resource.Attribute.alpha = global::mederly.Droid.Resource.Attribute.alpha; + global::Xamarin.Essentials.Resource.Attribute.font = global::mederly.Droid.Resource.Attribute.font; + global::Xamarin.Essentials.Resource.Attribute.fontProviderAuthority = global::mederly.Droid.Resource.Attribute.fontProviderAuthority; + global::Xamarin.Essentials.Resource.Attribute.fontProviderCerts = global::mederly.Droid.Resource.Attribute.fontProviderCerts; + global::Xamarin.Essentials.Resource.Attribute.fontProviderFetchStrategy = global::mederly.Droid.Resource.Attribute.fontProviderFetchStrategy; + global::Xamarin.Essentials.Resource.Attribute.fontProviderFetchTimeout = global::mederly.Droid.Resource.Attribute.fontProviderFetchTimeout; + global::Xamarin.Essentials.Resource.Attribute.fontProviderPackage = global::mederly.Droid.Resource.Attribute.fontProviderPackage; + global::Xamarin.Essentials.Resource.Attribute.fontProviderQuery = global::mederly.Droid.Resource.Attribute.fontProviderQuery; + global::Xamarin.Essentials.Resource.Attribute.fontStyle = global::mederly.Droid.Resource.Attribute.fontStyle; + global::Xamarin.Essentials.Resource.Attribute.fontVariationSettings = global::mederly.Droid.Resource.Attribute.fontVariationSettings; + global::Xamarin.Essentials.Resource.Attribute.fontWeight = global::mederly.Droid.Resource.Attribute.fontWeight; + global::Xamarin.Essentials.Resource.Attribute.ttcIndex = global::mederly.Droid.Resource.Attribute.ttcIndex; + global::Xamarin.Essentials.Resource.Color.androidx_core_ripple_material_light = global::mederly.Droid.Resource.Color.androidx_core_ripple_material_light; + global::Xamarin.Essentials.Resource.Color.androidx_core_secondary_text_default_material_light = global::mederly.Droid.Resource.Color.androidx_core_secondary_text_default_material_light; + global::Xamarin.Essentials.Resource.Color.browser_actions_bg_grey = global::mederly.Droid.Resource.Color.browser_actions_bg_grey; + global::Xamarin.Essentials.Resource.Color.browser_actions_divider_color = global::mederly.Droid.Resource.Color.browser_actions_divider_color; + global::Xamarin.Essentials.Resource.Color.browser_actions_text_color = global::mederly.Droid.Resource.Color.browser_actions_text_color; + global::Xamarin.Essentials.Resource.Color.browser_actions_title_color = global::mederly.Droid.Resource.Color.browser_actions_title_color; + global::Xamarin.Essentials.Resource.Color.notification_action_color_filter = global::mederly.Droid.Resource.Color.notification_action_color_filter; + global::Xamarin.Essentials.Resource.Color.notification_icon_bg_color = global::mederly.Droid.Resource.Color.notification_icon_bg_color; + global::Xamarin.Essentials.Resource.Dimension.browser_actions_context_menu_max_width = global::mederly.Droid.Resource.Dimension.browser_actions_context_menu_max_width; + global::Xamarin.Essentials.Resource.Dimension.browser_actions_context_menu_min_padding = global::mederly.Droid.Resource.Dimension.browser_actions_context_menu_min_padding; + global::Xamarin.Essentials.Resource.Dimension.compat_button_inset_horizontal_material = global::mederly.Droid.Resource.Dimension.compat_button_inset_horizontal_material; + global::Xamarin.Essentials.Resource.Dimension.compat_button_inset_vertical_material = global::mederly.Droid.Resource.Dimension.compat_button_inset_vertical_material; + global::Xamarin.Essentials.Resource.Dimension.compat_button_padding_horizontal_material = global::mederly.Droid.Resource.Dimension.compat_button_padding_horizontal_material; + global::Xamarin.Essentials.Resource.Dimension.compat_button_padding_vertical_material = global::mederly.Droid.Resource.Dimension.compat_button_padding_vertical_material; + global::Xamarin.Essentials.Resource.Dimension.compat_control_corner_material = global::mederly.Droid.Resource.Dimension.compat_control_corner_material; + global::Xamarin.Essentials.Resource.Dimension.compat_notification_large_icon_max_height = global::mederly.Droid.Resource.Dimension.compat_notification_large_icon_max_height; + global::Xamarin.Essentials.Resource.Dimension.compat_notification_large_icon_max_width = global::mederly.Droid.Resource.Dimension.compat_notification_large_icon_max_width; + global::Xamarin.Essentials.Resource.Dimension.notification_action_icon_size = global::mederly.Droid.Resource.Dimension.notification_action_icon_size; + global::Xamarin.Essentials.Resource.Dimension.notification_action_text_size = global::mederly.Droid.Resource.Dimension.notification_action_text_size; + global::Xamarin.Essentials.Resource.Dimension.notification_big_circle_margin = global::mederly.Droid.Resource.Dimension.notification_big_circle_margin; + global::Xamarin.Essentials.Resource.Dimension.notification_content_margin_start = global::mederly.Droid.Resource.Dimension.notification_content_margin_start; + global::Xamarin.Essentials.Resource.Dimension.notification_large_icon_height = global::mederly.Droid.Resource.Dimension.notification_large_icon_height; + global::Xamarin.Essentials.Resource.Dimension.notification_large_icon_width = global::mederly.Droid.Resource.Dimension.notification_large_icon_width; + global::Xamarin.Essentials.Resource.Dimension.notification_main_column_padding_top = global::mederly.Droid.Resource.Dimension.notification_main_column_padding_top; + global::Xamarin.Essentials.Resource.Dimension.notification_media_narrow_margin = global::mederly.Droid.Resource.Dimension.notification_media_narrow_margin; + global::Xamarin.Essentials.Resource.Dimension.notification_right_icon_size = global::mederly.Droid.Resource.Dimension.notification_right_icon_size; + global::Xamarin.Essentials.Resource.Dimension.notification_right_side_padding_top = global::mederly.Droid.Resource.Dimension.notification_right_side_padding_top; + global::Xamarin.Essentials.Resource.Dimension.notification_small_icon_background_padding = global::mederly.Droid.Resource.Dimension.notification_small_icon_background_padding; + global::Xamarin.Essentials.Resource.Dimension.notification_small_icon_size_as_large = global::mederly.Droid.Resource.Dimension.notification_small_icon_size_as_large; + global::Xamarin.Essentials.Resource.Dimension.notification_subtext_size = global::mederly.Droid.Resource.Dimension.notification_subtext_size; + global::Xamarin.Essentials.Resource.Dimension.notification_top_pad = global::mederly.Droid.Resource.Dimension.notification_top_pad; + global::Xamarin.Essentials.Resource.Dimension.notification_top_pad_large_text = global::mederly.Droid.Resource.Dimension.notification_top_pad_large_text; + global::Xamarin.Essentials.Resource.Drawable.notification_action_background = global::mederly.Droid.Resource.Drawable.notification_action_background; + global::Xamarin.Essentials.Resource.Drawable.notification_bg = global::mederly.Droid.Resource.Drawable.notification_bg; + global::Xamarin.Essentials.Resource.Drawable.notification_bg_low = global::mederly.Droid.Resource.Drawable.notification_bg_low; + global::Xamarin.Essentials.Resource.Drawable.notification_bg_low_normal = global::mederly.Droid.Resource.Drawable.notification_bg_low_normal; + global::Xamarin.Essentials.Resource.Drawable.notification_bg_low_pressed = global::mederly.Droid.Resource.Drawable.notification_bg_low_pressed; + global::Xamarin.Essentials.Resource.Drawable.notification_bg_normal = global::mederly.Droid.Resource.Drawable.notification_bg_normal; + global::Xamarin.Essentials.Resource.Drawable.notification_bg_normal_pressed = global::mederly.Droid.Resource.Drawable.notification_bg_normal_pressed; + global::Xamarin.Essentials.Resource.Drawable.notification_icon_background = global::mederly.Droid.Resource.Drawable.notification_icon_background; + global::Xamarin.Essentials.Resource.Drawable.notification_template_icon_bg = global::mederly.Droid.Resource.Drawable.notification_template_icon_bg; + global::Xamarin.Essentials.Resource.Drawable.notification_template_icon_low_bg = global::mederly.Droid.Resource.Drawable.notification_template_icon_low_bg; + global::Xamarin.Essentials.Resource.Drawable.notification_tile_bg = global::mederly.Droid.Resource.Drawable.notification_tile_bg; + global::Xamarin.Essentials.Resource.Drawable.notify_panel_notification_icon_bg = global::mederly.Droid.Resource.Drawable.notify_panel_notification_icon_bg; + global::Xamarin.Essentials.Resource.Id.accessibility_action_clickable_span = global::mederly.Droid.Resource.Id.accessibility_action_clickable_span; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_0 = global::mederly.Droid.Resource.Id.accessibility_custom_action_0; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_1 = global::mederly.Droid.Resource.Id.accessibility_custom_action_1; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_10 = global::mederly.Droid.Resource.Id.accessibility_custom_action_10; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_11 = global::mederly.Droid.Resource.Id.accessibility_custom_action_11; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_12 = global::mederly.Droid.Resource.Id.accessibility_custom_action_12; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_13 = global::mederly.Droid.Resource.Id.accessibility_custom_action_13; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_14 = global::mederly.Droid.Resource.Id.accessibility_custom_action_14; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_15 = global::mederly.Droid.Resource.Id.accessibility_custom_action_15; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_16 = global::mederly.Droid.Resource.Id.accessibility_custom_action_16; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_17 = global::mederly.Droid.Resource.Id.accessibility_custom_action_17; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_18 = global::mederly.Droid.Resource.Id.accessibility_custom_action_18; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_19 = global::mederly.Droid.Resource.Id.accessibility_custom_action_19; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_2 = global::mederly.Droid.Resource.Id.accessibility_custom_action_2; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_20 = global::mederly.Droid.Resource.Id.accessibility_custom_action_20; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_21 = global::mederly.Droid.Resource.Id.accessibility_custom_action_21; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_22 = global::mederly.Droid.Resource.Id.accessibility_custom_action_22; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_23 = global::mederly.Droid.Resource.Id.accessibility_custom_action_23; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_24 = global::mederly.Droid.Resource.Id.accessibility_custom_action_24; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_25 = global::mederly.Droid.Resource.Id.accessibility_custom_action_25; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_26 = global::mederly.Droid.Resource.Id.accessibility_custom_action_26; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_27 = global::mederly.Droid.Resource.Id.accessibility_custom_action_27; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_28 = global::mederly.Droid.Resource.Id.accessibility_custom_action_28; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_29 = global::mederly.Droid.Resource.Id.accessibility_custom_action_29; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_3 = global::mederly.Droid.Resource.Id.accessibility_custom_action_3; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_30 = global::mederly.Droid.Resource.Id.accessibility_custom_action_30; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_31 = global::mederly.Droid.Resource.Id.accessibility_custom_action_31; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_4 = global::mederly.Droid.Resource.Id.accessibility_custom_action_4; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_5 = global::mederly.Droid.Resource.Id.accessibility_custom_action_5; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_6 = global::mederly.Droid.Resource.Id.accessibility_custom_action_6; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_7 = global::mederly.Droid.Resource.Id.accessibility_custom_action_7; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_8 = global::mederly.Droid.Resource.Id.accessibility_custom_action_8; + global::Xamarin.Essentials.Resource.Id.accessibility_custom_action_9 = global::mederly.Droid.Resource.Id.accessibility_custom_action_9; + global::Xamarin.Essentials.Resource.Id.actions = global::mederly.Droid.Resource.Id.actions; + global::Xamarin.Essentials.Resource.Id.action_container = global::mederly.Droid.Resource.Id.action_container; + global::Xamarin.Essentials.Resource.Id.action_divider = global::mederly.Droid.Resource.Id.action_divider; + global::Xamarin.Essentials.Resource.Id.action_image = global::mederly.Droid.Resource.Id.action_image; + global::Xamarin.Essentials.Resource.Id.action_text = global::mederly.Droid.Resource.Id.action_text; + global::Xamarin.Essentials.Resource.Id.async = global::mederly.Droid.Resource.Id.async; + global::Xamarin.Essentials.Resource.Id.blocking = global::mederly.Droid.Resource.Id.blocking; + global::Xamarin.Essentials.Resource.Id.browser_actions_header_text = global::mederly.Droid.Resource.Id.browser_actions_header_text; + global::Xamarin.Essentials.Resource.Id.browser_actions_menu_items = global::mederly.Droid.Resource.Id.browser_actions_menu_items; + global::Xamarin.Essentials.Resource.Id.browser_actions_menu_item_icon = global::mederly.Droid.Resource.Id.browser_actions_menu_item_icon; + global::Xamarin.Essentials.Resource.Id.browser_actions_menu_item_text = global::mederly.Droid.Resource.Id.browser_actions_menu_item_text; + global::Xamarin.Essentials.Resource.Id.browser_actions_menu_view = global::mederly.Droid.Resource.Id.browser_actions_menu_view; + global::Xamarin.Essentials.Resource.Id.chronometer = global::mederly.Droid.Resource.Id.chronometer; + global::Xamarin.Essentials.Resource.Id.dialog_button = global::mederly.Droid.Resource.Id.dialog_button; + global::Xamarin.Essentials.Resource.Id.forever = global::mederly.Droid.Resource.Id.forever; + global::Xamarin.Essentials.Resource.Id.icon = global::mederly.Droid.Resource.Id.icon; + global::Xamarin.Essentials.Resource.Id.icon_group = global::mederly.Droid.Resource.Id.icon_group; + global::Xamarin.Essentials.Resource.Id.info = global::mederly.Droid.Resource.Id.info; + global::Xamarin.Essentials.Resource.Id.italic = global::mederly.Droid.Resource.Id.italic; + global::Xamarin.Essentials.Resource.Id.line1 = global::mederly.Droid.Resource.Id.line1; + global::Xamarin.Essentials.Resource.Id.line3 = global::mederly.Droid.Resource.Id.line3; + global::Xamarin.Essentials.Resource.Id.normal = global::mederly.Droid.Resource.Id.normal; + global::Xamarin.Essentials.Resource.Id.notification_background = global::mederly.Droid.Resource.Id.notification_background; + global::Xamarin.Essentials.Resource.Id.notification_main_column = global::mederly.Droid.Resource.Id.notification_main_column; + global::Xamarin.Essentials.Resource.Id.notification_main_column_container = global::mederly.Droid.Resource.Id.notification_main_column_container; + global::Xamarin.Essentials.Resource.Id.right_icon = global::mederly.Droid.Resource.Id.right_icon; + global::Xamarin.Essentials.Resource.Id.right_side = global::mederly.Droid.Resource.Id.right_side; + global::Xamarin.Essentials.Resource.Id.tag_accessibility_actions = global::mederly.Droid.Resource.Id.tag_accessibility_actions; + global::Xamarin.Essentials.Resource.Id.tag_accessibility_clickable_spans = global::mederly.Droid.Resource.Id.tag_accessibility_clickable_spans; + global::Xamarin.Essentials.Resource.Id.tag_accessibility_heading = global::mederly.Droid.Resource.Id.tag_accessibility_heading; + global::Xamarin.Essentials.Resource.Id.tag_accessibility_pane_title = global::mederly.Droid.Resource.Id.tag_accessibility_pane_title; + global::Xamarin.Essentials.Resource.Id.tag_screen_reader_focusable = global::mederly.Droid.Resource.Id.tag_screen_reader_focusable; + global::Xamarin.Essentials.Resource.Id.tag_transition_group = global::mederly.Droid.Resource.Id.tag_transition_group; + global::Xamarin.Essentials.Resource.Id.tag_unhandled_key_event_manager = global::mederly.Droid.Resource.Id.tag_unhandled_key_event_manager; + global::Xamarin.Essentials.Resource.Id.tag_unhandled_key_listeners = global::mederly.Droid.Resource.Id.tag_unhandled_key_listeners; + global::Xamarin.Essentials.Resource.Id.text = global::mederly.Droid.Resource.Id.text; + global::Xamarin.Essentials.Resource.Id.text2 = global::mederly.Droid.Resource.Id.text2; + global::Xamarin.Essentials.Resource.Id.time = global::mederly.Droid.Resource.Id.time; + global::Xamarin.Essentials.Resource.Id.title = global::mederly.Droid.Resource.Id.title; + global::Xamarin.Essentials.Resource.Integer.status_bar_notification_info_maxnum = global::mederly.Droid.Resource.Integer.status_bar_notification_info_maxnum; + global::Xamarin.Essentials.Resource.Layout.browser_actions_context_menu_page = global::mederly.Droid.Resource.Layout.browser_actions_context_menu_page; + global::Xamarin.Essentials.Resource.Layout.browser_actions_context_menu_row = global::mederly.Droid.Resource.Layout.browser_actions_context_menu_row; + global::Xamarin.Essentials.Resource.Layout.custom_dialog = global::mederly.Droid.Resource.Layout.custom_dialog; + global::Xamarin.Essentials.Resource.Layout.notification_action = global::mederly.Droid.Resource.Layout.notification_action; + global::Xamarin.Essentials.Resource.Layout.notification_action_tombstone = global::mederly.Droid.Resource.Layout.notification_action_tombstone; + global::Xamarin.Essentials.Resource.Layout.notification_template_custom_big = global::mederly.Droid.Resource.Layout.notification_template_custom_big; + global::Xamarin.Essentials.Resource.Layout.notification_template_icon_group = global::mederly.Droid.Resource.Layout.notification_template_icon_group; + global::Xamarin.Essentials.Resource.Layout.notification_template_part_chronometer = global::mederly.Droid.Resource.Layout.notification_template_part_chronometer; + global::Xamarin.Essentials.Resource.Layout.notification_template_part_time = global::mederly.Droid.Resource.Layout.notification_template_part_time; + global::Xamarin.Essentials.Resource.String.copy_toast_msg = global::mederly.Droid.Resource.String.copy_toast_msg; + global::Xamarin.Essentials.Resource.String.fallback_menu_item_copy_link = global::mederly.Droid.Resource.String.fallback_menu_item_copy_link; + global::Xamarin.Essentials.Resource.String.fallback_menu_item_open_in_browser = global::mederly.Droid.Resource.String.fallback_menu_item_open_in_browser; + global::Xamarin.Essentials.Resource.String.fallback_menu_item_share_link = global::mederly.Droid.Resource.String.fallback_menu_item_share_link; + global::Xamarin.Essentials.Resource.String.status_bar_notification_info_overflow = global::mederly.Droid.Resource.String.status_bar_notification_info_overflow; + global::Xamarin.Essentials.Resource.Style.TextAppearance_Compat_Notification = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification; + global::Xamarin.Essentials.Resource.Style.TextAppearance_Compat_Notification_Info = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Info; + global::Xamarin.Essentials.Resource.Style.TextAppearance_Compat_Notification_Line2 = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Line2; + global::Xamarin.Essentials.Resource.Style.TextAppearance_Compat_Notification_Time = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Time; + global::Xamarin.Essentials.Resource.Style.TextAppearance_Compat_Notification_Title = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Title; + global::Xamarin.Essentials.Resource.Style.Widget_Compat_NotificationActionContainer = global::mederly.Droid.Resource.Style.Widget_Compat_NotificationActionContainer; + global::Xamarin.Essentials.Resource.Style.Widget_Compat_NotificationActionText = global::mederly.Droid.Resource.Style.Widget_Compat_NotificationActionText; + global::Xamarin.Essentials.Resource.Styleable.ColorStateListItem = global::mederly.Droid.Resource.Styleable.ColorStateListItem; + global::Xamarin.Essentials.Resource.Styleable.ColorStateListItem_alpha = global::mederly.Droid.Resource.Styleable.ColorStateListItem_alpha; + global::Xamarin.Essentials.Resource.Styleable.ColorStateListItem_android_alpha = global::mederly.Droid.Resource.Styleable.ColorStateListItem_android_alpha; + global::Xamarin.Essentials.Resource.Styleable.ColorStateListItem_android_color = global::mederly.Droid.Resource.Styleable.ColorStateListItem_android_color; + global::Xamarin.Essentials.Resource.Styleable.FontFamily = global::mederly.Droid.Resource.Styleable.FontFamily; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont = global::mederly.Droid.Resource.Styleable.FontFamilyFont; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_android_font = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_font; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_android_fontStyle = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontStyle; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_android_fontVariationSettings = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontVariationSettings; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_android_fontWeight = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontWeight; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_android_ttcIndex = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_ttcIndex; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_font = global::mederly.Droid.Resource.Styleable.FontFamilyFont_font; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_fontStyle = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontStyle; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_fontVariationSettings = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontVariationSettings; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_fontWeight = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontWeight; + global::Xamarin.Essentials.Resource.Styleable.FontFamilyFont_ttcIndex = global::mederly.Droid.Resource.Styleable.FontFamilyFont_ttcIndex; + global::Xamarin.Essentials.Resource.Styleable.FontFamily_fontProviderAuthority = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderAuthority; + global::Xamarin.Essentials.Resource.Styleable.FontFamily_fontProviderCerts = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderCerts; + global::Xamarin.Essentials.Resource.Styleable.FontFamily_fontProviderFetchStrategy = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderFetchStrategy; + global::Xamarin.Essentials.Resource.Styleable.FontFamily_fontProviderFetchTimeout = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderFetchTimeout; + global::Xamarin.Essentials.Resource.Styleable.FontFamily_fontProviderPackage = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderPackage; + global::Xamarin.Essentials.Resource.Styleable.FontFamily_fontProviderQuery = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderQuery; + global::Xamarin.Essentials.Resource.Styleable.GradientColor = global::mederly.Droid.Resource.Styleable.GradientColor; + global::Xamarin.Essentials.Resource.Styleable.GradientColorItem = global::mederly.Droid.Resource.Styleable.GradientColorItem; + global::Xamarin.Essentials.Resource.Styleable.GradientColorItem_android_color = global::mederly.Droid.Resource.Styleable.GradientColorItem_android_color; + global::Xamarin.Essentials.Resource.Styleable.GradientColorItem_android_offset = global::mederly.Droid.Resource.Styleable.GradientColorItem_android_offset; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_centerColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerColor; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_centerX = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerX; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_centerY = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerY; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_endColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_endColor; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_endX = global::mederly.Droid.Resource.Styleable.GradientColor_android_endX; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_endY = global::mederly.Droid.Resource.Styleable.GradientColor_android_endY; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_gradientRadius = global::mederly.Droid.Resource.Styleable.GradientColor_android_gradientRadius; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_startColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_startColor; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_startX = global::mederly.Droid.Resource.Styleable.GradientColor_android_startX; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_startY = global::mederly.Droid.Resource.Styleable.GradientColor_android_startY; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_tileMode = global::mederly.Droid.Resource.Styleable.GradientColor_android_tileMode; + global::Xamarin.Essentials.Resource.Styleable.GradientColor_android_type = global::mederly.Droid.Resource.Styleable.GradientColor_android_type; + global::Xamarin.Essentials.Resource.Xml.image_share_filepaths = global::mederly.Droid.Resource.Xml.image_share_filepaths; + global::Xamarin.Essentials.Resource.Xml.xamarin_essentials_fileprovider_file_paths = global::mederly.Droid.Resource.Xml.xamarin_essentials_fileprovider_file_paths; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_fade_in = global::mederly.Droid.Resource.Animation.abc_fade_in; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_fade_out = global::mederly.Droid.Resource.Animation.abc_fade_out; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_grow_fade_in_from_bottom = global::mederly.Droid.Resource.Animation.abc_grow_fade_in_from_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_popup_enter = global::mederly.Droid.Resource.Animation.abc_popup_enter; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_popup_exit = global::mederly.Droid.Resource.Animation.abc_popup_exit; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_shrink_fade_out_from_bottom = global::mederly.Droid.Resource.Animation.abc_shrink_fade_out_from_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_slide_in_bottom = global::mederly.Droid.Resource.Animation.abc_slide_in_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_slide_in_top = global::mederly.Droid.Resource.Animation.abc_slide_in_top; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_slide_out_bottom = global::mederly.Droid.Resource.Animation.abc_slide_out_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_slide_out_top = global::mederly.Droid.Resource.Animation.abc_slide_out_top; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_tooltip_enter = global::mederly.Droid.Resource.Animation.abc_tooltip_enter; + global::Xamarin.Forms.Platform.Android.Resource.Animation.abc_tooltip_exit = global::mederly.Droid.Resource.Animation.abc_tooltip_exit; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_checkbox_to_checked_box_inner_merged_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_checked_box_inner_merged_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_checkbox_to_checked_box_outer_merged_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_checked_box_outer_merged_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_checkbox_to_checked_icon_null_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_checked_icon_null_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_checkbox_to_unchecked_box_inner_merged_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_unchecked_box_inner_merged_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_checkbox_to_unchecked_check_path_merged_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_unchecked_check_path_merged_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_checkbox_to_unchecked_icon_null_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_unchecked_icon_null_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_radio_to_off_mtrl_dot_group_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_off_mtrl_dot_group_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_path_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_path_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_radio_to_on_mtrl_dot_group_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_on_mtrl_dot_group_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_path_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_path_animation; + global::Xamarin.Forms.Platform.Android.Resource.Animation.design_bottom_sheet_slide_in = global::mederly.Droid.Resource.Animation.design_bottom_sheet_slide_in; + global::Xamarin.Forms.Platform.Android.Resource.Animation.design_bottom_sheet_slide_out = global::mederly.Droid.Resource.Animation.design_bottom_sheet_slide_out; + global::Xamarin.Forms.Platform.Android.Resource.Animation.design_snackbar_in = global::mederly.Droid.Resource.Animation.design_snackbar_in; + global::Xamarin.Forms.Platform.Android.Resource.Animation.design_snackbar_out = global::mederly.Droid.Resource.Animation.design_snackbar_out; + global::Xamarin.Forms.Platform.Android.Resource.Animation.EnterFromLeft = global::mederly.Droid.Resource.Animation.EnterFromLeft; + global::Xamarin.Forms.Platform.Android.Resource.Animation.EnterFromRight = global::mederly.Droid.Resource.Animation.EnterFromRight; + global::Xamarin.Forms.Platform.Android.Resource.Animation.ExitToLeft = global::mederly.Droid.Resource.Animation.ExitToLeft; + global::Xamarin.Forms.Platform.Android.Resource.Animation.ExitToRight = global::mederly.Droid.Resource.Animation.ExitToRight; + global::Xamarin.Forms.Platform.Android.Resource.Animation.fragment_close_enter = global::mederly.Droid.Resource.Animation.fragment_close_enter; + global::Xamarin.Forms.Platform.Android.Resource.Animation.fragment_close_exit = global::mederly.Droid.Resource.Animation.fragment_close_exit; + global::Xamarin.Forms.Platform.Android.Resource.Animation.fragment_fade_enter = global::mederly.Droid.Resource.Animation.fragment_fade_enter; + global::Xamarin.Forms.Platform.Android.Resource.Animation.fragment_fade_exit = global::mederly.Droid.Resource.Animation.fragment_fade_exit; + global::Xamarin.Forms.Platform.Android.Resource.Animation.fragment_fast_out_extra_slow_in = global::mederly.Droid.Resource.Animation.fragment_fast_out_extra_slow_in; + global::Xamarin.Forms.Platform.Android.Resource.Animation.fragment_open_enter = global::mederly.Droid.Resource.Animation.fragment_open_enter; + global::Xamarin.Forms.Platform.Android.Resource.Animation.fragment_open_exit = global::mederly.Droid.Resource.Animation.fragment_open_exit; + global::Xamarin.Forms.Platform.Android.Resource.Animation.mtrl_bottom_sheet_slide_in = global::mederly.Droid.Resource.Animation.mtrl_bottom_sheet_slide_in; + global::Xamarin.Forms.Platform.Android.Resource.Animation.mtrl_bottom_sheet_slide_out = global::mederly.Droid.Resource.Animation.mtrl_bottom_sheet_slide_out; + global::Xamarin.Forms.Platform.Android.Resource.Animation.mtrl_card_lowers_interpolator = global::mederly.Droid.Resource.Animation.mtrl_card_lowers_interpolator; + global::Xamarin.Forms.Platform.Android.Resource.Animator.design_appbar_state_list_animator = global::mederly.Droid.Resource.Animator.design_appbar_state_list_animator; + global::Xamarin.Forms.Platform.Android.Resource.Animator.design_fab_hide_motion_spec = global::mederly.Droid.Resource.Animator.design_fab_hide_motion_spec; + global::Xamarin.Forms.Platform.Android.Resource.Animator.design_fab_show_motion_spec = global::mederly.Droid.Resource.Animator.design_fab_show_motion_spec; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_btn_state_list_anim = global::mederly.Droid.Resource.Animator.mtrl_btn_state_list_anim; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_btn_unelevated_state_list_anim = global::mederly.Droid.Resource.Animator.mtrl_btn_unelevated_state_list_anim; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_card_state_list_anim = global::mederly.Droid.Resource.Animator.mtrl_card_state_list_anim; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_chip_state_list_anim = global::mederly.Droid.Resource.Animator.mtrl_chip_state_list_anim; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_extended_fab_change_size_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_extended_fab_change_size_motion_spec; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_extended_fab_hide_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_extended_fab_hide_motion_spec; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_extended_fab_show_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_extended_fab_show_motion_spec; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_extended_fab_state_list_animator = global::mederly.Droid.Resource.Animator.mtrl_extended_fab_state_list_animator; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_fab_hide_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_fab_hide_motion_spec; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_fab_show_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_fab_show_motion_spec; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_fab_transformation_sheet_collapse_spec = global::mederly.Droid.Resource.Animator.mtrl_fab_transformation_sheet_collapse_spec; + global::Xamarin.Forms.Platform.Android.Resource.Animator.mtrl_fab_transformation_sheet_expand_spec = global::mederly.Droid.Resource.Animator.mtrl_fab_transformation_sheet_expand_spec; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarDivider = global::mederly.Droid.Resource.Attribute.actionBarDivider; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarItemBackground = global::mederly.Droid.Resource.Attribute.actionBarItemBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarPopupTheme = global::mederly.Droid.Resource.Attribute.actionBarPopupTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarSize = global::mederly.Droid.Resource.Attribute.actionBarSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarSplitStyle = global::mederly.Droid.Resource.Attribute.actionBarSplitStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarStyle = global::mederly.Droid.Resource.Attribute.actionBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarTabBarStyle = global::mederly.Droid.Resource.Attribute.actionBarTabBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarTabStyle = global::mederly.Droid.Resource.Attribute.actionBarTabStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarTabTextStyle = global::mederly.Droid.Resource.Attribute.actionBarTabTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarTheme = global::mederly.Droid.Resource.Attribute.actionBarTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarWidgetTheme = global::mederly.Droid.Resource.Attribute.actionBarWidgetTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionButtonStyle = global::mederly.Droid.Resource.Attribute.actionButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionDropDownStyle = global::mederly.Droid.Resource.Attribute.actionDropDownStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionLayout = global::mederly.Droid.Resource.Attribute.actionLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionMenuTextAppearance = global::mederly.Droid.Resource.Attribute.actionMenuTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionMenuTextColor = global::mederly.Droid.Resource.Attribute.actionMenuTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeBackground = global::mederly.Droid.Resource.Attribute.actionModeBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeCloseButtonStyle = global::mederly.Droid.Resource.Attribute.actionModeCloseButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeCloseDrawable = global::mederly.Droid.Resource.Attribute.actionModeCloseDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeCopyDrawable = global::mederly.Droid.Resource.Attribute.actionModeCopyDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeCutDrawable = global::mederly.Droid.Resource.Attribute.actionModeCutDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeFindDrawable = global::mederly.Droid.Resource.Attribute.actionModeFindDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModePasteDrawable = global::mederly.Droid.Resource.Attribute.actionModePasteDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModePopupWindowStyle = global::mederly.Droid.Resource.Attribute.actionModePopupWindowStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeSelectAllDrawable = global::mederly.Droid.Resource.Attribute.actionModeSelectAllDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeShareDrawable = global::mederly.Droid.Resource.Attribute.actionModeShareDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeSplitBackground = global::mederly.Droid.Resource.Attribute.actionModeSplitBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeStyle = global::mederly.Droid.Resource.Attribute.actionModeStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionModeWebSearchDrawable = global::mederly.Droid.Resource.Attribute.actionModeWebSearchDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionOverflowButtonStyle = global::mederly.Droid.Resource.Attribute.actionOverflowButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionOverflowMenuStyle = global::mederly.Droid.Resource.Attribute.actionOverflowMenuStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionProviderClass = global::mederly.Droid.Resource.Attribute.actionProviderClass; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionTextColorAlpha = global::mederly.Droid.Resource.Attribute.actionTextColorAlpha; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionViewClass = global::mederly.Droid.Resource.Attribute.actionViewClass; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.activityChooserViewStyle = global::mederly.Droid.Resource.Attribute.activityChooserViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.alertDialogButtonGroupStyle = global::mederly.Droid.Resource.Attribute.alertDialogButtonGroupStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.alertDialogCenterButtons = global::mederly.Droid.Resource.Attribute.alertDialogCenterButtons; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.alertDialogStyle = global::mederly.Droid.Resource.Attribute.alertDialogStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.alertDialogTheme = global::mederly.Droid.Resource.Attribute.alertDialogTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.allowStacking = global::mederly.Droid.Resource.Attribute.allowStacking; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.alpha = global::mederly.Droid.Resource.Attribute.alpha; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.alphabeticModifiers = global::mederly.Droid.Resource.Attribute.alphabeticModifiers; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.animationMode = global::mederly.Droid.Resource.Attribute.animationMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.appBarLayoutStyle = global::mederly.Droid.Resource.Attribute.appBarLayoutStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.arrowHeadLength = global::mederly.Droid.Resource.Attribute.arrowHeadLength; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.arrowShaftLength = global::mederly.Droid.Resource.Attribute.arrowShaftLength; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.autoCompleteTextViewStyle = global::mederly.Droid.Resource.Attribute.autoCompleteTextViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.autoSizeMaxTextSize = global::mederly.Droid.Resource.Attribute.autoSizeMaxTextSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.autoSizeMinTextSize = global::mederly.Droid.Resource.Attribute.autoSizeMinTextSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.autoSizePresetSizes = global::mederly.Droid.Resource.Attribute.autoSizePresetSizes; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.autoSizeStepGranularity = global::mederly.Droid.Resource.Attribute.autoSizeStepGranularity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.autoSizeTextType = global::mederly.Droid.Resource.Attribute.autoSizeTextType; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.background = global::mederly.Droid.Resource.Attribute.background; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundColor = global::mederly.Droid.Resource.Attribute.backgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundInsetBottom = global::mederly.Droid.Resource.Attribute.backgroundInsetBottom; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundInsetEnd = global::mederly.Droid.Resource.Attribute.backgroundInsetEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundInsetStart = global::mederly.Droid.Resource.Attribute.backgroundInsetStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundInsetTop = global::mederly.Droid.Resource.Attribute.backgroundInsetTop; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundOverlayColorAlpha = global::mederly.Droid.Resource.Attribute.backgroundOverlayColorAlpha; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundSplit = global::mederly.Droid.Resource.Attribute.backgroundSplit; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundStacked = global::mederly.Droid.Resource.Attribute.backgroundStacked; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundTint = global::mederly.Droid.Resource.Attribute.backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.backgroundTintMode = global::mederly.Droid.Resource.Attribute.backgroundTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.badgeGravity = global::mederly.Droid.Resource.Attribute.badgeGravity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.badgeStyle = global::mederly.Droid.Resource.Attribute.badgeStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.badgeTextColor = global::mederly.Droid.Resource.Attribute.badgeTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.barLength = global::mederly.Droid.Resource.Attribute.barLength; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_autoHide = global::mederly.Droid.Resource.Attribute.behavior_autoHide; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_autoShrink = global::mederly.Droid.Resource.Attribute.behavior_autoShrink; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_draggable = global::mederly.Droid.Resource.Attribute.behavior_draggable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_expandedOffset = global::mederly.Droid.Resource.Attribute.behavior_expandedOffset; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_fitToContents = global::mederly.Droid.Resource.Attribute.behavior_fitToContents; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_halfExpandedRatio = global::mederly.Droid.Resource.Attribute.behavior_halfExpandedRatio; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_hideable = global::mederly.Droid.Resource.Attribute.behavior_hideable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_overlapTop = global::mederly.Droid.Resource.Attribute.behavior_overlapTop; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_peekHeight = global::mederly.Droid.Resource.Attribute.behavior_peekHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_saveFlags = global::mederly.Droid.Resource.Attribute.behavior_saveFlags; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.behavior_skipCollapsed = global::mederly.Droid.Resource.Attribute.behavior_skipCollapsed; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.borderlessButtonStyle = global::mederly.Droid.Resource.Attribute.borderlessButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.borderWidth = global::mederly.Droid.Resource.Attribute.borderWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.bottomAppBarStyle = global::mederly.Droid.Resource.Attribute.bottomAppBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.bottomNavigationStyle = global::mederly.Droid.Resource.Attribute.bottomNavigationStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.bottomSheetDialogTheme = global::mederly.Droid.Resource.Attribute.bottomSheetDialogTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.bottomSheetStyle = global::mederly.Droid.Resource.Attribute.bottomSheetStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxBackgroundColor = global::mederly.Droid.Resource.Attribute.boxBackgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxBackgroundMode = global::mederly.Droid.Resource.Attribute.boxBackgroundMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxCollapsedPaddingTop = global::mederly.Droid.Resource.Attribute.boxCollapsedPaddingTop; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxCornerRadiusBottomEnd = global::mederly.Droid.Resource.Attribute.boxCornerRadiusBottomEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxCornerRadiusBottomStart = global::mederly.Droid.Resource.Attribute.boxCornerRadiusBottomStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxCornerRadiusTopEnd = global::mederly.Droid.Resource.Attribute.boxCornerRadiusTopEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxCornerRadiusTopStart = global::mederly.Droid.Resource.Attribute.boxCornerRadiusTopStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxStrokeColor = global::mederly.Droid.Resource.Attribute.boxStrokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxStrokeErrorColor = global::mederly.Droid.Resource.Attribute.boxStrokeErrorColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxStrokeWidth = global::mederly.Droid.Resource.Attribute.boxStrokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.boxStrokeWidthFocused = global::mederly.Droid.Resource.Attribute.boxStrokeWidthFocused; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonBarButtonStyle = global::mederly.Droid.Resource.Attribute.buttonBarButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonBarNegativeButtonStyle = global::mederly.Droid.Resource.Attribute.buttonBarNegativeButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonBarNeutralButtonStyle = global::mederly.Droid.Resource.Attribute.buttonBarNeutralButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonBarPositiveButtonStyle = global::mederly.Droid.Resource.Attribute.buttonBarPositiveButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonBarStyle = global::mederly.Droid.Resource.Attribute.buttonBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonCompat = global::mederly.Droid.Resource.Attribute.buttonCompat; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonGravity = global::mederly.Droid.Resource.Attribute.buttonGravity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonIconDimen = global::mederly.Droid.Resource.Attribute.buttonIconDimen; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonPanelSideLayout = global::mederly.Droid.Resource.Attribute.buttonPanelSideLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonStyle = global::mederly.Droid.Resource.Attribute.buttonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonStyleSmall = global::mederly.Droid.Resource.Attribute.buttonStyleSmall; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonTint = global::mederly.Droid.Resource.Attribute.buttonTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.buttonTintMode = global::mederly.Droid.Resource.Attribute.buttonTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cardBackgroundColor = global::mederly.Droid.Resource.Attribute.cardBackgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cardCornerRadius = global::mederly.Droid.Resource.Attribute.cardCornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cardElevation = global::mederly.Droid.Resource.Attribute.cardElevation; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cardForegroundColor = global::mederly.Droid.Resource.Attribute.cardForegroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cardMaxElevation = global::mederly.Droid.Resource.Attribute.cardMaxElevation; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cardPreventCornerOverlap = global::mederly.Droid.Resource.Attribute.cardPreventCornerOverlap; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cardUseCompatPadding = global::mederly.Droid.Resource.Attribute.cardUseCompatPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cardViewStyle = global::mederly.Droid.Resource.Attribute.cardViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.checkboxStyle = global::mederly.Droid.Resource.Attribute.checkboxStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.checkedButton = global::mederly.Droid.Resource.Attribute.checkedButton; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.checkedChip = global::mederly.Droid.Resource.Attribute.checkedChip; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.checkedIcon = global::mederly.Droid.Resource.Attribute.checkedIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.checkedIconEnabled = global::mederly.Droid.Resource.Attribute.checkedIconEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.checkedIconTint = global::mederly.Droid.Resource.Attribute.checkedIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.checkedIconVisible = global::mederly.Droid.Resource.Attribute.checkedIconVisible; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.checkedTextViewStyle = global::mederly.Droid.Resource.Attribute.checkedTextViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipBackgroundColor = global::mederly.Droid.Resource.Attribute.chipBackgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipCornerRadius = global::mederly.Droid.Resource.Attribute.chipCornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipEndPadding = global::mederly.Droid.Resource.Attribute.chipEndPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipGroupStyle = global::mederly.Droid.Resource.Attribute.chipGroupStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipIcon = global::mederly.Droid.Resource.Attribute.chipIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipIconEnabled = global::mederly.Droid.Resource.Attribute.chipIconEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipIconSize = global::mederly.Droid.Resource.Attribute.chipIconSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipIconTint = global::mederly.Droid.Resource.Attribute.chipIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipIconVisible = global::mederly.Droid.Resource.Attribute.chipIconVisible; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipMinHeight = global::mederly.Droid.Resource.Attribute.chipMinHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipMinTouchTargetSize = global::mederly.Droid.Resource.Attribute.chipMinTouchTargetSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipSpacing = global::mederly.Droid.Resource.Attribute.chipSpacing; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipSpacingHorizontal = global::mederly.Droid.Resource.Attribute.chipSpacingHorizontal; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipSpacingVertical = global::mederly.Droid.Resource.Attribute.chipSpacingVertical; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipStandaloneStyle = global::mederly.Droid.Resource.Attribute.chipStandaloneStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipStartPadding = global::mederly.Droid.Resource.Attribute.chipStartPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipStrokeColor = global::mederly.Droid.Resource.Attribute.chipStrokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipStrokeWidth = global::mederly.Droid.Resource.Attribute.chipStrokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipStyle = global::mederly.Droid.Resource.Attribute.chipStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.chipSurfaceColor = global::mederly.Droid.Resource.Attribute.chipSurfaceColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.closeIcon = global::mederly.Droid.Resource.Attribute.closeIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.closeIconEnabled = global::mederly.Droid.Resource.Attribute.closeIconEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.closeIconEndPadding = global::mederly.Droid.Resource.Attribute.closeIconEndPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.closeIconSize = global::mederly.Droid.Resource.Attribute.closeIconSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.closeIconStartPadding = global::mederly.Droid.Resource.Attribute.closeIconStartPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.closeIconTint = global::mederly.Droid.Resource.Attribute.closeIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.closeIconVisible = global::mederly.Droid.Resource.Attribute.closeIconVisible; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.closeItemLayout = global::mederly.Droid.Resource.Attribute.closeItemLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.collapseContentDescription = global::mederly.Droid.Resource.Attribute.collapseContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.collapsedTitleGravity = global::mederly.Droid.Resource.Attribute.collapsedTitleGravity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.collapsedTitleTextAppearance = global::mederly.Droid.Resource.Attribute.collapsedTitleTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.collapseIcon = global::mederly.Droid.Resource.Attribute.collapseIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.collectionViewStyle = global::mederly.Droid.Resource.Attribute.collectionViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.color = global::mederly.Droid.Resource.Attribute.color; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorAccent = global::mederly.Droid.Resource.Attribute.colorAccent; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorBackgroundFloating = global::mederly.Droid.Resource.Attribute.colorBackgroundFloating; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorButtonNormal = global::mederly.Droid.Resource.Attribute.colorButtonNormal; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorControlActivated = global::mederly.Droid.Resource.Attribute.colorControlActivated; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorControlHighlight = global::mederly.Droid.Resource.Attribute.colorControlHighlight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorControlNormal = global::mederly.Droid.Resource.Attribute.colorControlNormal; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorError = global::mederly.Droid.Resource.Attribute.colorError; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorOnBackground = global::mederly.Droid.Resource.Attribute.colorOnBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorOnError = global::mederly.Droid.Resource.Attribute.colorOnError; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorOnPrimary = global::mederly.Droid.Resource.Attribute.colorOnPrimary; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorOnPrimarySurface = global::mederly.Droid.Resource.Attribute.colorOnPrimarySurface; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorOnSecondary = global::mederly.Droid.Resource.Attribute.colorOnSecondary; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorOnSurface = global::mederly.Droid.Resource.Attribute.colorOnSurface; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorPrimary = global::mederly.Droid.Resource.Attribute.colorPrimary; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorPrimaryDark = global::mederly.Droid.Resource.Attribute.colorPrimaryDark; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorPrimarySurface = global::mederly.Droid.Resource.Attribute.colorPrimarySurface; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorPrimaryVariant = global::mederly.Droid.Resource.Attribute.colorPrimaryVariant; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorSecondary = global::mederly.Droid.Resource.Attribute.colorSecondary; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorSecondaryVariant = global::mederly.Droid.Resource.Attribute.colorSecondaryVariant; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorSurface = global::mederly.Droid.Resource.Attribute.colorSurface; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.colorSwitchThumbNormal = global::mederly.Droid.Resource.Attribute.colorSwitchThumbNormal; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.commitIcon = global::mederly.Droid.Resource.Attribute.commitIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentDescription = global::mederly.Droid.Resource.Attribute.contentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentInsetEnd = global::mederly.Droid.Resource.Attribute.contentInsetEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentInsetEndWithActions = global::mederly.Droid.Resource.Attribute.contentInsetEndWithActions; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentInsetLeft = global::mederly.Droid.Resource.Attribute.contentInsetLeft; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentInsetRight = global::mederly.Droid.Resource.Attribute.contentInsetRight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentInsetStart = global::mederly.Droid.Resource.Attribute.contentInsetStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentInsetStartWithNavigation = global::mederly.Droid.Resource.Attribute.contentInsetStartWithNavigation; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentPadding = global::mederly.Droid.Resource.Attribute.contentPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentPaddingBottom = global::mederly.Droid.Resource.Attribute.contentPaddingBottom; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentPaddingLeft = global::mederly.Droid.Resource.Attribute.contentPaddingLeft; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentPaddingRight = global::mederly.Droid.Resource.Attribute.contentPaddingRight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentPaddingTop = global::mederly.Droid.Resource.Attribute.contentPaddingTop; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.contentScrim = global::mederly.Droid.Resource.Attribute.contentScrim; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.controlBackground = global::mederly.Droid.Resource.Attribute.controlBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.coordinatorLayoutStyle = global::mederly.Droid.Resource.Attribute.coordinatorLayoutStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerFamily = global::mederly.Droid.Resource.Attribute.cornerFamily; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerFamilyBottomLeft = global::mederly.Droid.Resource.Attribute.cornerFamilyBottomLeft; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerFamilyBottomRight = global::mederly.Droid.Resource.Attribute.cornerFamilyBottomRight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerFamilyTopLeft = global::mederly.Droid.Resource.Attribute.cornerFamilyTopLeft; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerFamilyTopRight = global::mederly.Droid.Resource.Attribute.cornerFamilyTopRight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerRadius = global::mederly.Droid.Resource.Attribute.cornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerSize = global::mederly.Droid.Resource.Attribute.cornerSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerSizeBottomLeft = global::mederly.Droid.Resource.Attribute.cornerSizeBottomLeft; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerSizeBottomRight = global::mederly.Droid.Resource.Attribute.cornerSizeBottomRight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerSizeTopLeft = global::mederly.Droid.Resource.Attribute.cornerSizeTopLeft; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.cornerSizeTopRight = global::mederly.Droid.Resource.Attribute.cornerSizeTopRight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.counterEnabled = global::mederly.Droid.Resource.Attribute.counterEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.counterMaxLength = global::mederly.Droid.Resource.Attribute.counterMaxLength; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.counterOverflowTextAppearance = global::mederly.Droid.Resource.Attribute.counterOverflowTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.counterOverflowTextColor = global::mederly.Droid.Resource.Attribute.counterOverflowTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.counterTextAppearance = global::mederly.Droid.Resource.Attribute.counterTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.counterTextColor = global::mederly.Droid.Resource.Attribute.counterTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.customNavigationLayout = global::mederly.Droid.Resource.Attribute.customNavigationLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dayInvalidStyle = global::mederly.Droid.Resource.Attribute.dayInvalidStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.daySelectedStyle = global::mederly.Droid.Resource.Attribute.daySelectedStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dayStyle = global::mederly.Droid.Resource.Attribute.dayStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dayTodayStyle = global::mederly.Droid.Resource.Attribute.dayTodayStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.defaultQueryHint = global::mederly.Droid.Resource.Attribute.defaultQueryHint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dialogCornerRadius = global::mederly.Droid.Resource.Attribute.dialogCornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dialogPreferredPadding = global::mederly.Droid.Resource.Attribute.dialogPreferredPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dialogTheme = global::mederly.Droid.Resource.Attribute.dialogTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.displayOptions = global::mederly.Droid.Resource.Attribute.displayOptions; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.divider = global::mederly.Droid.Resource.Attribute.divider; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dividerHorizontal = global::mederly.Droid.Resource.Attribute.dividerHorizontal; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dividerPadding = global::mederly.Droid.Resource.Attribute.dividerPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dividerVertical = global::mederly.Droid.Resource.Attribute.dividerVertical; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableBottomCompat = global::mederly.Droid.Resource.Attribute.drawableBottomCompat; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableEndCompat = global::mederly.Droid.Resource.Attribute.drawableEndCompat; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableLeftCompat = global::mederly.Droid.Resource.Attribute.drawableLeftCompat; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableRightCompat = global::mederly.Droid.Resource.Attribute.drawableRightCompat; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableSize = global::mederly.Droid.Resource.Attribute.drawableSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableStartCompat = global::mederly.Droid.Resource.Attribute.drawableStartCompat; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableTint = global::mederly.Droid.Resource.Attribute.drawableTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableTintMode = global::mederly.Droid.Resource.Attribute.drawableTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawableTopCompat = global::mederly.Droid.Resource.Attribute.drawableTopCompat; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawerArrowStyle = global::mederly.Droid.Resource.Attribute.drawerArrowStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.drawerLayoutStyle = global::mederly.Droid.Resource.Attribute.drawerLayoutStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dropdownListPreferredItemHeight = global::mederly.Droid.Resource.Attribute.dropdownListPreferredItemHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.dropDownListViewStyle = global::mederly.Droid.Resource.Attribute.dropDownListViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.editTextBackground = global::mederly.Droid.Resource.Attribute.editTextBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.editTextColor = global::mederly.Droid.Resource.Attribute.editTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.editTextStyle = global::mederly.Droid.Resource.Attribute.editTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.elevation = global::mederly.Droid.Resource.Attribute.elevation; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.elevationOverlayColor = global::mederly.Droid.Resource.Attribute.elevationOverlayColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.elevationOverlayEnabled = global::mederly.Droid.Resource.Attribute.elevationOverlayEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.endIconCheckable = global::mederly.Droid.Resource.Attribute.endIconCheckable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.endIconContentDescription = global::mederly.Droid.Resource.Attribute.endIconContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.endIconDrawable = global::mederly.Droid.Resource.Attribute.endIconDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.endIconMode = global::mederly.Droid.Resource.Attribute.endIconMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.endIconTint = global::mederly.Droid.Resource.Attribute.endIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.endIconTintMode = global::mederly.Droid.Resource.Attribute.endIconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.enforceMaterialTheme = global::mederly.Droid.Resource.Attribute.enforceMaterialTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.enforceTextAppearance = global::mederly.Droid.Resource.Attribute.enforceTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.ensureMinTouchTargetSize = global::mederly.Droid.Resource.Attribute.ensureMinTouchTargetSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.errorContentDescription = global::mederly.Droid.Resource.Attribute.errorContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.errorEnabled = global::mederly.Droid.Resource.Attribute.errorEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.errorIconDrawable = global::mederly.Droid.Resource.Attribute.errorIconDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.errorIconTint = global::mederly.Droid.Resource.Attribute.errorIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.errorIconTintMode = global::mederly.Droid.Resource.Attribute.errorIconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.errorTextAppearance = global::mederly.Droid.Resource.Attribute.errorTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.errorTextColor = global::mederly.Droid.Resource.Attribute.errorTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expandActivityOverflowButtonDrawable = global::mederly.Droid.Resource.Attribute.expandActivityOverflowButtonDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expanded = global::mederly.Droid.Resource.Attribute.expanded; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expandedTitleGravity = global::mederly.Droid.Resource.Attribute.expandedTitleGravity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expandedTitleMargin = global::mederly.Droid.Resource.Attribute.expandedTitleMargin; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expandedTitleMarginBottom = global::mederly.Droid.Resource.Attribute.expandedTitleMarginBottom; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expandedTitleMarginEnd = global::mederly.Droid.Resource.Attribute.expandedTitleMarginEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expandedTitleMarginStart = global::mederly.Droid.Resource.Attribute.expandedTitleMarginStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expandedTitleMarginTop = global::mederly.Droid.Resource.Attribute.expandedTitleMarginTop; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.expandedTitleTextAppearance = global::mederly.Droid.Resource.Attribute.expandedTitleTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.extendedFloatingActionButtonStyle = global::mederly.Droid.Resource.Attribute.extendedFloatingActionButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.extendMotionSpec = global::mederly.Droid.Resource.Attribute.extendMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fabAlignmentMode = global::mederly.Droid.Resource.Attribute.fabAlignmentMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fabAnimationMode = global::mederly.Droid.Resource.Attribute.fabAnimationMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fabCradleMargin = global::mederly.Droid.Resource.Attribute.fabCradleMargin; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fabCradleRoundedCornerRadius = global::mederly.Droid.Resource.Attribute.fabCradleRoundedCornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fabCradleVerticalOffset = global::mederly.Droid.Resource.Attribute.fabCradleVerticalOffset; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fabCustomSize = global::mederly.Droid.Resource.Attribute.fabCustomSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fabSize = global::mederly.Droid.Resource.Attribute.fabSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fastScrollEnabled = global::mederly.Droid.Resource.Attribute.fastScrollEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fastScrollHorizontalThumbDrawable = global::mederly.Droid.Resource.Attribute.fastScrollHorizontalThumbDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fastScrollHorizontalTrackDrawable = global::mederly.Droid.Resource.Attribute.fastScrollHorizontalTrackDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fastScrollVerticalThumbDrawable = global::mederly.Droid.Resource.Attribute.fastScrollVerticalThumbDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fastScrollVerticalTrackDrawable = global::mederly.Droid.Resource.Attribute.fastScrollVerticalTrackDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.firstBaselineToTopHeight = global::mederly.Droid.Resource.Attribute.firstBaselineToTopHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.floatingActionButtonStyle = global::mederly.Droid.Resource.Attribute.floatingActionButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.font = global::mederly.Droid.Resource.Attribute.font; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontFamily = global::mederly.Droid.Resource.Attribute.fontFamily; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontProviderAuthority = global::mederly.Droid.Resource.Attribute.fontProviderAuthority; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontProviderCerts = global::mederly.Droid.Resource.Attribute.fontProviderCerts; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontProviderFetchStrategy = global::mederly.Droid.Resource.Attribute.fontProviderFetchStrategy; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontProviderFetchTimeout = global::mederly.Droid.Resource.Attribute.fontProviderFetchTimeout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontProviderPackage = global::mederly.Droid.Resource.Attribute.fontProviderPackage; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontProviderQuery = global::mederly.Droid.Resource.Attribute.fontProviderQuery; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontStyle = global::mederly.Droid.Resource.Attribute.fontStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontVariationSettings = global::mederly.Droid.Resource.Attribute.fontVariationSettings; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.fontWeight = global::mederly.Droid.Resource.Attribute.fontWeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.foregroundInsidePadding = global::mederly.Droid.Resource.Attribute.foregroundInsidePadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.gapBetweenBars = global::mederly.Droid.Resource.Attribute.gapBetweenBars; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.gestureInsetBottomIgnored = global::mederly.Droid.Resource.Attribute.gestureInsetBottomIgnored; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.goIcon = global::mederly.Droid.Resource.Attribute.goIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.haloColor = global::mederly.Droid.Resource.Attribute.haloColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.haloRadius = global::mederly.Droid.Resource.Attribute.haloRadius; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.headerLayout = global::mederly.Droid.Resource.Attribute.headerLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.height = global::mederly.Droid.Resource.Attribute.height; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.helperText = global::mederly.Droid.Resource.Attribute.helperText; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.helperTextEnabled = global::mederly.Droid.Resource.Attribute.helperTextEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.helperTextTextAppearance = global::mederly.Droid.Resource.Attribute.helperTextTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.helperTextTextColor = global::mederly.Droid.Resource.Attribute.helperTextTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.hideMotionSpec = global::mederly.Droid.Resource.Attribute.hideMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.hideOnContentScroll = global::mederly.Droid.Resource.Attribute.hideOnContentScroll; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.hideOnScroll = global::mederly.Droid.Resource.Attribute.hideOnScroll; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.hintAnimationEnabled = global::mederly.Droid.Resource.Attribute.hintAnimationEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.hintEnabled = global::mederly.Droid.Resource.Attribute.hintEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.hintTextAppearance = global::mederly.Droid.Resource.Attribute.hintTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.hintTextColor = global::mederly.Droid.Resource.Attribute.hintTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.homeAsUpIndicator = global::mederly.Droid.Resource.Attribute.homeAsUpIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.homeLayout = global::mederly.Droid.Resource.Attribute.homeLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.horizontalOffset = global::mederly.Droid.Resource.Attribute.horizontalOffset; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.hoveredFocusedTranslationZ = global::mederly.Droid.Resource.Attribute.hoveredFocusedTranslationZ; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.icon = global::mederly.Droid.Resource.Attribute.icon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.iconEndPadding = global::mederly.Droid.Resource.Attribute.iconEndPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.iconGravity = global::mederly.Droid.Resource.Attribute.iconGravity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.iconifiedByDefault = global::mederly.Droid.Resource.Attribute.iconifiedByDefault; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.iconPadding = global::mederly.Droid.Resource.Attribute.iconPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.iconSize = global::mederly.Droid.Resource.Attribute.iconSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.iconStartPadding = global::mederly.Droid.Resource.Attribute.iconStartPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.iconTint = global::mederly.Droid.Resource.Attribute.iconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.iconTintMode = global::mederly.Droid.Resource.Attribute.iconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.imageButtonStyle = global::mederly.Droid.Resource.Attribute.imageButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.indeterminateProgressStyle = global::mederly.Droid.Resource.Attribute.indeterminateProgressStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.initialActivityCount = global::mederly.Droid.Resource.Attribute.initialActivityCount; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.insetForeground = global::mederly.Droid.Resource.Attribute.insetForeground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.isLightTheme = global::mederly.Droid.Resource.Attribute.isLightTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.isMaterialTheme = global::mederly.Droid.Resource.Attribute.isMaterialTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemBackground = global::mederly.Droid.Resource.Attribute.itemBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemFillColor = global::mederly.Droid.Resource.Attribute.itemFillColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemHorizontalPadding = global::mederly.Droid.Resource.Attribute.itemHorizontalPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemHorizontalTranslationEnabled = global::mederly.Droid.Resource.Attribute.itemHorizontalTranslationEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemIconPadding = global::mederly.Droid.Resource.Attribute.itemIconPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemIconSize = global::mederly.Droid.Resource.Attribute.itemIconSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemIconTint = global::mederly.Droid.Resource.Attribute.itemIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemMaxLines = global::mederly.Droid.Resource.Attribute.itemMaxLines; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemPadding = global::mederly.Droid.Resource.Attribute.itemPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemRippleColor = global::mederly.Droid.Resource.Attribute.itemRippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemShapeAppearance = global::mederly.Droid.Resource.Attribute.itemShapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemShapeAppearanceOverlay = global::mederly.Droid.Resource.Attribute.itemShapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemShapeFillColor = global::mederly.Droid.Resource.Attribute.itemShapeFillColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemShapeInsetBottom = global::mederly.Droid.Resource.Attribute.itemShapeInsetBottom; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemShapeInsetEnd = global::mederly.Droid.Resource.Attribute.itemShapeInsetEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemShapeInsetStart = global::mederly.Droid.Resource.Attribute.itemShapeInsetStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemShapeInsetTop = global::mederly.Droid.Resource.Attribute.itemShapeInsetTop; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemSpacing = global::mederly.Droid.Resource.Attribute.itemSpacing; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemStrokeColor = global::mederly.Droid.Resource.Attribute.itemStrokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemStrokeWidth = global::mederly.Droid.Resource.Attribute.itemStrokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemTextAppearance = global::mederly.Droid.Resource.Attribute.itemTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemTextAppearanceActive = global::mederly.Droid.Resource.Attribute.itemTextAppearanceActive; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemTextAppearanceInactive = global::mederly.Droid.Resource.Attribute.itemTextAppearanceInactive; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.itemTextColor = global::mederly.Droid.Resource.Attribute.itemTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.keylines = global::mederly.Droid.Resource.Attribute.keylines; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.labelBehavior = global::mederly.Droid.Resource.Attribute.labelBehavior; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.labelStyle = global::mederly.Droid.Resource.Attribute.labelStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.labelVisibilityMode = global::mederly.Droid.Resource.Attribute.labelVisibilityMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.lastBaselineToBottomHeight = global::mederly.Droid.Resource.Attribute.lastBaselineToBottomHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout = global::mederly.Droid.Resource.Attribute.layout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layoutManager = global::mederly.Droid.Resource.Attribute.layoutManager; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_anchor = global::mederly.Droid.Resource.Attribute.layout_anchor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_anchorGravity = global::mederly.Droid.Resource.Attribute.layout_anchorGravity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_behavior = global::mederly.Droid.Resource.Attribute.layout_behavior; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_collapseMode = global::mederly.Droid.Resource.Attribute.layout_collapseMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_collapseParallaxMultiplier = global::mederly.Droid.Resource.Attribute.layout_collapseParallaxMultiplier; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_dodgeInsetEdges = global::mederly.Droid.Resource.Attribute.layout_dodgeInsetEdges; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_insetEdge = global::mederly.Droid.Resource.Attribute.layout_insetEdge; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_keyline = global::mederly.Droid.Resource.Attribute.layout_keyline; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_scrollFlags = global::mederly.Droid.Resource.Attribute.layout_scrollFlags; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.layout_scrollInterpolator = global::mederly.Droid.Resource.Attribute.layout_scrollInterpolator; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.liftOnScroll = global::mederly.Droid.Resource.Attribute.liftOnScroll; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.liftOnScrollTargetViewId = global::mederly.Droid.Resource.Attribute.liftOnScrollTargetViewId; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.lineHeight = global::mederly.Droid.Resource.Attribute.lineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.lineSpacing = global::mederly.Droid.Resource.Attribute.lineSpacing; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listChoiceBackgroundIndicator = global::mederly.Droid.Resource.Attribute.listChoiceBackgroundIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listChoiceIndicatorMultipleAnimated = global::mederly.Droid.Resource.Attribute.listChoiceIndicatorMultipleAnimated; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listChoiceIndicatorSingleAnimated = global::mederly.Droid.Resource.Attribute.listChoiceIndicatorSingleAnimated; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listDividerAlertDialog = global::mederly.Droid.Resource.Attribute.listDividerAlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listItemLayout = global::mederly.Droid.Resource.Attribute.listItemLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listLayout = global::mederly.Droid.Resource.Attribute.listLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listMenuViewStyle = global::mederly.Droid.Resource.Attribute.listMenuViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listPopupWindowStyle = global::mederly.Droid.Resource.Attribute.listPopupWindowStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listPreferredItemHeight = global::mederly.Droid.Resource.Attribute.listPreferredItemHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listPreferredItemHeightLarge = global::mederly.Droid.Resource.Attribute.listPreferredItemHeightLarge; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listPreferredItemHeightSmall = global::mederly.Droid.Resource.Attribute.listPreferredItemHeightSmall; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listPreferredItemPaddingEnd = global::mederly.Droid.Resource.Attribute.listPreferredItemPaddingEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listPreferredItemPaddingLeft = global::mederly.Droid.Resource.Attribute.listPreferredItemPaddingLeft; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listPreferredItemPaddingRight = global::mederly.Droid.Resource.Attribute.listPreferredItemPaddingRight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.listPreferredItemPaddingStart = global::mederly.Droid.Resource.Attribute.listPreferredItemPaddingStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.logo = global::mederly.Droid.Resource.Attribute.logo; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.logoDescription = global::mederly.Droid.Resource.Attribute.logoDescription; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialAlertDialogBodyTextStyle = global::mederly.Droid.Resource.Attribute.materialAlertDialogBodyTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialAlertDialogTheme = global::mederly.Droid.Resource.Attribute.materialAlertDialogTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialAlertDialogTitleIconStyle = global::mederly.Droid.Resource.Attribute.materialAlertDialogTitleIconStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialAlertDialogTitlePanelStyle = global::mederly.Droid.Resource.Attribute.materialAlertDialogTitlePanelStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialAlertDialogTitleTextStyle = global::mederly.Droid.Resource.Attribute.materialAlertDialogTitleTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialButtonOutlinedStyle = global::mederly.Droid.Resource.Attribute.materialButtonOutlinedStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialButtonStyle = global::mederly.Droid.Resource.Attribute.materialButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialButtonToggleGroupStyle = global::mederly.Droid.Resource.Attribute.materialButtonToggleGroupStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarDay = global::mederly.Droid.Resource.Attribute.materialCalendarDay; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarFullscreenTheme = global::mederly.Droid.Resource.Attribute.materialCalendarFullscreenTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarHeaderConfirmButton = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderConfirmButton; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarHeaderDivider = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderDivider; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarHeaderLayout = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarHeaderSelection = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderSelection; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarHeaderTitle = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderTitle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarHeaderToggleButton = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderToggleButton; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarStyle = global::mederly.Droid.Resource.Attribute.materialCalendarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCalendarTheme = global::mederly.Droid.Resource.Attribute.materialCalendarTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialCardViewStyle = global::mederly.Droid.Resource.Attribute.materialCardViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.materialThemeOverlay = global::mederly.Droid.Resource.Attribute.materialThemeOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.maxActionInlineWidth = global::mederly.Droid.Resource.Attribute.maxActionInlineWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.maxButtonHeight = global::mederly.Droid.Resource.Attribute.maxButtonHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.maxCharacterCount = global::mederly.Droid.Resource.Attribute.maxCharacterCount; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.maxImageSize = global::mederly.Droid.Resource.Attribute.maxImageSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.maxLines = global::mederly.Droid.Resource.Attribute.maxLines; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.measureWithLargestChild = global::mederly.Droid.Resource.Attribute.measureWithLargestChild; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.menu = global::mederly.Droid.Resource.Attribute.menu; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.minTouchTargetSize = global::mederly.Droid.Resource.Attribute.minTouchTargetSize; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.multiChoiceItemLayout = global::mederly.Droid.Resource.Attribute.multiChoiceItemLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.navigationContentDescription = global::mederly.Droid.Resource.Attribute.navigationContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.navigationIcon = global::mederly.Droid.Resource.Attribute.navigationIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.navigationMode = global::mederly.Droid.Resource.Attribute.navigationMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.navigationViewStyle = global::mederly.Droid.Resource.Attribute.navigationViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.number = global::mederly.Droid.Resource.Attribute.number; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.numericModifiers = global::mederly.Droid.Resource.Attribute.numericModifiers; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.overlapAnchor = global::mederly.Droid.Resource.Attribute.overlapAnchor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.paddingBottomNoButtons = global::mederly.Droid.Resource.Attribute.paddingBottomNoButtons; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.paddingBottomSystemWindowInsets = global::mederly.Droid.Resource.Attribute.paddingBottomSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.paddingEnd = global::mederly.Droid.Resource.Attribute.paddingEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.paddingLeftSystemWindowInsets = global::mederly.Droid.Resource.Attribute.paddingLeftSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.paddingRightSystemWindowInsets = global::mederly.Droid.Resource.Attribute.paddingRightSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.paddingStart = global::mederly.Droid.Resource.Attribute.paddingStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.paddingTopNoTitle = global::mederly.Droid.Resource.Attribute.paddingTopNoTitle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.panelBackground = global::mederly.Droid.Resource.Attribute.panelBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.panelMenuListTheme = global::mederly.Droid.Resource.Attribute.panelMenuListTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.panelMenuListWidth = global::mederly.Droid.Resource.Attribute.panelMenuListWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.passwordToggleContentDescription = global::mederly.Droid.Resource.Attribute.passwordToggleContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.passwordToggleDrawable = global::mederly.Droid.Resource.Attribute.passwordToggleDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.passwordToggleEnabled = global::mederly.Droid.Resource.Attribute.passwordToggleEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.passwordToggleTint = global::mederly.Droid.Resource.Attribute.passwordToggleTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.passwordToggleTintMode = global::mederly.Droid.Resource.Attribute.passwordToggleTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.placeholderText = global::mederly.Droid.Resource.Attribute.placeholderText; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.placeholderTextAppearance = global::mederly.Droid.Resource.Attribute.placeholderTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.placeholderTextColor = global::mederly.Droid.Resource.Attribute.placeholderTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.popupMenuBackground = global::mederly.Droid.Resource.Attribute.popupMenuBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.popupMenuStyle = global::mederly.Droid.Resource.Attribute.popupMenuStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.popupTheme = global::mederly.Droid.Resource.Attribute.popupTheme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.popupWindowStyle = global::mederly.Droid.Resource.Attribute.popupWindowStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.prefixText = global::mederly.Droid.Resource.Attribute.prefixText; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.prefixTextAppearance = global::mederly.Droid.Resource.Attribute.prefixTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.prefixTextColor = global::mederly.Droid.Resource.Attribute.prefixTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.preserveIconSpacing = global::mederly.Droid.Resource.Attribute.preserveIconSpacing; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.pressedTranslationZ = global::mederly.Droid.Resource.Attribute.pressedTranslationZ; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.progressBarPadding = global::mederly.Droid.Resource.Attribute.progressBarPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.progressBarStyle = global::mederly.Droid.Resource.Attribute.progressBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.queryBackground = global::mederly.Droid.Resource.Attribute.queryBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.queryHint = global::mederly.Droid.Resource.Attribute.queryHint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.radioButtonStyle = global::mederly.Droid.Resource.Attribute.radioButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.rangeFillColor = global::mederly.Droid.Resource.Attribute.rangeFillColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.ratingBarStyle = global::mederly.Droid.Resource.Attribute.ratingBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.ratingBarStyleIndicator = global::mederly.Droid.Resource.Attribute.ratingBarStyleIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.ratingBarStyleSmall = global::mederly.Droid.Resource.Attribute.ratingBarStyleSmall; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.recyclerViewStyle = global::mederly.Droid.Resource.Attribute.recyclerViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.reverseLayout = global::mederly.Droid.Resource.Attribute.reverseLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.rippleColor = global::mederly.Droid.Resource.Attribute.rippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.scrimAnimationDuration = global::mederly.Droid.Resource.Attribute.scrimAnimationDuration; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.scrimBackground = global::mederly.Droid.Resource.Attribute.scrimBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.scrimVisibleHeightTrigger = global::mederly.Droid.Resource.Attribute.scrimVisibleHeightTrigger; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.scrollViewStyle = global::mederly.Droid.Resource.Attribute.scrollViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.searchHintIcon = global::mederly.Droid.Resource.Attribute.searchHintIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.searchIcon = global::mederly.Droid.Resource.Attribute.searchIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.searchViewStyle = global::mederly.Droid.Resource.Attribute.searchViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.seekBarStyle = global::mederly.Droid.Resource.Attribute.seekBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.selectableItemBackground = global::mederly.Droid.Resource.Attribute.selectableItemBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.selectableItemBackgroundBorderless = global::mederly.Droid.Resource.Attribute.selectableItemBackgroundBorderless; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.selectionRequired = global::mederly.Droid.Resource.Attribute.selectionRequired; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.shapeAppearance = global::mederly.Droid.Resource.Attribute.shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.shapeAppearanceLargeComponent = global::mederly.Droid.Resource.Attribute.shapeAppearanceLargeComponent; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.shapeAppearanceMediumComponent = global::mederly.Droid.Resource.Attribute.shapeAppearanceMediumComponent; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.shapeAppearanceOverlay = global::mederly.Droid.Resource.Attribute.shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.shapeAppearanceSmallComponent = global::mederly.Droid.Resource.Attribute.shapeAppearanceSmallComponent; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.showAsAction = global::mederly.Droid.Resource.Attribute.showAsAction; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.showDividers = global::mederly.Droid.Resource.Attribute.showDividers; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.showMotionSpec = global::mederly.Droid.Resource.Attribute.showMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.showText = global::mederly.Droid.Resource.Attribute.showText; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.showTitle = global::mederly.Droid.Resource.Attribute.showTitle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.shrinkMotionSpec = global::mederly.Droid.Resource.Attribute.shrinkMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.singleChoiceItemLayout = global::mederly.Droid.Resource.Attribute.singleChoiceItemLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.singleLine = global::mederly.Droid.Resource.Attribute.singleLine; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.singleSelection = global::mederly.Droid.Resource.Attribute.singleSelection; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.sliderStyle = global::mederly.Droid.Resource.Attribute.sliderStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.snackbarButtonStyle = global::mederly.Droid.Resource.Attribute.snackbarButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.snackbarStyle = global::mederly.Droid.Resource.Attribute.snackbarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.snackbarTextViewStyle = global::mederly.Droid.Resource.Attribute.snackbarTextViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.spanCount = global::mederly.Droid.Resource.Attribute.spanCount; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.spinBars = global::mederly.Droid.Resource.Attribute.spinBars; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.spinnerDropDownItemStyle = global::mederly.Droid.Resource.Attribute.spinnerDropDownItemStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.spinnerStyle = global::mederly.Droid.Resource.Attribute.spinnerStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.splitTrack = global::mederly.Droid.Resource.Attribute.splitTrack; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.srcCompat = global::mederly.Droid.Resource.Attribute.srcCompat; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.stackFromEnd = global::mederly.Droid.Resource.Attribute.stackFromEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.startIconCheckable = global::mederly.Droid.Resource.Attribute.startIconCheckable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.startIconContentDescription = global::mederly.Droid.Resource.Attribute.startIconContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.startIconDrawable = global::mederly.Droid.Resource.Attribute.startIconDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.startIconTint = global::mederly.Droid.Resource.Attribute.startIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.startIconTintMode = global::mederly.Droid.Resource.Attribute.startIconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.state_above_anchor = global::mederly.Droid.Resource.Attribute.state_above_anchor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.state_collapsed = global::mederly.Droid.Resource.Attribute.state_collapsed; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.state_collapsible = global::mederly.Droid.Resource.Attribute.state_collapsible; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.state_dragged = global::mederly.Droid.Resource.Attribute.state_dragged; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.state_liftable = global::mederly.Droid.Resource.Attribute.state_liftable; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.state_lifted = global::mederly.Droid.Resource.Attribute.state_lifted; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.statusBarBackground = global::mederly.Droid.Resource.Attribute.statusBarBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.statusBarForeground = global::mederly.Droid.Resource.Attribute.statusBarForeground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.statusBarScrim = global::mederly.Droid.Resource.Attribute.statusBarScrim; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.strokeColor = global::mederly.Droid.Resource.Attribute.strokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.strokeWidth = global::mederly.Droid.Resource.Attribute.strokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.subMenuArrow = global::mederly.Droid.Resource.Attribute.subMenuArrow; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.submitBackground = global::mederly.Droid.Resource.Attribute.submitBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.subtitle = global::mederly.Droid.Resource.Attribute.subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.subtitleTextAppearance = global::mederly.Droid.Resource.Attribute.subtitleTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.subtitleTextColor = global::mederly.Droid.Resource.Attribute.subtitleTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.subtitleTextStyle = global::mederly.Droid.Resource.Attribute.subtitleTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.suffixText = global::mederly.Droid.Resource.Attribute.suffixText; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.suffixTextAppearance = global::mederly.Droid.Resource.Attribute.suffixTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.suffixTextColor = global::mederly.Droid.Resource.Attribute.suffixTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.suggestionRowLayout = global::mederly.Droid.Resource.Attribute.suggestionRowLayout; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.swipeRefreshLayoutProgressSpinnerBackgroundColor = global::mederly.Droid.Resource.Attribute.swipeRefreshLayoutProgressSpinnerBackgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.switchMinWidth = global::mederly.Droid.Resource.Attribute.switchMinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.switchPadding = global::mederly.Droid.Resource.Attribute.switchPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.switchStyle = global::mederly.Droid.Resource.Attribute.switchStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.switchTextAppearance = global::mederly.Droid.Resource.Attribute.switchTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabBackground = global::mederly.Droid.Resource.Attribute.tabBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabContentStart = global::mederly.Droid.Resource.Attribute.tabContentStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabGravity = global::mederly.Droid.Resource.Attribute.tabGravity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabIconTint = global::mederly.Droid.Resource.Attribute.tabIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabIconTintMode = global::mederly.Droid.Resource.Attribute.tabIconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabIndicator = global::mederly.Droid.Resource.Attribute.tabIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabIndicatorAnimationDuration = global::mederly.Droid.Resource.Attribute.tabIndicatorAnimationDuration; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabIndicatorColor = global::mederly.Droid.Resource.Attribute.tabIndicatorColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabIndicatorFullWidth = global::mederly.Droid.Resource.Attribute.tabIndicatorFullWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabIndicatorGravity = global::mederly.Droid.Resource.Attribute.tabIndicatorGravity; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabIndicatorHeight = global::mederly.Droid.Resource.Attribute.tabIndicatorHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabInlineLabel = global::mederly.Droid.Resource.Attribute.tabInlineLabel; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabMaxWidth = global::mederly.Droid.Resource.Attribute.tabMaxWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabMinWidth = global::mederly.Droid.Resource.Attribute.tabMinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabMode = global::mederly.Droid.Resource.Attribute.tabMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabPadding = global::mederly.Droid.Resource.Attribute.tabPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabPaddingBottom = global::mederly.Droid.Resource.Attribute.tabPaddingBottom; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabPaddingEnd = global::mederly.Droid.Resource.Attribute.tabPaddingEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabPaddingStart = global::mederly.Droid.Resource.Attribute.tabPaddingStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabPaddingTop = global::mederly.Droid.Resource.Attribute.tabPaddingTop; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabRippleColor = global::mederly.Droid.Resource.Attribute.tabRippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabSelectedTextColor = global::mederly.Droid.Resource.Attribute.tabSelectedTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabStyle = global::mederly.Droid.Resource.Attribute.tabStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabTextAppearance = global::mederly.Droid.Resource.Attribute.tabTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabTextColor = global::mederly.Droid.Resource.Attribute.tabTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tabUnboundedRipple = global::mederly.Droid.Resource.Attribute.tabUnboundedRipple; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAllCaps = global::mederly.Droid.Resource.Attribute.textAllCaps; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceBody1 = global::mederly.Droid.Resource.Attribute.textAppearanceBody1; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceBody2 = global::mederly.Droid.Resource.Attribute.textAppearanceBody2; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceButton = global::mederly.Droid.Resource.Attribute.textAppearanceButton; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceCaption = global::mederly.Droid.Resource.Attribute.textAppearanceCaption; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceHeadline1 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline1; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceHeadline2 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline2; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceHeadline3 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline3; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceHeadline4 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline4; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceHeadline5 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline5; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceHeadline6 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline6; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceLargePopupMenu = global::mederly.Droid.Resource.Attribute.textAppearanceLargePopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceLineHeightEnabled = global::mederly.Droid.Resource.Attribute.textAppearanceLineHeightEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceListItem = global::mederly.Droid.Resource.Attribute.textAppearanceListItem; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceListItemSecondary = global::mederly.Droid.Resource.Attribute.textAppearanceListItemSecondary; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceListItemSmall = global::mederly.Droid.Resource.Attribute.textAppearanceListItemSmall; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceOverline = global::mederly.Droid.Resource.Attribute.textAppearanceOverline; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearancePopupMenuHeader = global::mederly.Droid.Resource.Attribute.textAppearancePopupMenuHeader; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceSearchResultSubtitle = global::mederly.Droid.Resource.Attribute.textAppearanceSearchResultSubtitle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceSearchResultTitle = global::mederly.Droid.Resource.Attribute.textAppearanceSearchResultTitle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceSmallPopupMenu = global::mederly.Droid.Resource.Attribute.textAppearanceSmallPopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceSubtitle1 = global::mederly.Droid.Resource.Attribute.textAppearanceSubtitle1; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textAppearanceSubtitle2 = global::mederly.Droid.Resource.Attribute.textAppearanceSubtitle2; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textColorAlertDialogListItem = global::mederly.Droid.Resource.Attribute.textColorAlertDialogListItem; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textColorSearchUrl = global::mederly.Droid.Resource.Attribute.textColorSearchUrl; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textEndPadding = global::mederly.Droid.Resource.Attribute.textEndPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textInputLayoutFocusedRectEnabled = global::mederly.Droid.Resource.Attribute.textInputLayoutFocusedRectEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textInputStyle = global::mederly.Droid.Resource.Attribute.textInputStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textLocale = global::mederly.Droid.Resource.Attribute.textLocale; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.textStartPadding = global::mederly.Droid.Resource.Attribute.textStartPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.theme = global::mederly.Droid.Resource.Attribute.theme; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.themeLineHeight = global::mederly.Droid.Resource.Attribute.themeLineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.thickness = global::mederly.Droid.Resource.Attribute.thickness; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.thumbColor = global::mederly.Droid.Resource.Attribute.thumbColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.thumbElevation = global::mederly.Droid.Resource.Attribute.thumbElevation; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.thumbRadius = global::mederly.Droid.Resource.Attribute.thumbRadius; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.thumbTextPadding = global::mederly.Droid.Resource.Attribute.thumbTextPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.thumbTint = global::mederly.Droid.Resource.Attribute.thumbTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.thumbTintMode = global::mederly.Droid.Resource.Attribute.thumbTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tickColor = global::mederly.Droid.Resource.Attribute.tickColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tickColorActive = global::mederly.Droid.Resource.Attribute.tickColorActive; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tickColorInactive = global::mederly.Droid.Resource.Attribute.tickColorInactive; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tickMark = global::mederly.Droid.Resource.Attribute.tickMark; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tickMarkTint = global::mederly.Droid.Resource.Attribute.tickMarkTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tickMarkTintMode = global::mederly.Droid.Resource.Attribute.tickMarkTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tint = global::mederly.Droid.Resource.Attribute.tint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tintMode = global::mederly.Droid.Resource.Attribute.tintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.title = global::mederly.Droid.Resource.Attribute.title; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleEnabled = global::mederly.Droid.Resource.Attribute.titleEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleMargin = global::mederly.Droid.Resource.Attribute.titleMargin; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleMarginBottom = global::mederly.Droid.Resource.Attribute.titleMarginBottom; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleMarginEnd = global::mederly.Droid.Resource.Attribute.titleMarginEnd; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleMargins = global::mederly.Droid.Resource.Attribute.titleMargins; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleMarginStart = global::mederly.Droid.Resource.Attribute.titleMarginStart; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleMarginTop = global::mederly.Droid.Resource.Attribute.titleMarginTop; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleTextAppearance = global::mederly.Droid.Resource.Attribute.titleTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleTextColor = global::mederly.Droid.Resource.Attribute.titleTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.titleTextStyle = global::mederly.Droid.Resource.Attribute.titleTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.toolbarId = global::mederly.Droid.Resource.Attribute.toolbarId; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.toolbarNavigationButtonStyle = global::mederly.Droid.Resource.Attribute.toolbarNavigationButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.toolbarStyle = global::mederly.Droid.Resource.Attribute.toolbarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tooltipForegroundColor = global::mederly.Droid.Resource.Attribute.tooltipForegroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tooltipFrameBackground = global::mederly.Droid.Resource.Attribute.tooltipFrameBackground; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tooltipStyle = global::mederly.Droid.Resource.Attribute.tooltipStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.tooltipText = global::mederly.Droid.Resource.Attribute.tooltipText; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.track = global::mederly.Droid.Resource.Attribute.track; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.trackColor = global::mederly.Droid.Resource.Attribute.trackColor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.trackColorActive = global::mederly.Droid.Resource.Attribute.trackColorActive; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.trackColorInactive = global::mederly.Droid.Resource.Attribute.trackColorInactive; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.trackHeight = global::mederly.Droid.Resource.Attribute.trackHeight; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.trackTint = global::mederly.Droid.Resource.Attribute.trackTint; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.trackTintMode = global::mederly.Droid.Resource.Attribute.trackTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.transitionShapeAppearance = global::mederly.Droid.Resource.Attribute.transitionShapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.ttcIndex = global::mederly.Droid.Resource.Attribute.ttcIndex; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.useCompatPadding = global::mederly.Droid.Resource.Attribute.useCompatPadding; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.useMaterialThemeColors = global::mederly.Droid.Resource.Attribute.useMaterialThemeColors; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.values = global::mederly.Droid.Resource.Attribute.values; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.verticalOffset = global::mederly.Droid.Resource.Attribute.verticalOffset; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.viewInflaterClass = global::mederly.Droid.Resource.Attribute.viewInflaterClass; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.voiceIcon = global::mederly.Droid.Resource.Attribute.voiceIcon; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowActionBar = global::mederly.Droid.Resource.Attribute.windowActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowActionBarOverlay = global::mederly.Droid.Resource.Attribute.windowActionBarOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowActionModeOverlay = global::mederly.Droid.Resource.Attribute.windowActionModeOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowFixedHeightMajor = global::mederly.Droid.Resource.Attribute.windowFixedHeightMajor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowFixedHeightMinor = global::mederly.Droid.Resource.Attribute.windowFixedHeightMinor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowFixedWidthMajor = global::mederly.Droid.Resource.Attribute.windowFixedWidthMajor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowFixedWidthMinor = global::mederly.Droid.Resource.Attribute.windowFixedWidthMinor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowMinWidthMajor = global::mederly.Droid.Resource.Attribute.windowMinWidthMajor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowMinWidthMinor = global::mederly.Droid.Resource.Attribute.windowMinWidthMinor; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.windowNoTitle = global::mederly.Droid.Resource.Attribute.windowNoTitle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.yearSelectedStyle = global::mederly.Droid.Resource.Attribute.yearSelectedStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.yearStyle = global::mederly.Droid.Resource.Attribute.yearStyle; + global::Xamarin.Forms.Platform.Android.Resource.Attribute.yearTodayStyle = global::mederly.Droid.Resource.Attribute.yearTodayStyle; + global::Xamarin.Forms.Platform.Android.Resource.Boolean.abc_action_bar_embed_tabs = global::mederly.Droid.Resource.Boolean.abc_action_bar_embed_tabs; + global::Xamarin.Forms.Platform.Android.Resource.Boolean.abc_allow_stacked_button_bar = global::mederly.Droid.Resource.Boolean.abc_allow_stacked_button_bar; + global::Xamarin.Forms.Platform.Android.Resource.Boolean.abc_config_actionMenuItemAllCaps = global::mederly.Droid.Resource.Boolean.abc_config_actionMenuItemAllCaps; + global::Xamarin.Forms.Platform.Android.Resource.Boolean.mtrl_btn_textappearance_all_caps = global::mederly.Droid.Resource.Boolean.mtrl_btn_textappearance_all_caps; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_background_cache_hint_selector_material_dark = global::mederly.Droid.Resource.Color.abc_background_cache_hint_selector_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_background_cache_hint_selector_material_light = global::mederly.Droid.Resource.Color.abc_background_cache_hint_selector_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_btn_colored_borderless_text_material = global::mederly.Droid.Resource.Color.abc_btn_colored_borderless_text_material; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_btn_colored_text_material = global::mederly.Droid.Resource.Color.abc_btn_colored_text_material; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_color_highlight_material = global::mederly.Droid.Resource.Color.abc_color_highlight_material; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_decor_view_status_guard = global::mederly.Droid.Resource.Color.abc_decor_view_status_guard; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_decor_view_status_guard_light = global::mederly.Droid.Resource.Color.abc_decor_view_status_guard_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_hint_foreground_material_dark = global::mederly.Droid.Resource.Color.abc_hint_foreground_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_hint_foreground_material_light = global::mederly.Droid.Resource.Color.abc_hint_foreground_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_primary_text_disable_only_material_dark = global::mederly.Droid.Resource.Color.abc_primary_text_disable_only_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_primary_text_disable_only_material_light = global::mederly.Droid.Resource.Color.abc_primary_text_disable_only_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_primary_text_material_dark = global::mederly.Droid.Resource.Color.abc_primary_text_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_primary_text_material_light = global::mederly.Droid.Resource.Color.abc_primary_text_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_search_url_text = global::mederly.Droid.Resource.Color.abc_search_url_text; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_search_url_text_normal = global::mederly.Droid.Resource.Color.abc_search_url_text_normal; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_search_url_text_pressed = global::mederly.Droid.Resource.Color.abc_search_url_text_pressed; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_search_url_text_selected = global::mederly.Droid.Resource.Color.abc_search_url_text_selected; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_secondary_text_material_dark = global::mederly.Droid.Resource.Color.abc_secondary_text_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_secondary_text_material_light = global::mederly.Droid.Resource.Color.abc_secondary_text_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_tint_btn_checkable = global::mederly.Droid.Resource.Color.abc_tint_btn_checkable; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_tint_default = global::mederly.Droid.Resource.Color.abc_tint_default; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_tint_edittext = global::mederly.Droid.Resource.Color.abc_tint_edittext; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_tint_seek_thumb = global::mederly.Droid.Resource.Color.abc_tint_seek_thumb; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_tint_spinner = global::mederly.Droid.Resource.Color.abc_tint_spinner; + global::Xamarin.Forms.Platform.Android.Resource.Color.abc_tint_switch_track = global::mederly.Droid.Resource.Color.abc_tint_switch_track; + global::Xamarin.Forms.Platform.Android.Resource.Color.accent_material_dark = global::mederly.Droid.Resource.Color.accent_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.accent_material_light = global::mederly.Droid.Resource.Color.accent_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.androidx_core_ripple_material_light = global::mederly.Droid.Resource.Color.androidx_core_ripple_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.androidx_core_secondary_text_default_material_light = global::mederly.Droid.Resource.Color.androidx_core_secondary_text_default_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.background_floating_material_dark = global::mederly.Droid.Resource.Color.background_floating_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.background_floating_material_light = global::mederly.Droid.Resource.Color.background_floating_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.background_material_dark = global::mederly.Droid.Resource.Color.background_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.background_material_light = global::mederly.Droid.Resource.Color.background_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.bright_foreground_disabled_material_dark = global::mederly.Droid.Resource.Color.bright_foreground_disabled_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.bright_foreground_disabled_material_light = global::mederly.Droid.Resource.Color.bright_foreground_disabled_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.bright_foreground_inverse_material_dark = global::mederly.Droid.Resource.Color.bright_foreground_inverse_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.bright_foreground_inverse_material_light = global::mederly.Droid.Resource.Color.bright_foreground_inverse_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.bright_foreground_material_dark = global::mederly.Droid.Resource.Color.bright_foreground_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.bright_foreground_material_light = global::mederly.Droid.Resource.Color.bright_foreground_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.button_material_dark = global::mederly.Droid.Resource.Color.button_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.button_material_light = global::mederly.Droid.Resource.Color.button_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.cardview_dark_background = global::mederly.Droid.Resource.Color.cardview_dark_background; + global::Xamarin.Forms.Platform.Android.Resource.Color.cardview_light_background = global::mederly.Droid.Resource.Color.cardview_light_background; + global::Xamarin.Forms.Platform.Android.Resource.Color.cardview_shadow_end_color = global::mederly.Droid.Resource.Color.cardview_shadow_end_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.cardview_shadow_start_color = global::mederly.Droid.Resource.Color.cardview_shadow_start_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.checkbox_themeable_attribute_color = global::mederly.Droid.Resource.Color.checkbox_themeable_attribute_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_bottom_navigation_shadow_color = global::mederly.Droid.Resource.Color.design_bottom_navigation_shadow_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_box_stroke_color = global::mederly.Droid.Resource.Color.design_box_stroke_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_background = global::mederly.Droid.Resource.Color.design_dark_default_color_background; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_error = global::mederly.Droid.Resource.Color.design_dark_default_color_error; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_on_background = global::mederly.Droid.Resource.Color.design_dark_default_color_on_background; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_on_error = global::mederly.Droid.Resource.Color.design_dark_default_color_on_error; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_on_primary = global::mederly.Droid.Resource.Color.design_dark_default_color_on_primary; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_on_secondary = global::mederly.Droid.Resource.Color.design_dark_default_color_on_secondary; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_on_surface = global::mederly.Droid.Resource.Color.design_dark_default_color_on_surface; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_primary = global::mederly.Droid.Resource.Color.design_dark_default_color_primary; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_primary_dark = global::mederly.Droid.Resource.Color.design_dark_default_color_primary_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_primary_variant = global::mederly.Droid.Resource.Color.design_dark_default_color_primary_variant; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_secondary = global::mederly.Droid.Resource.Color.design_dark_default_color_secondary; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_secondary_variant = global::mederly.Droid.Resource.Color.design_dark_default_color_secondary_variant; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_dark_default_color_surface = global::mederly.Droid.Resource.Color.design_dark_default_color_surface; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_background = global::mederly.Droid.Resource.Color.design_default_color_background; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_error = global::mederly.Droid.Resource.Color.design_default_color_error; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_on_background = global::mederly.Droid.Resource.Color.design_default_color_on_background; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_on_error = global::mederly.Droid.Resource.Color.design_default_color_on_error; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_on_primary = global::mederly.Droid.Resource.Color.design_default_color_on_primary; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_on_secondary = global::mederly.Droid.Resource.Color.design_default_color_on_secondary; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_on_surface = global::mederly.Droid.Resource.Color.design_default_color_on_surface; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_primary = global::mederly.Droid.Resource.Color.design_default_color_primary; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_primary_dark = global::mederly.Droid.Resource.Color.design_default_color_primary_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_primary_variant = global::mederly.Droid.Resource.Color.design_default_color_primary_variant; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_secondary = global::mederly.Droid.Resource.Color.design_default_color_secondary; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_secondary_variant = global::mederly.Droid.Resource.Color.design_default_color_secondary_variant; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_default_color_surface = global::mederly.Droid.Resource.Color.design_default_color_surface; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_error = global::mederly.Droid.Resource.Color.design_error; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_fab_shadow_end_color = global::mederly.Droid.Resource.Color.design_fab_shadow_end_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_fab_shadow_mid_color = global::mederly.Droid.Resource.Color.design_fab_shadow_mid_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_fab_shadow_start_color = global::mederly.Droid.Resource.Color.design_fab_shadow_start_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_fab_stroke_end_inner_color = global::mederly.Droid.Resource.Color.design_fab_stroke_end_inner_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_fab_stroke_end_outer_color = global::mederly.Droid.Resource.Color.design_fab_stroke_end_outer_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_fab_stroke_top_inner_color = global::mederly.Droid.Resource.Color.design_fab_stroke_top_inner_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_fab_stroke_top_outer_color = global::mederly.Droid.Resource.Color.design_fab_stroke_top_outer_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_icon_tint = global::mederly.Droid.Resource.Color.design_icon_tint; + global::Xamarin.Forms.Platform.Android.Resource.Color.design_snackbar_background_color = global::mederly.Droid.Resource.Color.design_snackbar_background_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.dim_foreground_disabled_material_dark = global::mederly.Droid.Resource.Color.dim_foreground_disabled_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.dim_foreground_disabled_material_light = global::mederly.Droid.Resource.Color.dim_foreground_disabled_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.dim_foreground_material_dark = global::mederly.Droid.Resource.Color.dim_foreground_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.dim_foreground_material_light = global::mederly.Droid.Resource.Color.dim_foreground_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.error_color_material_dark = global::mederly.Droid.Resource.Color.error_color_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.error_color_material_light = global::mederly.Droid.Resource.Color.error_color_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.foreground_material_dark = global::mederly.Droid.Resource.Color.foreground_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.foreground_material_light = global::mederly.Droid.Resource.Color.foreground_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.highlighted_text_material_dark = global::mederly.Droid.Resource.Color.highlighted_text_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.highlighted_text_material_light = global::mederly.Droid.Resource.Color.highlighted_text_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_blue_grey_800 = global::mederly.Droid.Resource.Color.material_blue_grey_800; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_blue_grey_900 = global::mederly.Droid.Resource.Color.material_blue_grey_900; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_blue_grey_950 = global::mederly.Droid.Resource.Color.material_blue_grey_950; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_deep_teal_200 = global::mederly.Droid.Resource.Color.material_deep_teal_200; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_deep_teal_500 = global::mederly.Droid.Resource.Color.material_deep_teal_500; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_grey_100 = global::mederly.Droid.Resource.Color.material_grey_100; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_grey_300 = global::mederly.Droid.Resource.Color.material_grey_300; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_grey_50 = global::mederly.Droid.Resource.Color.material_grey_50; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_grey_600 = global::mederly.Droid.Resource.Color.material_grey_600; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_grey_800 = global::mederly.Droid.Resource.Color.material_grey_800; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_grey_850 = global::mederly.Droid.Resource.Color.material_grey_850; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_grey_900 = global::mederly.Droid.Resource.Color.material_grey_900; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_background_disabled = global::mederly.Droid.Resource.Color.material_on_background_disabled; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_background_emphasis_high_type = global::mederly.Droid.Resource.Color.material_on_background_emphasis_high_type; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_background_emphasis_medium = global::mederly.Droid.Resource.Color.material_on_background_emphasis_medium; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_primary_disabled = global::mederly.Droid.Resource.Color.material_on_primary_disabled; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_primary_emphasis_high_type = global::mederly.Droid.Resource.Color.material_on_primary_emphasis_high_type; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_primary_emphasis_medium = global::mederly.Droid.Resource.Color.material_on_primary_emphasis_medium; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_surface_disabled = global::mederly.Droid.Resource.Color.material_on_surface_disabled; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_surface_emphasis_high_type = global::mederly.Droid.Resource.Color.material_on_surface_emphasis_high_type; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_surface_emphasis_medium = global::mederly.Droid.Resource.Color.material_on_surface_emphasis_medium; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_on_surface_stroke = global::mederly.Droid.Resource.Color.material_on_surface_stroke; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_slider_active_tick_marks_color = global::mederly.Droid.Resource.Color.material_slider_active_tick_marks_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_slider_active_track_color = global::mederly.Droid.Resource.Color.material_slider_active_track_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_slider_halo_color = global::mederly.Droid.Resource.Color.material_slider_halo_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_slider_inactive_tick_marks_color = global::mederly.Droid.Resource.Color.material_slider_inactive_tick_marks_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_slider_inactive_track_color = global::mederly.Droid.Resource.Color.material_slider_inactive_track_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.material_slider_thumb_color = global::mederly.Droid.Resource.Color.material_slider_thumb_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_bottom_nav_colored_item_tint = global::mederly.Droid.Resource.Color.mtrl_bottom_nav_colored_item_tint; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_bottom_nav_colored_ripple_color = global::mederly.Droid.Resource.Color.mtrl_bottom_nav_colored_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_bottom_nav_item_tint = global::mederly.Droid.Resource.Color.mtrl_bottom_nav_item_tint; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_bottom_nav_ripple_color = global::mederly.Droid.Resource.Color.mtrl_bottom_nav_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_btn_bg_color_selector = global::mederly.Droid.Resource.Color.mtrl_btn_bg_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_btn_ripple_color = global::mederly.Droid.Resource.Color.mtrl_btn_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_btn_stroke_color_selector = global::mederly.Droid.Resource.Color.mtrl_btn_stroke_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_btn_text_btn_bg_color_selector = global::mederly.Droid.Resource.Color.mtrl_btn_text_btn_bg_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_btn_text_btn_ripple_color = global::mederly.Droid.Resource.Color.mtrl_btn_text_btn_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_btn_text_color_disabled = global::mederly.Droid.Resource.Color.mtrl_btn_text_color_disabled; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_btn_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_btn_text_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_btn_transparent_bg_color = global::mederly.Droid.Resource.Color.mtrl_btn_transparent_bg_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_calendar_item_stroke_color = global::mederly.Droid.Resource.Color.mtrl_calendar_item_stroke_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_calendar_selected_range = global::mederly.Droid.Resource.Color.mtrl_calendar_selected_range; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_card_view_foreground = global::mederly.Droid.Resource.Color.mtrl_card_view_foreground; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_card_view_ripple = global::mederly.Droid.Resource.Color.mtrl_card_view_ripple; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_chip_background_color = global::mederly.Droid.Resource.Color.mtrl_chip_background_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_chip_close_icon_tint = global::mederly.Droid.Resource.Color.mtrl_chip_close_icon_tint; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_chip_ripple_color = global::mederly.Droid.Resource.Color.mtrl_chip_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_chip_surface_color = global::mederly.Droid.Resource.Color.mtrl_chip_surface_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_chip_text_color = global::mederly.Droid.Resource.Color.mtrl_chip_text_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_choice_chip_background_color = global::mederly.Droid.Resource.Color.mtrl_choice_chip_background_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_choice_chip_ripple_color = global::mederly.Droid.Resource.Color.mtrl_choice_chip_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_choice_chip_text_color = global::mederly.Droid.Resource.Color.mtrl_choice_chip_text_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_error = global::mederly.Droid.Resource.Color.mtrl_error; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_fab_bg_color_selector = global::mederly.Droid.Resource.Color.mtrl_fab_bg_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_fab_icon_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_fab_icon_text_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_fab_ripple_color = global::mederly.Droid.Resource.Color.mtrl_fab_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_filled_background_color = global::mederly.Droid.Resource.Color.mtrl_filled_background_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_filled_icon_tint = global::mederly.Droid.Resource.Color.mtrl_filled_icon_tint; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_filled_stroke_color = global::mederly.Droid.Resource.Color.mtrl_filled_stroke_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_indicator_text_color = global::mederly.Droid.Resource.Color.mtrl_indicator_text_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_navigation_item_background_color = global::mederly.Droid.Resource.Color.mtrl_navigation_item_background_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_navigation_item_icon_tint = global::mederly.Droid.Resource.Color.mtrl_navigation_item_icon_tint; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_navigation_item_text_color = global::mederly.Droid.Resource.Color.mtrl_navigation_item_text_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_on_primary_text_btn_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_on_primary_text_btn_text_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_outlined_icon_tint = global::mederly.Droid.Resource.Color.mtrl_outlined_icon_tint; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_outlined_stroke_color = global::mederly.Droid.Resource.Color.mtrl_outlined_stroke_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_popupmenu_overlay_color = global::mederly.Droid.Resource.Color.mtrl_popupmenu_overlay_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_scrim_color = global::mederly.Droid.Resource.Color.mtrl_scrim_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_tabs_colored_ripple_color = global::mederly.Droid.Resource.Color.mtrl_tabs_colored_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_tabs_icon_color_selector = global::mederly.Droid.Resource.Color.mtrl_tabs_icon_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_tabs_icon_color_selector_colored = global::mederly.Droid.Resource.Color.mtrl_tabs_icon_color_selector_colored; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_tabs_legacy_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_tabs_legacy_text_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_tabs_ripple_color = global::mederly.Droid.Resource.Color.mtrl_tabs_ripple_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_textinput_default_box_stroke_color = global::mederly.Droid.Resource.Color.mtrl_textinput_default_box_stroke_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_textinput_disabled_color = global::mederly.Droid.Resource.Color.mtrl_textinput_disabled_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_textinput_filled_box_default_background_color = global::mederly.Droid.Resource.Color.mtrl_textinput_filled_box_default_background_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_textinput_focused_box_stroke_color = global::mederly.Droid.Resource.Color.mtrl_textinput_focused_box_stroke_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_textinput_hovered_box_stroke_color = global::mederly.Droid.Resource.Color.mtrl_textinput_hovered_box_stroke_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.mtrl_text_btn_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_text_btn_text_color_selector; + global::Xamarin.Forms.Platform.Android.Resource.Color.notification_action_color_filter = global::mederly.Droid.Resource.Color.notification_action_color_filter; + global::Xamarin.Forms.Platform.Android.Resource.Color.notification_icon_bg_color = global::mederly.Droid.Resource.Color.notification_icon_bg_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.notification_material_background_media_default_color = global::mederly.Droid.Resource.Color.notification_material_background_media_default_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.primary_dark_material_dark = global::mederly.Droid.Resource.Color.primary_dark_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.primary_dark_material_light = global::mederly.Droid.Resource.Color.primary_dark_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.primary_material_dark = global::mederly.Droid.Resource.Color.primary_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.primary_material_light = global::mederly.Droid.Resource.Color.primary_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.primary_text_default_material_dark = global::mederly.Droid.Resource.Color.primary_text_default_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.primary_text_default_material_light = global::mederly.Droid.Resource.Color.primary_text_default_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.primary_text_disabled_material_dark = global::mederly.Droid.Resource.Color.primary_text_disabled_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.primary_text_disabled_material_light = global::mederly.Droid.Resource.Color.primary_text_disabled_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.radiobutton_themeable_attribute_color = global::mederly.Droid.Resource.Color.radiobutton_themeable_attribute_color; + global::Xamarin.Forms.Platform.Android.Resource.Color.ripple_material_dark = global::mederly.Droid.Resource.Color.ripple_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.ripple_material_light = global::mederly.Droid.Resource.Color.ripple_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.secondary_text_default_material_dark = global::mederly.Droid.Resource.Color.secondary_text_default_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.secondary_text_default_material_light = global::mederly.Droid.Resource.Color.secondary_text_default_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.secondary_text_disabled_material_dark = global::mederly.Droid.Resource.Color.secondary_text_disabled_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.secondary_text_disabled_material_light = global::mederly.Droid.Resource.Color.secondary_text_disabled_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.switch_thumb_disabled_material_dark = global::mederly.Droid.Resource.Color.switch_thumb_disabled_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.switch_thumb_disabled_material_light = global::mederly.Droid.Resource.Color.switch_thumb_disabled_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.switch_thumb_material_dark = global::mederly.Droid.Resource.Color.switch_thumb_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.switch_thumb_material_light = global::mederly.Droid.Resource.Color.switch_thumb_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.switch_thumb_normal_material_dark = global::mederly.Droid.Resource.Color.switch_thumb_normal_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.switch_thumb_normal_material_light = global::mederly.Droid.Resource.Color.switch_thumb_normal_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Color.test_mtrl_calendar_day = global::mederly.Droid.Resource.Color.test_mtrl_calendar_day; + global::Xamarin.Forms.Platform.Android.Resource.Color.test_mtrl_calendar_day_selected = global::mederly.Droid.Resource.Color.test_mtrl_calendar_day_selected; + global::Xamarin.Forms.Platform.Android.Resource.Color.tooltip_background_dark = global::mederly.Droid.Resource.Color.tooltip_background_dark; + global::Xamarin.Forms.Platform.Android.Resource.Color.tooltip_background_light = global::mederly.Droid.Resource.Color.tooltip_background_light; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_content_inset_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_content_inset_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_content_inset_with_nav = global::mederly.Droid.Resource.Dimension.abc_action_bar_content_inset_with_nav; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_default_height_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_default_height_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_default_padding_end_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_default_padding_end_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_default_padding_start_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_default_padding_start_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_elevation_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_elevation_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_icon_vertical_padding_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_icon_vertical_padding_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_overflow_padding_end_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_overflow_padding_end_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_overflow_padding_start_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_overflow_padding_start_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_stacked_max_height = global::mederly.Droid.Resource.Dimension.abc_action_bar_stacked_max_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_stacked_tab_max_width = global::mederly.Droid.Resource.Dimension.abc_action_bar_stacked_tab_max_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_subtitle_bottom_margin_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_subtitle_bottom_margin_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_bar_subtitle_top_margin_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_subtitle_top_margin_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_button_min_height_material = global::mederly.Droid.Resource.Dimension.abc_action_button_min_height_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_button_min_width_material = global::mederly.Droid.Resource.Dimension.abc_action_button_min_width_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_action_button_min_width_overflow_material = global::mederly.Droid.Resource.Dimension.abc_action_button_min_width_overflow_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_alert_dialog_button_bar_height = global::mederly.Droid.Resource.Dimension.abc_alert_dialog_button_bar_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_alert_dialog_button_dimen = global::mederly.Droid.Resource.Dimension.abc_alert_dialog_button_dimen; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_button_inset_horizontal_material = global::mederly.Droid.Resource.Dimension.abc_button_inset_horizontal_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_button_inset_vertical_material = global::mederly.Droid.Resource.Dimension.abc_button_inset_vertical_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_button_padding_horizontal_material = global::mederly.Droid.Resource.Dimension.abc_button_padding_horizontal_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_button_padding_vertical_material = global::mederly.Droid.Resource.Dimension.abc_button_padding_vertical_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_cascading_menus_min_smallest_width = global::mederly.Droid.Resource.Dimension.abc_cascading_menus_min_smallest_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_config_prefDialogWidth = global::mederly.Droid.Resource.Dimension.abc_config_prefDialogWidth; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_control_corner_material = global::mederly.Droid.Resource.Dimension.abc_control_corner_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_control_inset_material = global::mederly.Droid.Resource.Dimension.abc_control_inset_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_control_padding_material = global::mederly.Droid.Resource.Dimension.abc_control_padding_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_corner_radius_material = global::mederly.Droid.Resource.Dimension.abc_dialog_corner_radius_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_fixed_height_major = global::mederly.Droid.Resource.Dimension.abc_dialog_fixed_height_major; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_fixed_height_minor = global::mederly.Droid.Resource.Dimension.abc_dialog_fixed_height_minor; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_fixed_width_major = global::mederly.Droid.Resource.Dimension.abc_dialog_fixed_width_major; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_fixed_width_minor = global::mederly.Droid.Resource.Dimension.abc_dialog_fixed_width_minor; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_list_padding_bottom_no_buttons = global::mederly.Droid.Resource.Dimension.abc_dialog_list_padding_bottom_no_buttons; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_list_padding_top_no_title = global::mederly.Droid.Resource.Dimension.abc_dialog_list_padding_top_no_title; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_min_width_major = global::mederly.Droid.Resource.Dimension.abc_dialog_min_width_major; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_min_width_minor = global::mederly.Droid.Resource.Dimension.abc_dialog_min_width_minor; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_padding_material = global::mederly.Droid.Resource.Dimension.abc_dialog_padding_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_padding_top_material = global::mederly.Droid.Resource.Dimension.abc_dialog_padding_top_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dialog_title_divider_material = global::mederly.Droid.Resource.Dimension.abc_dialog_title_divider_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_disabled_alpha_material_dark = global::mederly.Droid.Resource.Dimension.abc_disabled_alpha_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_disabled_alpha_material_light = global::mederly.Droid.Resource.Dimension.abc_disabled_alpha_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dropdownitem_icon_width = global::mederly.Droid.Resource.Dimension.abc_dropdownitem_icon_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dropdownitem_text_padding_left = global::mederly.Droid.Resource.Dimension.abc_dropdownitem_text_padding_left; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_dropdownitem_text_padding_right = global::mederly.Droid.Resource.Dimension.abc_dropdownitem_text_padding_right; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_edit_text_inset_bottom_material = global::mederly.Droid.Resource.Dimension.abc_edit_text_inset_bottom_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_edit_text_inset_horizontal_material = global::mederly.Droid.Resource.Dimension.abc_edit_text_inset_horizontal_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_edit_text_inset_top_material = global::mederly.Droid.Resource.Dimension.abc_edit_text_inset_top_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_floating_window_z = global::mederly.Droid.Resource.Dimension.abc_floating_window_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_list_item_height_large_material = global::mederly.Droid.Resource.Dimension.abc_list_item_height_large_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_list_item_height_material = global::mederly.Droid.Resource.Dimension.abc_list_item_height_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_list_item_height_small_material = global::mederly.Droid.Resource.Dimension.abc_list_item_height_small_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_list_item_padding_horizontal_material = global::mederly.Droid.Resource.Dimension.abc_list_item_padding_horizontal_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_panel_menu_list_width = global::mederly.Droid.Resource.Dimension.abc_panel_menu_list_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_progress_bar_height_material = global::mederly.Droid.Resource.Dimension.abc_progress_bar_height_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_search_view_preferred_height = global::mederly.Droid.Resource.Dimension.abc_search_view_preferred_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_search_view_preferred_width = global::mederly.Droid.Resource.Dimension.abc_search_view_preferred_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_seekbar_track_background_height_material = global::mederly.Droid.Resource.Dimension.abc_seekbar_track_background_height_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_seekbar_track_progress_height_material = global::mederly.Droid.Resource.Dimension.abc_seekbar_track_progress_height_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_select_dialog_padding_start_material = global::mederly.Droid.Resource.Dimension.abc_select_dialog_padding_start_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_switch_padding = global::mederly.Droid.Resource.Dimension.abc_switch_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_body_1_material = global::mederly.Droid.Resource.Dimension.abc_text_size_body_1_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_body_2_material = global::mederly.Droid.Resource.Dimension.abc_text_size_body_2_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_button_material = global::mederly.Droid.Resource.Dimension.abc_text_size_button_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_caption_material = global::mederly.Droid.Resource.Dimension.abc_text_size_caption_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_display_1_material = global::mederly.Droid.Resource.Dimension.abc_text_size_display_1_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_display_2_material = global::mederly.Droid.Resource.Dimension.abc_text_size_display_2_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_display_3_material = global::mederly.Droid.Resource.Dimension.abc_text_size_display_3_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_display_4_material = global::mederly.Droid.Resource.Dimension.abc_text_size_display_4_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_headline_material = global::mederly.Droid.Resource.Dimension.abc_text_size_headline_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_large_material = global::mederly.Droid.Resource.Dimension.abc_text_size_large_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_medium_material = global::mederly.Droid.Resource.Dimension.abc_text_size_medium_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_menu_header_material = global::mederly.Droid.Resource.Dimension.abc_text_size_menu_header_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_menu_material = global::mederly.Droid.Resource.Dimension.abc_text_size_menu_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_small_material = global::mederly.Droid.Resource.Dimension.abc_text_size_small_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_subhead_material = global::mederly.Droid.Resource.Dimension.abc_text_size_subhead_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_subtitle_material_toolbar = global::mederly.Droid.Resource.Dimension.abc_text_size_subtitle_material_toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_title_material = global::mederly.Droid.Resource.Dimension.abc_text_size_title_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.abc_text_size_title_material_toolbar = global::mederly.Droid.Resource.Dimension.abc_text_size_title_material_toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.action_bar_size = global::mederly.Droid.Resource.Dimension.action_bar_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.appcompat_dialog_background_inset = global::mederly.Droid.Resource.Dimension.appcompat_dialog_background_inset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.cardview_compat_inset_shadow = global::mederly.Droid.Resource.Dimension.cardview_compat_inset_shadow; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.cardview_default_elevation = global::mederly.Droid.Resource.Dimension.cardview_default_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.cardview_default_radius = global::mederly.Droid.Resource.Dimension.cardview_default_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.compat_button_inset_horizontal_material = global::mederly.Droid.Resource.Dimension.compat_button_inset_horizontal_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.compat_button_inset_vertical_material = global::mederly.Droid.Resource.Dimension.compat_button_inset_vertical_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.compat_button_padding_horizontal_material = global::mederly.Droid.Resource.Dimension.compat_button_padding_horizontal_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.compat_button_padding_vertical_material = global::mederly.Droid.Resource.Dimension.compat_button_padding_vertical_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.compat_control_corner_material = global::mederly.Droid.Resource.Dimension.compat_control_corner_material; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.compat_notification_large_icon_max_height = global::mederly.Droid.Resource.Dimension.compat_notification_large_icon_max_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.compat_notification_large_icon_max_width = global::mederly.Droid.Resource.Dimension.compat_notification_large_icon_max_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.default_dimension = global::mederly.Droid.Resource.Dimension.default_dimension; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.def_drawer_elevation = global::mederly.Droid.Resource.Dimension.def_drawer_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_appbar_elevation = global::mederly.Droid.Resource.Dimension.design_appbar_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_active_item_max_width = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_active_item_max_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_active_item_min_width = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_active_item_min_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_active_text_size = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_active_text_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_elevation = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_height = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_icon_size = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_icon_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_item_max_width = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_item_max_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_item_min_width = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_item_min_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_margin = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_shadow_height = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_shadow_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_navigation_text_size = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_text_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_sheet_elevation = global::mederly.Droid.Resource.Dimension.design_bottom_sheet_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_sheet_modal_elevation = global::mederly.Droid.Resource.Dimension.design_bottom_sheet_modal_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_bottom_sheet_peek_height_min = global::mederly.Droid.Resource.Dimension.design_bottom_sheet_peek_height_min; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_fab_border_width = global::mederly.Droid.Resource.Dimension.design_fab_border_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_fab_elevation = global::mederly.Droid.Resource.Dimension.design_fab_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_fab_image_size = global::mederly.Droid.Resource.Dimension.design_fab_image_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_fab_size_mini = global::mederly.Droid.Resource.Dimension.design_fab_size_mini; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_fab_size_normal = global::mederly.Droid.Resource.Dimension.design_fab_size_normal; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_fab_translation_z_hovered_focused = global::mederly.Droid.Resource.Dimension.design_fab_translation_z_hovered_focused; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_fab_translation_z_pressed = global::mederly.Droid.Resource.Dimension.design_fab_translation_z_pressed; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_navigation_elevation = global::mederly.Droid.Resource.Dimension.design_navigation_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_navigation_icon_padding = global::mederly.Droid.Resource.Dimension.design_navigation_icon_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_navigation_icon_size = global::mederly.Droid.Resource.Dimension.design_navigation_icon_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_navigation_item_horizontal_padding = global::mederly.Droid.Resource.Dimension.design_navigation_item_horizontal_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_navigation_item_icon_padding = global::mederly.Droid.Resource.Dimension.design_navigation_item_icon_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_navigation_max_width = global::mederly.Droid.Resource.Dimension.design_navigation_max_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_navigation_padding_bottom = global::mederly.Droid.Resource.Dimension.design_navigation_padding_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_navigation_separator_vertical_padding = global::mederly.Droid.Resource.Dimension.design_navigation_separator_vertical_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_action_inline_max_width = global::mederly.Droid.Resource.Dimension.design_snackbar_action_inline_max_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_action_text_color_alpha = global::mederly.Droid.Resource.Dimension.design_snackbar_action_text_color_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_background_corner_radius = global::mederly.Droid.Resource.Dimension.design_snackbar_background_corner_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_elevation = global::mederly.Droid.Resource.Dimension.design_snackbar_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_extra_spacing_horizontal = global::mederly.Droid.Resource.Dimension.design_snackbar_extra_spacing_horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_max_width = global::mederly.Droid.Resource.Dimension.design_snackbar_max_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_min_width = global::mederly.Droid.Resource.Dimension.design_snackbar_min_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_padding_horizontal = global::mederly.Droid.Resource.Dimension.design_snackbar_padding_horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_padding_vertical = global::mederly.Droid.Resource.Dimension.design_snackbar_padding_vertical; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_padding_vertical_2lines = global::mederly.Droid.Resource.Dimension.design_snackbar_padding_vertical_2lines; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_snackbar_text_size = global::mederly.Droid.Resource.Dimension.design_snackbar_text_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_tab_max_width = global::mederly.Droid.Resource.Dimension.design_tab_max_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_tab_scrollable_min_width = global::mederly.Droid.Resource.Dimension.design_tab_scrollable_min_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_tab_text_size = global::mederly.Droid.Resource.Dimension.design_tab_text_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_tab_text_size_2line = global::mederly.Droid.Resource.Dimension.design_tab_text_size_2line; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.design_textinput_caption_translate_y = global::mederly.Droid.Resource.Dimension.design_textinput_caption_translate_y; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.disabled_alpha_material_dark = global::mederly.Droid.Resource.Dimension.disabled_alpha_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.disabled_alpha_material_light = global::mederly.Droid.Resource.Dimension.disabled_alpha_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.fastscroll_default_thickness = global::mederly.Droid.Resource.Dimension.fastscroll_default_thickness; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.fastscroll_margin = global::mederly.Droid.Resource.Dimension.fastscroll_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.fastscroll_minimum_range = global::mederly.Droid.Resource.Dimension.fastscroll_minimum_range; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.highlight_alpha_material_colored = global::mederly.Droid.Resource.Dimension.highlight_alpha_material_colored; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.highlight_alpha_material_dark = global::mederly.Droid.Resource.Dimension.highlight_alpha_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.highlight_alpha_material_light = global::mederly.Droid.Resource.Dimension.highlight_alpha_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.hint_alpha_material_dark = global::mederly.Droid.Resource.Dimension.hint_alpha_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.hint_alpha_material_light = global::mederly.Droid.Resource.Dimension.hint_alpha_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.hint_pressed_alpha_material_dark = global::mederly.Droid.Resource.Dimension.hint_pressed_alpha_material_dark; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.hint_pressed_alpha_material_light = global::mederly.Droid.Resource.Dimension.hint_pressed_alpha_material_light; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.item_touch_helper_max_drag_scroll_per_frame = global::mederly.Droid.Resource.Dimension.item_touch_helper_max_drag_scroll_per_frame; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.item_touch_helper_swipe_escape_max_velocity = global::mederly.Droid.Resource.Dimension.item_touch_helper_swipe_escape_max_velocity; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.item_touch_helper_swipe_escape_velocity = global::mederly.Droid.Resource.Dimension.item_touch_helper_swipe_escape_velocity; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.material_emphasis_disabled = global::mederly.Droid.Resource.Dimension.material_emphasis_disabled; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.material_emphasis_high_type = global::mederly.Droid.Resource.Dimension.material_emphasis_high_type; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.material_emphasis_medium = global::mederly.Droid.Resource.Dimension.material_emphasis_medium; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.material_text_view_test_line_height = global::mederly.Droid.Resource.Dimension.material_text_view_test_line_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.material_text_view_test_line_height_override = global::mederly.Droid.Resource.Dimension.material_text_view_test_line_height_override; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_alert_dialog_background_inset_bottom = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_background_inset_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_alert_dialog_background_inset_end = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_background_inset_end; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_alert_dialog_background_inset_start = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_background_inset_start; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_alert_dialog_background_inset_top = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_background_inset_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_alert_dialog_picker_background_inset = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_picker_background_inset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_badge_horizontal_edge_offset = global::mederly.Droid.Resource.Dimension.mtrl_badge_horizontal_edge_offset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_badge_long_text_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_badge_long_text_horizontal_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_badge_radius = global::mederly.Droid.Resource.Dimension.mtrl_badge_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_badge_text_horizontal_edge_offset = global::mederly.Droid.Resource.Dimension.mtrl_badge_text_horizontal_edge_offset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_badge_text_size = global::mederly.Droid.Resource.Dimension.mtrl_badge_text_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_badge_with_text_radius = global::mederly.Droid.Resource.Dimension.mtrl_badge_with_text_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_bottomappbar_fabOffsetEndMode = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fabOffsetEndMode; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_bottomappbar_fab_bottom_margin = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fab_bottom_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_bottomappbar_fab_cradle_margin = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fab_cradle_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_bottomappbar_fab_cradle_rounded_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fab_cradle_rounded_corner_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_bottomappbar_fab_cradle_vertical_offset = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fab_cradle_vertical_offset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_bottomappbar_height = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_btn_corner_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_dialog_btn_min_width = global::mederly.Droid.Resource.Dimension.mtrl_btn_dialog_btn_min_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_disabled_elevation = global::mederly.Droid.Resource.Dimension.mtrl_btn_disabled_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_disabled_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_disabled_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_elevation = global::mederly.Droid.Resource.Dimension.mtrl_btn_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_focused_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_focused_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_hovered_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_hovered_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_icon_btn_padding_left = global::mederly.Droid.Resource.Dimension.mtrl_btn_icon_btn_padding_left; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_icon_padding = global::mederly.Droid.Resource.Dimension.mtrl_btn_icon_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_inset = global::mederly.Droid.Resource.Dimension.mtrl_btn_inset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_letter_spacing = global::mederly.Droid.Resource.Dimension.mtrl_btn_letter_spacing; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_padding_bottom = global::mederly.Droid.Resource.Dimension.mtrl_btn_padding_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_padding_left = global::mederly.Droid.Resource.Dimension.mtrl_btn_padding_left; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_padding_right = global::mederly.Droid.Resource.Dimension.mtrl_btn_padding_right; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_padding_top = global::mederly.Droid.Resource.Dimension.mtrl_btn_padding_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_pressed_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_pressed_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_stroke_size = global::mederly.Droid.Resource.Dimension.mtrl_btn_stroke_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_text_btn_icon_padding = global::mederly.Droid.Resource.Dimension.mtrl_btn_text_btn_icon_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_text_btn_padding_left = global::mederly.Droid.Resource.Dimension.mtrl_btn_text_btn_padding_left; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_text_btn_padding_right = global::mederly.Droid.Resource.Dimension.mtrl_btn_text_btn_padding_right; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_text_size = global::mederly.Droid.Resource.Dimension.mtrl_btn_text_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_btn_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_action_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_action_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_action_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_action_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_bottom_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_bottom_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_content_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_content_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_days_of_week_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_days_of_week_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_day_corner = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_corner; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_day_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_day_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_horizontal_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_day_today_stroke = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_today_stroke; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_day_vertical_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_vertical_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_day_width = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_dialog_background_inset = global::mederly.Droid.Resource.Dimension.mtrl_calendar_dialog_background_inset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_content_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_content_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_content_padding_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_content_padding_fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_divider_thickness = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_divider_thickness; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_height_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_height_fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_selection_line_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_selection_line_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_text_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_text_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_toggle_margin_bottom = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_toggle_margin_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_header_toggle_margin_top = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_toggle_margin_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_landscape_header_width = global::mederly.Droid.Resource.Dimension.mtrl_calendar_landscape_header_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_maximum_default_fullscreen_minor_axis = global::mederly.Droid.Resource.Dimension.mtrl_calendar_maximum_default_fullscreen_minor_axis; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_month_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_month_horizontal_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_month_vertical_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_month_vertical_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_navigation_bottom_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_navigation_bottom_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_navigation_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_navigation_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_navigation_top_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_navigation_top_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_pre_l_text_clip_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_pre_l_text_clip_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_selection_baseline_to_top_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_selection_baseline_to_top_fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom = global::mederly.Droid.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom_fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_top = global::mederly.Droid.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_text_input_padding_top = global::mederly.Droid.Resource.Dimension.mtrl_calendar_text_input_padding_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_title_baseline_to_top = global::mederly.Droid.Resource.Dimension.mtrl_calendar_title_baseline_to_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_title_baseline_to_top_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_title_baseline_to_top_fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_year_corner = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_corner; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_year_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_year_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_horizontal_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_year_vertical_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_vertical_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_calendar_year_width = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_card_checked_icon_margin = global::mederly.Droid.Resource.Dimension.mtrl_card_checked_icon_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_card_checked_icon_size = global::mederly.Droid.Resource.Dimension.mtrl_card_checked_icon_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_card_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_card_corner_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_card_dragged_z = global::mederly.Droid.Resource.Dimension.mtrl_card_dragged_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_card_elevation = global::mederly.Droid.Resource.Dimension.mtrl_card_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_card_spacing = global::mederly.Droid.Resource.Dimension.mtrl_card_spacing; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_chip_pressed_translation_z = global::mederly.Droid.Resource.Dimension.mtrl_chip_pressed_translation_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_chip_text_size = global::mederly.Droid.Resource.Dimension.mtrl_chip_text_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_edittext_rectangle_top_offset = global::mederly.Droid.Resource.Dimension.mtrl_edittext_rectangle_top_offset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_elevation = global::mederly.Droid.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_offset = global::mederly.Droid.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_offset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_padding = global::mederly.Droid.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_bottom_padding = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_bottom_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_corner_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_disabled_elevation = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_disabled_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_disabled_translation_z = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_disabled_translation_z; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_elevation = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_end_padding = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_end_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_end_padding_icon = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_end_padding_icon; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_icon_size = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_icon_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_icon_text_spacing = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_icon_text_spacing; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_min_height = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_min_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_min_width = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_min_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_start_padding = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_start_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_start_padding_icon = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_start_padding_icon; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_top_padding = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_top_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_translation_z_base = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_translation_z_base; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_translation_z_hovered_focused = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_translation_z_hovered_focused; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_extended_fab_translation_z_pressed = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_translation_z_pressed; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_fab_elevation = global::mederly.Droid.Resource.Dimension.mtrl_fab_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_fab_min_touch_target = global::mederly.Droid.Resource.Dimension.mtrl_fab_min_touch_target; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_fab_translation_z_hovered_focused = global::mederly.Droid.Resource.Dimension.mtrl_fab_translation_z_hovered_focused; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_fab_translation_z_pressed = global::mederly.Droid.Resource.Dimension.mtrl_fab_translation_z_pressed; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_high_ripple_default_alpha = global::mederly.Droid.Resource.Dimension.mtrl_high_ripple_default_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_high_ripple_focused_alpha = global::mederly.Droid.Resource.Dimension.mtrl_high_ripple_focused_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_high_ripple_hovered_alpha = global::mederly.Droid.Resource.Dimension.mtrl_high_ripple_hovered_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_high_ripple_pressed_alpha = global::mederly.Droid.Resource.Dimension.mtrl_high_ripple_pressed_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_large_touch_target = global::mederly.Droid.Resource.Dimension.mtrl_large_touch_target; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_low_ripple_default_alpha = global::mederly.Droid.Resource.Dimension.mtrl_low_ripple_default_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_low_ripple_focused_alpha = global::mederly.Droid.Resource.Dimension.mtrl_low_ripple_focused_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_low_ripple_hovered_alpha = global::mederly.Droid.Resource.Dimension.mtrl_low_ripple_hovered_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_low_ripple_pressed_alpha = global::mederly.Droid.Resource.Dimension.mtrl_low_ripple_pressed_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_min_touch_target_size = global::mederly.Droid.Resource.Dimension.mtrl_min_touch_target_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_navigation_elevation = global::mederly.Droid.Resource.Dimension.mtrl_navigation_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_navigation_item_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_horizontal_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_navigation_item_icon_padding = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_icon_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_navigation_item_icon_size = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_icon_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_navigation_item_shape_horizontal_margin = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_shape_horizontal_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_navigation_item_shape_vertical_margin = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_shape_vertical_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_shape_corner_size_large_component = global::mederly.Droid.Resource.Dimension.mtrl_shape_corner_size_large_component; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_shape_corner_size_medium_component = global::mederly.Droid.Resource.Dimension.mtrl_shape_corner_size_medium_component; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_shape_corner_size_small_component = global::mederly.Droid.Resource.Dimension.mtrl_shape_corner_size_small_component; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_halo_radius = global::mederly.Droid.Resource.Dimension.mtrl_slider_halo_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_label_padding = global::mederly.Droid.Resource.Dimension.mtrl_slider_label_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_label_radius = global::mederly.Droid.Resource.Dimension.mtrl_slider_label_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_label_square_side = global::mederly.Droid.Resource.Dimension.mtrl_slider_label_square_side; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_thumb_elevation = global::mederly.Droid.Resource.Dimension.mtrl_slider_thumb_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_thumb_radius = global::mederly.Droid.Resource.Dimension.mtrl_slider_thumb_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_track_height = global::mederly.Droid.Resource.Dimension.mtrl_slider_track_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_track_side_padding = global::mederly.Droid.Resource.Dimension.mtrl_slider_track_side_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_track_top = global::mederly.Droid.Resource.Dimension.mtrl_slider_track_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_slider_widget_height = global::mederly.Droid.Resource.Dimension.mtrl_slider_widget_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_snackbar_action_text_color_alpha = global::mederly.Droid.Resource.Dimension.mtrl_snackbar_action_text_color_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_snackbar_background_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_snackbar_background_corner_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_snackbar_background_overlay_color_alpha = global::mederly.Droid.Resource.Dimension.mtrl_snackbar_background_overlay_color_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_snackbar_margin = global::mederly.Droid.Resource.Dimension.mtrl_snackbar_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_switch_thumb_elevation = global::mederly.Droid.Resource.Dimension.mtrl_switch_thumb_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_box_corner_radius_medium = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_corner_radius_medium; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_box_corner_radius_small = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_corner_radius_small; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_box_label_cutout_padding = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_label_cutout_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_box_stroke_width_default = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_stroke_width_default; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_box_stroke_width_focused = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_stroke_width_focused; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_counter_margin_start = global::mederly.Droid.Resource.Dimension.mtrl_textinput_counter_margin_start; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_end_icon_margin_start = global::mederly.Droid.Resource.Dimension.mtrl_textinput_end_icon_margin_start; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_outline_box_expanded_padding = global::mederly.Droid.Resource.Dimension.mtrl_textinput_outline_box_expanded_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_textinput_start_icon_margin_end = global::mederly.Droid.Resource.Dimension.mtrl_textinput_start_icon_margin_end; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_toolbar_default_height = global::mederly.Droid.Resource.Dimension.mtrl_toolbar_default_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_tooltip_arrowSize = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_arrowSize; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_tooltip_cornerSize = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_cornerSize; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_tooltip_minHeight = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_minHeight; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_tooltip_minWidth = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_minWidth; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_tooltip_padding = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.mtrl_transition_shared_axis_slide_distance = global::mederly.Droid.Resource.Dimension.mtrl_transition_shared_axis_slide_distance; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_action_icon_size = global::mederly.Droid.Resource.Dimension.notification_action_icon_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_action_text_size = global::mederly.Droid.Resource.Dimension.notification_action_text_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_big_circle_margin = global::mederly.Droid.Resource.Dimension.notification_big_circle_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_content_margin_start = global::mederly.Droid.Resource.Dimension.notification_content_margin_start; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_large_icon_height = global::mederly.Droid.Resource.Dimension.notification_large_icon_height; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_large_icon_width = global::mederly.Droid.Resource.Dimension.notification_large_icon_width; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_main_column_padding_top = global::mederly.Droid.Resource.Dimension.notification_main_column_padding_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_media_narrow_margin = global::mederly.Droid.Resource.Dimension.notification_media_narrow_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_right_icon_size = global::mederly.Droid.Resource.Dimension.notification_right_icon_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_right_side_padding_top = global::mederly.Droid.Resource.Dimension.notification_right_side_padding_top; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_small_icon_background_padding = global::mederly.Droid.Resource.Dimension.notification_small_icon_background_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_small_icon_size_as_large = global::mederly.Droid.Resource.Dimension.notification_small_icon_size_as_large; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_subtext_size = global::mederly.Droid.Resource.Dimension.notification_subtext_size; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_top_pad = global::mederly.Droid.Resource.Dimension.notification_top_pad; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.notification_top_pad_large_text = global::mederly.Droid.Resource.Dimension.notification_top_pad_large_text; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.test_mtrl_calendar_day_cornerSize = global::mederly.Droid.Resource.Dimension.test_mtrl_calendar_day_cornerSize; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.tooltip_corner_radius = global::mederly.Droid.Resource.Dimension.tooltip_corner_radius; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.tooltip_horizontal_padding = global::mederly.Droid.Resource.Dimension.tooltip_horizontal_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.tooltip_margin = global::mederly.Droid.Resource.Dimension.tooltip_margin; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.tooltip_precise_anchor_extra_offset = global::mederly.Droid.Resource.Dimension.tooltip_precise_anchor_extra_offset; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.tooltip_precise_anchor_threshold = global::mederly.Droid.Resource.Dimension.tooltip_precise_anchor_threshold; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.tooltip_vertical_padding = global::mederly.Droid.Resource.Dimension.tooltip_vertical_padding; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.tooltip_y_offset_non_touch = global::mederly.Droid.Resource.Dimension.tooltip_y_offset_non_touch; + global::Xamarin.Forms.Platform.Android.Resource.Dimension.tooltip_y_offset_touch = global::mederly.Droid.Resource.Dimension.tooltip_y_offset_touch; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ab_share_pack_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ab_share_pack_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_action_bar_item_background_material = global::mederly.Droid.Resource.Drawable.abc_action_bar_item_background_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_borderless_material = global::mederly.Droid.Resource.Drawable.abc_btn_borderless_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_check_material = global::mederly.Droid.Resource.Drawable.abc_btn_check_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_check_material_anim = global::mederly.Droid.Resource.Drawable.abc_btn_check_material_anim; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_check_to_on_mtrl_000 = global::mederly.Droid.Resource.Drawable.abc_btn_check_to_on_mtrl_000; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_check_to_on_mtrl_015 = global::mederly.Droid.Resource.Drawable.abc_btn_check_to_on_mtrl_015; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_colored_material = global::mederly.Droid.Resource.Drawable.abc_btn_colored_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_default_mtrl_shape = global::mederly.Droid.Resource.Drawable.abc_btn_default_mtrl_shape; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_radio_material = global::mederly.Droid.Resource.Drawable.abc_btn_radio_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_radio_material_anim = global::mederly.Droid.Resource.Drawable.abc_btn_radio_material_anim; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_radio_to_on_mtrl_000 = global::mederly.Droid.Resource.Drawable.abc_btn_radio_to_on_mtrl_000; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_radio_to_on_mtrl_015 = global::mederly.Droid.Resource.Drawable.abc_btn_radio_to_on_mtrl_015; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_switch_to_on_mtrl_00001 = global::mederly.Droid.Resource.Drawable.abc_btn_switch_to_on_mtrl_00001; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_btn_switch_to_on_mtrl_00012 = global::mederly.Droid.Resource.Drawable.abc_btn_switch_to_on_mtrl_00012; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_cab_background_internal_bg = global::mederly.Droid.Resource.Drawable.abc_cab_background_internal_bg; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_cab_background_top_material = global::mederly.Droid.Resource.Drawable.abc_cab_background_top_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_cab_background_top_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_cab_background_top_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_control_background_material = global::mederly.Droid.Resource.Drawable.abc_control_background_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_dialog_material_background = global::mederly.Droid.Resource.Drawable.abc_dialog_material_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_edit_text_material = global::mederly.Droid.Resource.Drawable.abc_edit_text_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_ab_back_material = global::mederly.Droid.Resource.Drawable.abc_ic_ab_back_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_arrow_drop_right_black_24dp = global::mederly.Droid.Resource.Drawable.abc_ic_arrow_drop_right_black_24dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_clear_material = global::mederly.Droid.Resource.Drawable.abc_ic_clear_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_commit_search_api_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_commit_search_api_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_go_search_api_material = global::mederly.Droid.Resource.Drawable.abc_ic_go_search_api_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_menu_copy_mtrl_am_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_copy_mtrl_am_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_menu_cut_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_cut_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_menu_overflow_material = global::mederly.Droid.Resource.Drawable.abc_ic_menu_overflow_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_menu_paste_mtrl_am_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_paste_mtrl_am_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_menu_selectall_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_selectall_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_menu_share_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_share_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_search_api_material = global::mederly.Droid.Resource.Drawable.abc_ic_search_api_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_star_black_16dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_black_16dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_star_black_36dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_black_36dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_star_black_48dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_black_48dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_star_half_black_16dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_half_black_16dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_star_half_black_36dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_half_black_36dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_star_half_black_48dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_half_black_48dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ic_voice_search_api_material = global::mederly.Droid.Resource.Drawable.abc_ic_voice_search_api_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_item_background_holo_dark = global::mederly.Droid.Resource.Drawable.abc_item_background_holo_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_item_background_holo_light = global::mederly.Droid.Resource.Drawable.abc_item_background_holo_light; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_divider_material = global::mederly.Droid.Resource.Drawable.abc_list_divider_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_divider_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_list_divider_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_focused_holo = global::mederly.Droid.Resource.Drawable.abc_list_focused_holo; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_longpressed_holo = global::mederly.Droid.Resource.Drawable.abc_list_longpressed_holo; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_pressed_holo_dark = global::mederly.Droid.Resource.Drawable.abc_list_pressed_holo_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_pressed_holo_light = global::mederly.Droid.Resource.Drawable.abc_list_pressed_holo_light; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_selector_background_transition_holo_dark = global::mederly.Droid.Resource.Drawable.abc_list_selector_background_transition_holo_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_selector_background_transition_holo_light = global::mederly.Droid.Resource.Drawable.abc_list_selector_background_transition_holo_light; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_selector_disabled_holo_dark = global::mederly.Droid.Resource.Drawable.abc_list_selector_disabled_holo_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_selector_disabled_holo_light = global::mederly.Droid.Resource.Drawable.abc_list_selector_disabled_holo_light; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_selector_holo_dark = global::mederly.Droid.Resource.Drawable.abc_list_selector_holo_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_list_selector_holo_light = global::mederly.Droid.Resource.Drawable.abc_list_selector_holo_light; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_menu_hardkey_panel_mtrl_mult = global::mederly.Droid.Resource.Drawable.abc_menu_hardkey_panel_mtrl_mult; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_popup_background_mtrl_mult = global::mederly.Droid.Resource.Drawable.abc_popup_background_mtrl_mult; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ratingbar_indicator_material = global::mederly.Droid.Resource.Drawable.abc_ratingbar_indicator_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ratingbar_material = global::mederly.Droid.Resource.Drawable.abc_ratingbar_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_ratingbar_small_material = global::mederly.Droid.Resource.Drawable.abc_ratingbar_small_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_scrubber_control_off_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_scrubber_control_off_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_000 = global::mederly.Droid.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_000; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_005 = global::mederly.Droid.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_005; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_scrubber_primary_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_scrubber_primary_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_scrubber_track_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_scrubber_track_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_seekbar_thumb_material = global::mederly.Droid.Resource.Drawable.abc_seekbar_thumb_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_seekbar_tick_mark_material = global::mederly.Droid.Resource.Drawable.abc_seekbar_tick_mark_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_seekbar_track_material = global::mederly.Droid.Resource.Drawable.abc_seekbar_track_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_spinner_mtrl_am_alpha = global::mederly.Droid.Resource.Drawable.abc_spinner_mtrl_am_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_spinner_textfield_background_material = global::mederly.Droid.Resource.Drawable.abc_spinner_textfield_background_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_switch_thumb_material = global::mederly.Droid.Resource.Drawable.abc_switch_thumb_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_switch_track_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_switch_track_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_tab_indicator_material = global::mederly.Droid.Resource.Drawable.abc_tab_indicator_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_tab_indicator_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_tab_indicator_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_textfield_activated_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_textfield_activated_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_textfield_default_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_textfield_default_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_textfield_search_activated_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_textfield_search_activated_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_textfield_search_default_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_textfield_search_default_mtrl_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_textfield_search_material = global::mederly.Droid.Resource.Drawable.abc_textfield_search_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_text_cursor_material = global::mederly.Droid.Resource.Drawable.abc_text_cursor_material; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_text_select_handle_left_mtrl_dark = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_left_mtrl_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_text_select_handle_left_mtrl_light = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_left_mtrl_light; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_text_select_handle_middle_mtrl_dark = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_middle_mtrl_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_text_select_handle_middle_mtrl_light = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_middle_mtrl_light; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_text_select_handle_right_mtrl_dark = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_right_mtrl_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_text_select_handle_right_mtrl_light = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_right_mtrl_light; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.abc_vector_test = global::mederly.Droid.Resource.Drawable.abc_vector_test; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.avd_hide_password = global::mederly.Droid.Resource.Drawable.avd_hide_password; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.avd_show_password = global::mederly.Droid.Resource.Drawable.avd_show_password; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.btn_checkbox_checked_mtrl = global::mederly.Droid.Resource.Drawable.btn_checkbox_checked_mtrl; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.btn_checkbox_checked_to_unchecked_mtrl_animation = global::mederly.Droid.Resource.Drawable.btn_checkbox_checked_to_unchecked_mtrl_animation; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.btn_checkbox_unchecked_mtrl = global::mederly.Droid.Resource.Drawable.btn_checkbox_unchecked_mtrl; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.btn_checkbox_unchecked_to_checked_mtrl_animation = global::mederly.Droid.Resource.Drawable.btn_checkbox_unchecked_to_checked_mtrl_animation; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.btn_radio_off_mtrl = global::mederly.Droid.Resource.Drawable.btn_radio_off_mtrl; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.btn_radio_off_to_on_mtrl_animation = global::mederly.Droid.Resource.Drawable.btn_radio_off_to_on_mtrl_animation; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.btn_radio_on_mtrl = global::mederly.Droid.Resource.Drawable.btn_radio_on_mtrl; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.btn_radio_on_to_off_mtrl_animation = global::mederly.Droid.Resource.Drawable.btn_radio_on_to_off_mtrl_animation; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.design_bottom_navigation_item_background = global::mederly.Droid.Resource.Drawable.design_bottom_navigation_item_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.design_fab_background = global::mederly.Droid.Resource.Drawable.design_fab_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.design_ic_visibility = global::mederly.Droid.Resource.Drawable.design_ic_visibility; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.design_ic_visibility_off = global::mederly.Droid.Resource.Drawable.design_ic_visibility_off; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.design_password_eye = global::mederly.Droid.Resource.Drawable.design_password_eye; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.design_snackbar_background = global::mederly.Droid.Resource.Drawable.design_snackbar_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.ic_mtrl_checked_circle = global::mederly.Droid.Resource.Drawable.ic_mtrl_checked_circle; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.ic_mtrl_chip_checked_black = global::mederly.Droid.Resource.Drawable.ic_mtrl_chip_checked_black; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.ic_mtrl_chip_checked_circle = global::mederly.Droid.Resource.Drawable.ic_mtrl_chip_checked_circle; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.ic_mtrl_chip_close_circle = global::mederly.Droid.Resource.Drawable.ic_mtrl_chip_close_circle; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.material_ic_calendar_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_calendar_black_24dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.material_ic_clear_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_clear_black_24dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.material_ic_edit_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_edit_black_24dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.material_ic_keyboard_arrow_left_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_keyboard_arrow_left_black_24dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.material_ic_keyboard_arrow_right_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_keyboard_arrow_right_black_24dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.material_ic_menu_arrow_down_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_menu_arrow_down_black_24dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.material_ic_menu_arrow_up_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_menu_arrow_up_black_24dp; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_dialog_background = global::mederly.Droid.Resource.Drawable.mtrl_dialog_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_dropdown_arrow = global::mederly.Droid.Resource.Drawable.mtrl_dropdown_arrow; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_ic_arrow_drop_down = global::mederly.Droid.Resource.Drawable.mtrl_ic_arrow_drop_down; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_ic_arrow_drop_up = global::mederly.Droid.Resource.Drawable.mtrl_ic_arrow_drop_up; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_ic_cancel = global::mederly.Droid.Resource.Drawable.mtrl_ic_cancel; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_ic_error = global::mederly.Droid.Resource.Drawable.mtrl_ic_error; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_popupmenu_background = global::mederly.Droid.Resource.Drawable.mtrl_popupmenu_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_popupmenu_background_dark = global::mederly.Droid.Resource.Drawable.mtrl_popupmenu_background_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.mtrl_tabs_default_indicator = global::mederly.Droid.Resource.Drawable.mtrl_tabs_default_indicator; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.navigation_empty_icon = global::mederly.Droid.Resource.Drawable.navigation_empty_icon; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_action_background = global::mederly.Droid.Resource.Drawable.notification_action_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_bg = global::mederly.Droid.Resource.Drawable.notification_bg; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_bg_low = global::mederly.Droid.Resource.Drawable.notification_bg_low; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_bg_low_normal = global::mederly.Droid.Resource.Drawable.notification_bg_low_normal; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_bg_low_pressed = global::mederly.Droid.Resource.Drawable.notification_bg_low_pressed; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_bg_normal = global::mederly.Droid.Resource.Drawable.notification_bg_normal; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_bg_normal_pressed = global::mederly.Droid.Resource.Drawable.notification_bg_normal_pressed; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_icon_background = global::mederly.Droid.Resource.Drawable.notification_icon_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_template_icon_bg = global::mederly.Droid.Resource.Drawable.notification_template_icon_bg; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_template_icon_low_bg = global::mederly.Droid.Resource.Drawable.notification_template_icon_low_bg; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notification_tile_bg = global::mederly.Droid.Resource.Drawable.notification_tile_bg; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.notify_panel_notification_icon_bg = global::mederly.Droid.Resource.Drawable.notify_panel_notification_icon_bg; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.test_custom_background = global::mederly.Droid.Resource.Drawable.test_custom_background; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.tooltip_frame_dark = global::mederly.Droid.Resource.Drawable.tooltip_frame_dark; + global::Xamarin.Forms.Platform.Android.Resource.Drawable.tooltip_frame_light = global::mederly.Droid.Resource.Drawable.tooltip_frame_light; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_action_clickable_span = global::mederly.Droid.Resource.Id.accessibility_action_clickable_span; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_0 = global::mederly.Droid.Resource.Id.accessibility_custom_action_0; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_1 = global::mederly.Droid.Resource.Id.accessibility_custom_action_1; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_10 = global::mederly.Droid.Resource.Id.accessibility_custom_action_10; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_11 = global::mederly.Droid.Resource.Id.accessibility_custom_action_11; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_12 = global::mederly.Droid.Resource.Id.accessibility_custom_action_12; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_13 = global::mederly.Droid.Resource.Id.accessibility_custom_action_13; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_14 = global::mederly.Droid.Resource.Id.accessibility_custom_action_14; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_15 = global::mederly.Droid.Resource.Id.accessibility_custom_action_15; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_16 = global::mederly.Droid.Resource.Id.accessibility_custom_action_16; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_17 = global::mederly.Droid.Resource.Id.accessibility_custom_action_17; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_18 = global::mederly.Droid.Resource.Id.accessibility_custom_action_18; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_19 = global::mederly.Droid.Resource.Id.accessibility_custom_action_19; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_2 = global::mederly.Droid.Resource.Id.accessibility_custom_action_2; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_20 = global::mederly.Droid.Resource.Id.accessibility_custom_action_20; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_21 = global::mederly.Droid.Resource.Id.accessibility_custom_action_21; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_22 = global::mederly.Droid.Resource.Id.accessibility_custom_action_22; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_23 = global::mederly.Droid.Resource.Id.accessibility_custom_action_23; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_24 = global::mederly.Droid.Resource.Id.accessibility_custom_action_24; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_25 = global::mederly.Droid.Resource.Id.accessibility_custom_action_25; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_26 = global::mederly.Droid.Resource.Id.accessibility_custom_action_26; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_27 = global::mederly.Droid.Resource.Id.accessibility_custom_action_27; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_28 = global::mederly.Droid.Resource.Id.accessibility_custom_action_28; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_29 = global::mederly.Droid.Resource.Id.accessibility_custom_action_29; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_3 = global::mederly.Droid.Resource.Id.accessibility_custom_action_3; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_30 = global::mederly.Droid.Resource.Id.accessibility_custom_action_30; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_31 = global::mederly.Droid.Resource.Id.accessibility_custom_action_31; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_4 = global::mederly.Droid.Resource.Id.accessibility_custom_action_4; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_5 = global::mederly.Droid.Resource.Id.accessibility_custom_action_5; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_6 = global::mederly.Droid.Resource.Id.accessibility_custom_action_6; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_7 = global::mederly.Droid.Resource.Id.accessibility_custom_action_7; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_8 = global::mederly.Droid.Resource.Id.accessibility_custom_action_8; + global::Xamarin.Forms.Platform.Android.Resource.Id.accessibility_custom_action_9 = global::mederly.Droid.Resource.Id.accessibility_custom_action_9; + global::Xamarin.Forms.Platform.Android.Resource.Id.action0 = global::mederly.Droid.Resource.Id.action0; + global::Xamarin.Forms.Platform.Android.Resource.Id.actions = global::mederly.Droid.Resource.Id.actions; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_bar = global::mederly.Droid.Resource.Id.action_bar; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_bar_activity_content = global::mederly.Droid.Resource.Id.action_bar_activity_content; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_bar_container = global::mederly.Droid.Resource.Id.action_bar_container; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_bar_root = global::mederly.Droid.Resource.Id.action_bar_root; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_bar_spinner = global::mederly.Droid.Resource.Id.action_bar_spinner; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_bar_subtitle = global::mederly.Droid.Resource.Id.action_bar_subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_bar_title = global::mederly.Droid.Resource.Id.action_bar_title; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_container = global::mederly.Droid.Resource.Id.action_container; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_context_bar = global::mederly.Droid.Resource.Id.action_context_bar; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_divider = global::mederly.Droid.Resource.Id.action_divider; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_image = global::mederly.Droid.Resource.Id.action_image; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_menu_divider = global::mederly.Droid.Resource.Id.action_menu_divider; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_menu_presenter = global::mederly.Droid.Resource.Id.action_menu_presenter; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_mode_bar = global::mederly.Droid.Resource.Id.action_mode_bar; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_mode_bar_stub = global::mederly.Droid.Resource.Id.action_mode_bar_stub; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_mode_close_button = global::mederly.Droid.Resource.Id.action_mode_close_button; + global::Xamarin.Forms.Platform.Android.Resource.Id.action_text = global::mederly.Droid.Resource.Id.action_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.activity_chooser_view_content = global::mederly.Droid.Resource.Id.activity_chooser_view_content; + global::Xamarin.Forms.Platform.Android.Resource.Id.add = global::mederly.Droid.Resource.Id.add; + global::Xamarin.Forms.Platform.Android.Resource.Id.alertTitle = global::mederly.Droid.Resource.Id.alertTitle; + global::Xamarin.Forms.Platform.Android.Resource.Id.all = global::mederly.Droid.Resource.Id.all; + global::Xamarin.Forms.Platform.Android.Resource.Id.ALT = global::mederly.Droid.Resource.Id.ALT; + global::Xamarin.Forms.Platform.Android.Resource.Id.always = global::mederly.Droid.Resource.Id.always; + global::Xamarin.Forms.Platform.Android.Resource.Id.async = global::mederly.Droid.Resource.Id.async; + global::Xamarin.Forms.Platform.Android.Resource.Id.auto = global::mederly.Droid.Resource.Id.auto; + global::Xamarin.Forms.Platform.Android.Resource.Id.beginning = global::mederly.Droid.Resource.Id.beginning; + global::Xamarin.Forms.Platform.Android.Resource.Id.blocking = global::mederly.Droid.Resource.Id.blocking; + global::Xamarin.Forms.Platform.Android.Resource.Id.bottom = global::mederly.Droid.Resource.Id.bottom; + global::Xamarin.Forms.Platform.Android.Resource.Id.bottomtab_navarea = global::mederly.Droid.Resource.Id.bottomtab_navarea; + global::Xamarin.Forms.Platform.Android.Resource.Id.bottomtab_tabbar = global::mederly.Droid.Resource.Id.bottomtab_tabbar; + global::Xamarin.Forms.Platform.Android.Resource.Id.BOTTOM_END = global::mederly.Droid.Resource.Id.BOTTOM_END; + global::Xamarin.Forms.Platform.Android.Resource.Id.BOTTOM_START = global::mederly.Droid.Resource.Id.BOTTOM_START; + global::Xamarin.Forms.Platform.Android.Resource.Id.buttonPanel = global::mederly.Droid.Resource.Id.buttonPanel; + global::Xamarin.Forms.Platform.Android.Resource.Id.cancel_action = global::mederly.Droid.Resource.Id.cancel_action; + global::Xamarin.Forms.Platform.Android.Resource.Id.cancel_button = global::mederly.Droid.Resource.Id.cancel_button; + global::Xamarin.Forms.Platform.Android.Resource.Id.center = global::mederly.Droid.Resource.Id.center; + global::Xamarin.Forms.Platform.Android.Resource.Id.center_horizontal = global::mederly.Droid.Resource.Id.center_horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Id.center_vertical = global::mederly.Droid.Resource.Id.center_vertical; + global::Xamarin.Forms.Platform.Android.Resource.Id.checkbox = global::mederly.Droid.Resource.Id.checkbox; + global::Xamarin.Forms.Platform.Android.Resource.Id.@checked = global::mederly.Droid.Resource.Id.@checked; + global::Xamarin.Forms.Platform.Android.Resource.Id.chip = global::mederly.Droid.Resource.Id.chip; + global::Xamarin.Forms.Platform.Android.Resource.Id.chip1 = global::mederly.Droid.Resource.Id.chip1; + global::Xamarin.Forms.Platform.Android.Resource.Id.chip2 = global::mederly.Droid.Resource.Id.chip2; + global::Xamarin.Forms.Platform.Android.Resource.Id.chip3 = global::mederly.Droid.Resource.Id.chip3; + global::Xamarin.Forms.Platform.Android.Resource.Id.chip_group = global::mederly.Droid.Resource.Id.chip_group; + global::Xamarin.Forms.Platform.Android.Resource.Id.chronometer = global::mederly.Droid.Resource.Id.chronometer; + global::Xamarin.Forms.Platform.Android.Resource.Id.clear_text = global::mederly.Droid.Resource.Id.clear_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.clip_horizontal = global::mederly.Droid.Resource.Id.clip_horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Id.clip_vertical = global::mederly.Droid.Resource.Id.clip_vertical; + global::Xamarin.Forms.Platform.Android.Resource.Id.collapseActionView = global::mederly.Droid.Resource.Id.collapseActionView; + global::Xamarin.Forms.Platform.Android.Resource.Id.confirm_button = global::mederly.Droid.Resource.Id.confirm_button; + global::Xamarin.Forms.Platform.Android.Resource.Id.container = global::mederly.Droid.Resource.Id.container; + global::Xamarin.Forms.Platform.Android.Resource.Id.content = global::mederly.Droid.Resource.Id.content; + global::Xamarin.Forms.Platform.Android.Resource.Id.contentPanel = global::mederly.Droid.Resource.Id.contentPanel; + global::Xamarin.Forms.Platform.Android.Resource.Id.coordinator = global::mederly.Droid.Resource.Id.coordinator; + global::Xamarin.Forms.Platform.Android.Resource.Id.CTRL = global::mederly.Droid.Resource.Id.CTRL; + global::Xamarin.Forms.Platform.Android.Resource.Id.custom = global::mederly.Droid.Resource.Id.custom; + global::Xamarin.Forms.Platform.Android.Resource.Id.customPanel = global::mederly.Droid.Resource.Id.customPanel; + global::Xamarin.Forms.Platform.Android.Resource.Id.cut = global::mederly.Droid.Resource.Id.cut; + global::Xamarin.Forms.Platform.Android.Resource.Id.date_picker_actions = global::mederly.Droid.Resource.Id.date_picker_actions; + global::Xamarin.Forms.Platform.Android.Resource.Id.decor_content_parent = global::mederly.Droid.Resource.Id.decor_content_parent; + global::Xamarin.Forms.Platform.Android.Resource.Id.default_activity_button = global::mederly.Droid.Resource.Id.default_activity_button; + global::Xamarin.Forms.Platform.Android.Resource.Id.design_bottom_sheet = global::mederly.Droid.Resource.Id.design_bottom_sheet; + global::Xamarin.Forms.Platform.Android.Resource.Id.design_menu_item_action_area = global::mederly.Droid.Resource.Id.design_menu_item_action_area; + global::Xamarin.Forms.Platform.Android.Resource.Id.design_menu_item_action_area_stub = global::mederly.Droid.Resource.Id.design_menu_item_action_area_stub; + global::Xamarin.Forms.Platform.Android.Resource.Id.design_menu_item_text = global::mederly.Droid.Resource.Id.design_menu_item_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.design_navigation_view = global::mederly.Droid.Resource.Id.design_navigation_view; + global::Xamarin.Forms.Platform.Android.Resource.Id.dialog_button = global::mederly.Droid.Resource.Id.dialog_button; + global::Xamarin.Forms.Platform.Android.Resource.Id.disableHome = global::mederly.Droid.Resource.Id.disableHome; + global::Xamarin.Forms.Platform.Android.Resource.Id.dropdown_menu = global::mederly.Droid.Resource.Id.dropdown_menu; + global::Xamarin.Forms.Platform.Android.Resource.Id.edit_query = global::mederly.Droid.Resource.Id.edit_query; + global::Xamarin.Forms.Platform.Android.Resource.Id.end = global::mederly.Droid.Resource.Id.end; + global::Xamarin.Forms.Platform.Android.Resource.Id.end_padder = global::mederly.Droid.Resource.Id.end_padder; + global::Xamarin.Forms.Platform.Android.Resource.Id.enterAlways = global::mederly.Droid.Resource.Id.enterAlways; + global::Xamarin.Forms.Platform.Android.Resource.Id.enterAlwaysCollapsed = global::mederly.Droid.Resource.Id.enterAlwaysCollapsed; + global::Xamarin.Forms.Platform.Android.Resource.Id.exitUntilCollapsed = global::mederly.Droid.Resource.Id.exitUntilCollapsed; + global::Xamarin.Forms.Platform.Android.Resource.Id.expanded_menu = global::mederly.Droid.Resource.Id.expanded_menu; + global::Xamarin.Forms.Platform.Android.Resource.Id.expand_activities_button = global::mederly.Droid.Resource.Id.expand_activities_button; + global::Xamarin.Forms.Platform.Android.Resource.Id.fade = global::mederly.Droid.Resource.Id.fade; + global::Xamarin.Forms.Platform.Android.Resource.Id.fill = global::mederly.Droid.Resource.Id.fill; + global::Xamarin.Forms.Platform.Android.Resource.Id.filled = global::mederly.Droid.Resource.Id.filled; + global::Xamarin.Forms.Platform.Android.Resource.Id.fill_horizontal = global::mederly.Droid.Resource.Id.fill_horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Id.fill_vertical = global::mederly.Droid.Resource.Id.fill_vertical; + global::Xamarin.Forms.Platform.Android.Resource.Id.fitToContents = global::mederly.Droid.Resource.Id.fitToContents; + global::Xamarin.Forms.Platform.Android.Resource.Id.@fixed = global::mederly.Droid.Resource.Id.@fixed; + global::Xamarin.Forms.Platform.Android.Resource.Id.floating = global::mederly.Droid.Resource.Id.floating; + global::Xamarin.Forms.Platform.Android.Resource.Id.flyoutcontent_appbar = global::mederly.Droid.Resource.Id.flyoutcontent_appbar; + global::Xamarin.Forms.Platform.Android.Resource.Id.forever = global::mederly.Droid.Resource.Id.forever; + global::Xamarin.Forms.Platform.Android.Resource.Id.fragment_container_view_tag = global::mederly.Droid.Resource.Id.fragment_container_view_tag; + global::Xamarin.Forms.Platform.Android.Resource.Id.FUNCTION = global::mederly.Droid.Resource.Id.FUNCTION; + global::Xamarin.Forms.Platform.Android.Resource.Id.ghost_view = global::mederly.Droid.Resource.Id.ghost_view; + global::Xamarin.Forms.Platform.Android.Resource.Id.ghost_view_holder = global::mederly.Droid.Resource.Id.ghost_view_holder; + global::Xamarin.Forms.Platform.Android.Resource.Id.gone = global::mederly.Droid.Resource.Id.gone; + global::Xamarin.Forms.Platform.Android.Resource.Id.group_divider = global::mederly.Droid.Resource.Id.group_divider; + global::Xamarin.Forms.Platform.Android.Resource.Id.hideable = global::mederly.Droid.Resource.Id.hideable; + global::Xamarin.Forms.Platform.Android.Resource.Id.home = global::mederly.Droid.Resource.Id.home; + global::Xamarin.Forms.Platform.Android.Resource.Id.homeAsUp = global::mederly.Droid.Resource.Id.homeAsUp; + global::Xamarin.Forms.Platform.Android.Resource.Id.icon = global::mederly.Droid.Resource.Id.icon; + global::Xamarin.Forms.Platform.Android.Resource.Id.icon_group = global::mederly.Droid.Resource.Id.icon_group; + global::Xamarin.Forms.Platform.Android.Resource.Id.ifRoom = global::mederly.Droid.Resource.Id.ifRoom; + global::Xamarin.Forms.Platform.Android.Resource.Id.image = global::mederly.Droid.Resource.Id.image; + global::Xamarin.Forms.Platform.Android.Resource.Id.info = global::mederly.Droid.Resource.Id.info; + global::Xamarin.Forms.Platform.Android.Resource.Id.italic = global::mederly.Droid.Resource.Id.italic; + global::Xamarin.Forms.Platform.Android.Resource.Id.item_touch_helper_previous_elevation = global::mederly.Droid.Resource.Id.item_touch_helper_previous_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Id.labeled = global::mederly.Droid.Resource.Id.labeled; + global::Xamarin.Forms.Platform.Android.Resource.Id.largeLabel = global::mederly.Droid.Resource.Id.largeLabel; + global::Xamarin.Forms.Platform.Android.Resource.Id.left = global::mederly.Droid.Resource.Id.left; + global::Xamarin.Forms.Platform.Android.Resource.Id.line1 = global::mederly.Droid.Resource.Id.line1; + global::Xamarin.Forms.Platform.Android.Resource.Id.line3 = global::mederly.Droid.Resource.Id.line3; + global::Xamarin.Forms.Platform.Android.Resource.Id.listMode = global::mederly.Droid.Resource.Id.listMode; + global::Xamarin.Forms.Platform.Android.Resource.Id.list_item = global::mederly.Droid.Resource.Id.list_item; + global::Xamarin.Forms.Platform.Android.Resource.Id.main_appbar = global::mederly.Droid.Resource.Id.main_appbar; + global::Xamarin.Forms.Platform.Android.Resource.Id.main_tablayout = global::mederly.Droid.Resource.Id.main_tablayout; + global::Xamarin.Forms.Platform.Android.Resource.Id.main_toolbar = global::mederly.Droid.Resource.Id.main_toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Id.main_viewpager = global::mederly.Droid.Resource.Id.main_viewpager; + global::Xamarin.Forms.Platform.Android.Resource.Id.masked = global::mederly.Droid.Resource.Id.masked; + global::Xamarin.Forms.Platform.Android.Resource.Id.media_actions = global::mederly.Droid.Resource.Id.media_actions; + global::Xamarin.Forms.Platform.Android.Resource.Id.media_controller_compat_view_tag = global::mederly.Droid.Resource.Id.media_controller_compat_view_tag; + global::Xamarin.Forms.Platform.Android.Resource.Id.message = global::mederly.Droid.Resource.Id.message; + global::Xamarin.Forms.Platform.Android.Resource.Id.META = global::mederly.Droid.Resource.Id.META; + global::Xamarin.Forms.Platform.Android.Resource.Id.middle = global::mederly.Droid.Resource.Id.middle; + global::Xamarin.Forms.Platform.Android.Resource.Id.mini = global::mederly.Droid.Resource.Id.mini; + global::Xamarin.Forms.Platform.Android.Resource.Id.month_grid = global::mederly.Droid.Resource.Id.month_grid; + global::Xamarin.Forms.Platform.Android.Resource.Id.month_navigation_bar = global::mederly.Droid.Resource.Id.month_navigation_bar; + global::Xamarin.Forms.Platform.Android.Resource.Id.month_navigation_fragment_toggle = global::mederly.Droid.Resource.Id.month_navigation_fragment_toggle; + global::Xamarin.Forms.Platform.Android.Resource.Id.month_navigation_next = global::mederly.Droid.Resource.Id.month_navigation_next; + global::Xamarin.Forms.Platform.Android.Resource.Id.month_navigation_previous = global::mederly.Droid.Resource.Id.month_navigation_previous; + global::Xamarin.Forms.Platform.Android.Resource.Id.month_title = global::mederly.Droid.Resource.Id.month_title; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_calendar_days_of_week = global::mederly.Droid.Resource.Id.mtrl_calendar_days_of_week; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_calendar_day_selector_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_day_selector_frame; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_calendar_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_frame; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_calendar_main_pane = global::mederly.Droid.Resource.Id.mtrl_calendar_main_pane; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_calendar_months = global::mederly.Droid.Resource.Id.mtrl_calendar_months; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_calendar_selection_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_selection_frame; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_calendar_text_input_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_text_input_frame; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_calendar_year_selector_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_year_selector_frame; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_card_checked_layer_id = global::mederly.Droid.Resource.Id.mtrl_card_checked_layer_id; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_child_content_container = global::mederly.Droid.Resource.Id.mtrl_child_content_container; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_internal_children_alpha_tag = global::mederly.Droid.Resource.Id.mtrl_internal_children_alpha_tag; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_motion_snapshot_view = global::mederly.Droid.Resource.Id.mtrl_motion_snapshot_view; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_fullscreen = global::mederly.Droid.Resource.Id.mtrl_picker_fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_header = global::mederly.Droid.Resource.Id.mtrl_picker_header; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_header_selection_text = global::mederly.Droid.Resource.Id.mtrl_picker_header_selection_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_header_title_and_selection = global::mederly.Droid.Resource.Id.mtrl_picker_header_title_and_selection; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_header_toggle = global::mederly.Droid.Resource.Id.mtrl_picker_header_toggle; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_text_input_date = global::mederly.Droid.Resource.Id.mtrl_picker_text_input_date; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_text_input_range_end = global::mederly.Droid.Resource.Id.mtrl_picker_text_input_range_end; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_text_input_range_start = global::mederly.Droid.Resource.Id.mtrl_picker_text_input_range_start; + global::Xamarin.Forms.Platform.Android.Resource.Id.mtrl_picker_title_text = global::mederly.Droid.Resource.Id.mtrl_picker_title_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.multiply = global::mederly.Droid.Resource.Id.multiply; + global::Xamarin.Forms.Platform.Android.Resource.Id.navigation_header_container = global::mederly.Droid.Resource.Id.navigation_header_container; + global::Xamarin.Forms.Platform.Android.Resource.Id.never = global::mederly.Droid.Resource.Id.never; + global::Xamarin.Forms.Platform.Android.Resource.Id.none = global::mederly.Droid.Resource.Id.none; + global::Xamarin.Forms.Platform.Android.Resource.Id.normal = global::mederly.Droid.Resource.Id.normal; + global::Xamarin.Forms.Platform.Android.Resource.Id.noScroll = global::mederly.Droid.Resource.Id.noScroll; + global::Xamarin.Forms.Platform.Android.Resource.Id.notification_background = global::mederly.Droid.Resource.Id.notification_background; + global::Xamarin.Forms.Platform.Android.Resource.Id.notification_main_column = global::mederly.Droid.Resource.Id.notification_main_column; + global::Xamarin.Forms.Platform.Android.Resource.Id.notification_main_column_container = global::mederly.Droid.Resource.Id.notification_main_column_container; + global::Xamarin.Forms.Platform.Android.Resource.Id.off = global::mederly.Droid.Resource.Id.off; + global::Xamarin.Forms.Platform.Android.Resource.Id.on = global::mederly.Droid.Resource.Id.on; + global::Xamarin.Forms.Platform.Android.Resource.Id.outline = global::mederly.Droid.Resource.Id.outline; + global::Xamarin.Forms.Platform.Android.Resource.Id.parallax = global::mederly.Droid.Resource.Id.parallax; + global::Xamarin.Forms.Platform.Android.Resource.Id.parentPanel = global::mederly.Droid.Resource.Id.parentPanel; + global::Xamarin.Forms.Platform.Android.Resource.Id.parent_matrix = global::mederly.Droid.Resource.Id.parent_matrix; + global::Xamarin.Forms.Platform.Android.Resource.Id.password_toggle = global::mederly.Droid.Resource.Id.password_toggle; + global::Xamarin.Forms.Platform.Android.Resource.Id.peekHeight = global::mederly.Droid.Resource.Id.peekHeight; + global::Xamarin.Forms.Platform.Android.Resource.Id.pin = global::mederly.Droid.Resource.Id.pin; + global::Xamarin.Forms.Platform.Android.Resource.Id.progress_circular = global::mederly.Droid.Resource.Id.progress_circular; + global::Xamarin.Forms.Platform.Android.Resource.Id.progress_horizontal = global::mederly.Droid.Resource.Id.progress_horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Id.radio = global::mederly.Droid.Resource.Id.radio; + global::Xamarin.Forms.Platform.Android.Resource.Id.right = global::mederly.Droid.Resource.Id.right; + global::Xamarin.Forms.Platform.Android.Resource.Id.right_icon = global::mederly.Droid.Resource.Id.right_icon; + global::Xamarin.Forms.Platform.Android.Resource.Id.right_side = global::mederly.Droid.Resource.Id.right_side; + global::Xamarin.Forms.Platform.Android.Resource.Id.rounded = global::mederly.Droid.Resource.Id.rounded; + global::Xamarin.Forms.Platform.Android.Resource.Id.row_index_key = global::mederly.Droid.Resource.Id.row_index_key; + global::Xamarin.Forms.Platform.Android.Resource.Id.save_non_transition_alpha = global::mederly.Droid.Resource.Id.save_non_transition_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Id.save_overlay_view = global::mederly.Droid.Resource.Id.save_overlay_view; + global::Xamarin.Forms.Platform.Android.Resource.Id.scale = global::mederly.Droid.Resource.Id.scale; + global::Xamarin.Forms.Platform.Android.Resource.Id.screen = global::mederly.Droid.Resource.Id.screen; + global::Xamarin.Forms.Platform.Android.Resource.Id.scroll = global::mederly.Droid.Resource.Id.scroll; + global::Xamarin.Forms.Platform.Android.Resource.Id.scrollable = global::mederly.Droid.Resource.Id.scrollable; + global::Xamarin.Forms.Platform.Android.Resource.Id.scrollIndicatorDown = global::mederly.Droid.Resource.Id.scrollIndicatorDown; + global::Xamarin.Forms.Platform.Android.Resource.Id.scrollIndicatorUp = global::mederly.Droid.Resource.Id.scrollIndicatorUp; + global::Xamarin.Forms.Platform.Android.Resource.Id.scrollView = global::mederly.Droid.Resource.Id.scrollView; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_badge = global::mederly.Droid.Resource.Id.search_badge; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_bar = global::mederly.Droid.Resource.Id.search_bar; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_button = global::mederly.Droid.Resource.Id.search_button; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_close_btn = global::mederly.Droid.Resource.Id.search_close_btn; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_edit_frame = global::mederly.Droid.Resource.Id.search_edit_frame; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_go_btn = global::mederly.Droid.Resource.Id.search_go_btn; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_mag_icon = global::mederly.Droid.Resource.Id.search_mag_icon; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_plate = global::mederly.Droid.Resource.Id.search_plate; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_src_text = global::mederly.Droid.Resource.Id.search_src_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.search_voice_btn = global::mederly.Droid.Resource.Id.search_voice_btn; + global::Xamarin.Forms.Platform.Android.Resource.Id.selected = global::mederly.Droid.Resource.Id.selected; + global::Xamarin.Forms.Platform.Android.Resource.Id.select_dialog_listview = global::mederly.Droid.Resource.Id.select_dialog_listview; + global::Xamarin.Forms.Platform.Android.Resource.Id.shellcontent_appbar = global::mederly.Droid.Resource.Id.shellcontent_appbar; + global::Xamarin.Forms.Platform.Android.Resource.Id.shellcontent_toolbar = global::mederly.Droid.Resource.Id.shellcontent_toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Id.SHIFT = global::mederly.Droid.Resource.Id.SHIFT; + global::Xamarin.Forms.Platform.Android.Resource.Id.shortcut = global::mederly.Droid.Resource.Id.shortcut; + global::Xamarin.Forms.Platform.Android.Resource.Id.showCustom = global::mederly.Droid.Resource.Id.showCustom; + global::Xamarin.Forms.Platform.Android.Resource.Id.showHome = global::mederly.Droid.Resource.Id.showHome; + global::Xamarin.Forms.Platform.Android.Resource.Id.showTitle = global::mederly.Droid.Resource.Id.showTitle; + global::Xamarin.Forms.Platform.Android.Resource.Id.skipCollapsed = global::mederly.Droid.Resource.Id.skipCollapsed; + global::Xamarin.Forms.Platform.Android.Resource.Id.slide = global::mederly.Droid.Resource.Id.slide; + global::Xamarin.Forms.Platform.Android.Resource.Id.sliding_tabs = global::mederly.Droid.Resource.Id.sliding_tabs; + global::Xamarin.Forms.Platform.Android.Resource.Id.smallLabel = global::mederly.Droid.Resource.Id.smallLabel; + global::Xamarin.Forms.Platform.Android.Resource.Id.snackbar_action = global::mederly.Droid.Resource.Id.snackbar_action; + global::Xamarin.Forms.Platform.Android.Resource.Id.snackbar_text = global::mederly.Droid.Resource.Id.snackbar_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.snap = global::mederly.Droid.Resource.Id.snap; + global::Xamarin.Forms.Platform.Android.Resource.Id.snapMargins = global::mederly.Droid.Resource.Id.snapMargins; + global::Xamarin.Forms.Platform.Android.Resource.Id.spacer = global::mederly.Droid.Resource.Id.spacer; + global::Xamarin.Forms.Platform.Android.Resource.Id.split_action_bar = global::mederly.Droid.Resource.Id.split_action_bar; + global::Xamarin.Forms.Platform.Android.Resource.Id.src_atop = global::mederly.Droid.Resource.Id.src_atop; + global::Xamarin.Forms.Platform.Android.Resource.Id.src_in = global::mederly.Droid.Resource.Id.src_in; + global::Xamarin.Forms.Platform.Android.Resource.Id.src_over = global::mederly.Droid.Resource.Id.src_over; + global::Xamarin.Forms.Platform.Android.Resource.Id.start = global::mederly.Droid.Resource.Id.start; + global::Xamarin.Forms.Platform.Android.Resource.Id.status_bar_latest_event_content = global::mederly.Droid.Resource.Id.status_bar_latest_event_content; + global::Xamarin.Forms.Platform.Android.Resource.Id.stretch = global::mederly.Droid.Resource.Id.stretch; + global::Xamarin.Forms.Platform.Android.Resource.Id.submenuarrow = global::mederly.Droid.Resource.Id.submenuarrow; + global::Xamarin.Forms.Platform.Android.Resource.Id.submit_area = global::mederly.Droid.Resource.Id.submit_area; + global::Xamarin.Forms.Platform.Android.Resource.Id.SYM = global::mederly.Droid.Resource.Id.SYM; + global::Xamarin.Forms.Platform.Android.Resource.Id.tabMode = global::mederly.Droid.Resource.Id.tabMode; + global::Xamarin.Forms.Platform.Android.Resource.Id.tag_accessibility_actions = global::mederly.Droid.Resource.Id.tag_accessibility_actions; + global::Xamarin.Forms.Platform.Android.Resource.Id.tag_accessibility_clickable_spans = global::mederly.Droid.Resource.Id.tag_accessibility_clickable_spans; + global::Xamarin.Forms.Platform.Android.Resource.Id.tag_accessibility_heading = global::mederly.Droid.Resource.Id.tag_accessibility_heading; + global::Xamarin.Forms.Platform.Android.Resource.Id.tag_accessibility_pane_title = global::mederly.Droid.Resource.Id.tag_accessibility_pane_title; + global::Xamarin.Forms.Platform.Android.Resource.Id.tag_screen_reader_focusable = global::mederly.Droid.Resource.Id.tag_screen_reader_focusable; + global::Xamarin.Forms.Platform.Android.Resource.Id.tag_transition_group = global::mederly.Droid.Resource.Id.tag_transition_group; + global::Xamarin.Forms.Platform.Android.Resource.Id.tag_unhandled_key_event_manager = global::mederly.Droid.Resource.Id.tag_unhandled_key_event_manager; + global::Xamarin.Forms.Platform.Android.Resource.Id.tag_unhandled_key_listeners = global::mederly.Droid.Resource.Id.tag_unhandled_key_listeners; + global::Xamarin.Forms.Platform.Android.Resource.Id.test_checkbox_android_button_tint = global::mederly.Droid.Resource.Id.test_checkbox_android_button_tint; + global::Xamarin.Forms.Platform.Android.Resource.Id.test_checkbox_app_button_tint = global::mederly.Droid.Resource.Id.test_checkbox_app_button_tint; + global::Xamarin.Forms.Platform.Android.Resource.Id.test_radiobutton_android_button_tint = global::mederly.Droid.Resource.Id.test_radiobutton_android_button_tint; + global::Xamarin.Forms.Platform.Android.Resource.Id.test_radiobutton_app_button_tint = global::mederly.Droid.Resource.Id.test_radiobutton_app_button_tint; + global::Xamarin.Forms.Platform.Android.Resource.Id.text = global::mederly.Droid.Resource.Id.text; + global::Xamarin.Forms.Platform.Android.Resource.Id.text2 = global::mederly.Droid.Resource.Id.text2; + global::Xamarin.Forms.Platform.Android.Resource.Id.textEnd = global::mederly.Droid.Resource.Id.textEnd; + global::Xamarin.Forms.Platform.Android.Resource.Id.textinput_counter = global::mederly.Droid.Resource.Id.textinput_counter; + global::Xamarin.Forms.Platform.Android.Resource.Id.textinput_error = global::mederly.Droid.Resource.Id.textinput_error; + global::Xamarin.Forms.Platform.Android.Resource.Id.textinput_helper_text = global::mederly.Droid.Resource.Id.textinput_helper_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.textinput_placeholder = global::mederly.Droid.Resource.Id.textinput_placeholder; + global::Xamarin.Forms.Platform.Android.Resource.Id.textinput_prefix_text = global::mederly.Droid.Resource.Id.textinput_prefix_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.textinput_suffix_text = global::mederly.Droid.Resource.Id.textinput_suffix_text; + global::Xamarin.Forms.Platform.Android.Resource.Id.textSpacerNoButtons = global::mederly.Droid.Resource.Id.textSpacerNoButtons; + global::Xamarin.Forms.Platform.Android.Resource.Id.textSpacerNoTitle = global::mederly.Droid.Resource.Id.textSpacerNoTitle; + global::Xamarin.Forms.Platform.Android.Resource.Id.textStart = global::mederly.Droid.Resource.Id.textStart; + global::Xamarin.Forms.Platform.Android.Resource.Id.text_input_end_icon = global::mederly.Droid.Resource.Id.text_input_end_icon; + global::Xamarin.Forms.Platform.Android.Resource.Id.text_input_start_icon = global::mederly.Droid.Resource.Id.text_input_start_icon; + global::Xamarin.Forms.Platform.Android.Resource.Id.time = global::mederly.Droid.Resource.Id.time; + global::Xamarin.Forms.Platform.Android.Resource.Id.title = global::mederly.Droid.Resource.Id.title; + global::Xamarin.Forms.Platform.Android.Resource.Id.titleDividerNoCustom = global::mederly.Droid.Resource.Id.titleDividerNoCustom; + global::Xamarin.Forms.Platform.Android.Resource.Id.title_template = global::mederly.Droid.Resource.Id.title_template; + global::Xamarin.Forms.Platform.Android.Resource.Id.toolbar = global::mederly.Droid.Resource.Id.toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Id.top = global::mederly.Droid.Resource.Id.top; + global::Xamarin.Forms.Platform.Android.Resource.Id.topPanel = global::mederly.Droid.Resource.Id.topPanel; + global::Xamarin.Forms.Platform.Android.Resource.Id.TOP_END = global::mederly.Droid.Resource.Id.TOP_END; + global::Xamarin.Forms.Platform.Android.Resource.Id.TOP_START = global::mederly.Droid.Resource.Id.TOP_START; + global::Xamarin.Forms.Platform.Android.Resource.Id.touch_outside = global::mederly.Droid.Resource.Id.touch_outside; + global::Xamarin.Forms.Platform.Android.Resource.Id.transition_current_scene = global::mederly.Droid.Resource.Id.transition_current_scene; + global::Xamarin.Forms.Platform.Android.Resource.Id.transition_layout_save = global::mederly.Droid.Resource.Id.transition_layout_save; + global::Xamarin.Forms.Platform.Android.Resource.Id.transition_position = global::mederly.Droid.Resource.Id.transition_position; + global::Xamarin.Forms.Platform.Android.Resource.Id.transition_scene_layoutid_cache = global::mederly.Droid.Resource.Id.transition_scene_layoutid_cache; + global::Xamarin.Forms.Platform.Android.Resource.Id.transition_transform = global::mederly.Droid.Resource.Id.transition_transform; + global::Xamarin.Forms.Platform.Android.Resource.Id.@unchecked = global::mederly.Droid.Resource.Id.@unchecked; + global::Xamarin.Forms.Platform.Android.Resource.Id.uniform = global::mederly.Droid.Resource.Id.uniform; + global::Xamarin.Forms.Platform.Android.Resource.Id.unlabeled = global::mederly.Droid.Resource.Id.unlabeled; + global::Xamarin.Forms.Platform.Android.Resource.Id.up = global::mederly.Droid.Resource.Id.up; + global::Xamarin.Forms.Platform.Android.Resource.Id.useLogo = global::mederly.Droid.Resource.Id.useLogo; + global::Xamarin.Forms.Platform.Android.Resource.Id.view_offset_helper = global::mederly.Droid.Resource.Id.view_offset_helper; + global::Xamarin.Forms.Platform.Android.Resource.Id.view_tree_saved_state_registry_owner = global::mederly.Droid.Resource.Id.view_tree_saved_state_registry_owner; + global::Xamarin.Forms.Platform.Android.Resource.Id.visible = global::mederly.Droid.Resource.Id.visible; + global::Xamarin.Forms.Platform.Android.Resource.Id.visible_removing_fragment_view_tag = global::mederly.Droid.Resource.Id.visible_removing_fragment_view_tag; + global::Xamarin.Forms.Platform.Android.Resource.Id.withinBounds = global::mederly.Droid.Resource.Id.withinBounds; + global::Xamarin.Forms.Platform.Android.Resource.Id.withText = global::mederly.Droid.Resource.Id.withText; + global::Xamarin.Forms.Platform.Android.Resource.Id.wrap_content = global::mederly.Droid.Resource.Id.wrap_content; + global::Xamarin.Forms.Platform.Android.Resource.Id.zero_corner_chip = global::mederly.Droid.Resource.Id.zero_corner_chip; + global::Xamarin.Forms.Platform.Android.Resource.Integer.abc_config_activityDefaultDur = global::mederly.Droid.Resource.Integer.abc_config_activityDefaultDur; + global::Xamarin.Forms.Platform.Android.Resource.Integer.abc_config_activityShortDur = global::mederly.Droid.Resource.Integer.abc_config_activityShortDur; + global::Xamarin.Forms.Platform.Android.Resource.Integer.app_bar_elevation_anim_duration = global::mederly.Droid.Resource.Integer.app_bar_elevation_anim_duration; + global::Xamarin.Forms.Platform.Android.Resource.Integer.bottom_sheet_slide_duration = global::mederly.Droid.Resource.Integer.bottom_sheet_slide_duration; + global::Xamarin.Forms.Platform.Android.Resource.Integer.cancel_button_image_alpha = global::mederly.Droid.Resource.Integer.cancel_button_image_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Integer.config_tooltipAnimTime = global::mederly.Droid.Resource.Integer.config_tooltipAnimTime; + global::Xamarin.Forms.Platform.Android.Resource.Integer.design_snackbar_text_max_lines = global::mederly.Droid.Resource.Integer.design_snackbar_text_max_lines; + global::Xamarin.Forms.Platform.Android.Resource.Integer.design_tab_indicator_anim_duration_ms = global::mederly.Droid.Resource.Integer.design_tab_indicator_anim_duration_ms; + global::Xamarin.Forms.Platform.Android.Resource.Integer.hide_password_duration = global::mederly.Droid.Resource.Integer.hide_password_duration; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_badge_max_character_count = global::mederly.Droid.Resource.Integer.mtrl_badge_max_character_count; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_btn_anim_delay_ms = global::mederly.Droid.Resource.Integer.mtrl_btn_anim_delay_ms; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_btn_anim_duration_ms = global::mederly.Droid.Resource.Integer.mtrl_btn_anim_duration_ms; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_calendar_header_orientation = global::mederly.Droid.Resource.Integer.mtrl_calendar_header_orientation; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_calendar_selection_text_lines = global::mederly.Droid.Resource.Integer.mtrl_calendar_selection_text_lines; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_calendar_year_selector_span = global::mederly.Droid.Resource.Integer.mtrl_calendar_year_selector_span; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_card_anim_delay_ms = global::mederly.Droid.Resource.Integer.mtrl_card_anim_delay_ms; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_card_anim_duration_ms = global::mederly.Droid.Resource.Integer.mtrl_card_anim_duration_ms; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_chip_anim_duration = global::mederly.Droid.Resource.Integer.mtrl_chip_anim_duration; + global::Xamarin.Forms.Platform.Android.Resource.Integer.mtrl_tab_indicator_anim_duration_ms = global::mederly.Droid.Resource.Integer.mtrl_tab_indicator_anim_duration_ms; + global::Xamarin.Forms.Platform.Android.Resource.Integer.show_password_duration = global::mederly.Droid.Resource.Integer.show_password_duration; + global::Xamarin.Forms.Platform.Android.Resource.Integer.status_bar_notification_info_maxnum = global::mederly.Droid.Resource.Integer.status_bar_notification_info_maxnum; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_0 = global::mederly.Droid.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_0; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_1 = global::mederly.Droid.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_1; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_0 = global::mederly.Droid.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_0; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_1 = global::mederly.Droid.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_1; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.btn_radio_to_off_mtrl_animation_interpolator_0 = global::mederly.Droid.Resource.Interpolator.btn_radio_to_off_mtrl_animation_interpolator_0; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.btn_radio_to_on_mtrl_animation_interpolator_0 = global::mederly.Droid.Resource.Interpolator.btn_radio_to_on_mtrl_animation_interpolator_0; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.fast_out_slow_in = global::mederly.Droid.Resource.Interpolator.fast_out_slow_in; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.mtrl_fast_out_linear_in = global::mederly.Droid.Resource.Interpolator.mtrl_fast_out_linear_in; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.mtrl_fast_out_slow_in = global::mederly.Droid.Resource.Interpolator.mtrl_fast_out_slow_in; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.mtrl_linear = global::mederly.Droid.Resource.Interpolator.mtrl_linear; + global::Xamarin.Forms.Platform.Android.Resource.Interpolator.mtrl_linear_out_slow_in = global::mederly.Droid.Resource.Interpolator.mtrl_linear_out_slow_in; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_action_bar_title_item = global::mederly.Droid.Resource.Layout.abc_action_bar_title_item; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_action_bar_up_container = global::mederly.Droid.Resource.Layout.abc_action_bar_up_container; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_action_menu_item_layout = global::mederly.Droid.Resource.Layout.abc_action_menu_item_layout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_action_menu_layout = global::mederly.Droid.Resource.Layout.abc_action_menu_layout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_action_mode_bar = global::mederly.Droid.Resource.Layout.abc_action_mode_bar; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_action_mode_close_item_material = global::mederly.Droid.Resource.Layout.abc_action_mode_close_item_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_activity_chooser_view = global::mederly.Droid.Resource.Layout.abc_activity_chooser_view; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_activity_chooser_view_list_item = global::mederly.Droid.Resource.Layout.abc_activity_chooser_view_list_item; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_alert_dialog_button_bar_material = global::mederly.Droid.Resource.Layout.abc_alert_dialog_button_bar_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_alert_dialog_material = global::mederly.Droid.Resource.Layout.abc_alert_dialog_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_alert_dialog_title_material = global::mederly.Droid.Resource.Layout.abc_alert_dialog_title_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_cascading_menu_item_layout = global::mederly.Droid.Resource.Layout.abc_cascading_menu_item_layout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_dialog_title_material = global::mederly.Droid.Resource.Layout.abc_dialog_title_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_expanded_menu_layout = global::mederly.Droid.Resource.Layout.abc_expanded_menu_layout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_list_menu_item_checkbox = global::mederly.Droid.Resource.Layout.abc_list_menu_item_checkbox; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_list_menu_item_icon = global::mederly.Droid.Resource.Layout.abc_list_menu_item_icon; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_list_menu_item_layout = global::mederly.Droid.Resource.Layout.abc_list_menu_item_layout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_list_menu_item_radio = global::mederly.Droid.Resource.Layout.abc_list_menu_item_radio; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_popup_menu_header_item_layout = global::mederly.Droid.Resource.Layout.abc_popup_menu_header_item_layout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_popup_menu_item_layout = global::mederly.Droid.Resource.Layout.abc_popup_menu_item_layout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_screen_content_include = global::mederly.Droid.Resource.Layout.abc_screen_content_include; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_screen_simple = global::mederly.Droid.Resource.Layout.abc_screen_simple; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_screen_simple_overlay_action_mode = global::mederly.Droid.Resource.Layout.abc_screen_simple_overlay_action_mode; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_screen_toolbar = global::mederly.Droid.Resource.Layout.abc_screen_toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_search_dropdown_item_icons_2line = global::mederly.Droid.Resource.Layout.abc_search_dropdown_item_icons_2line; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_search_view = global::mederly.Droid.Resource.Layout.abc_search_view; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_select_dialog_material = global::mederly.Droid.Resource.Layout.abc_select_dialog_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.abc_tooltip = global::mederly.Droid.Resource.Layout.abc_tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Layout.BottomTabLayout = global::mederly.Droid.Resource.Layout.BottomTabLayout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.custom_dialog = global::mederly.Droid.Resource.Layout.custom_dialog; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_bottom_navigation_item = global::mederly.Droid.Resource.Layout.design_bottom_navigation_item; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_bottom_sheet_dialog = global::mederly.Droid.Resource.Layout.design_bottom_sheet_dialog; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_layout_snackbar = global::mederly.Droid.Resource.Layout.design_layout_snackbar; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_layout_snackbar_include = global::mederly.Droid.Resource.Layout.design_layout_snackbar_include; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_layout_tab_icon = global::mederly.Droid.Resource.Layout.design_layout_tab_icon; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_layout_tab_text = global::mederly.Droid.Resource.Layout.design_layout_tab_text; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_menu_item_action_area = global::mederly.Droid.Resource.Layout.design_menu_item_action_area; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_navigation_item = global::mederly.Droid.Resource.Layout.design_navigation_item; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_navigation_item_header = global::mederly.Droid.Resource.Layout.design_navigation_item_header; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_navigation_item_separator = global::mederly.Droid.Resource.Layout.design_navigation_item_separator; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_navigation_item_subheader = global::mederly.Droid.Resource.Layout.design_navigation_item_subheader; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_navigation_menu = global::mederly.Droid.Resource.Layout.design_navigation_menu; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_navigation_menu_item = global::mederly.Droid.Resource.Layout.design_navigation_menu_item; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_text_input_end_icon = global::mederly.Droid.Resource.Layout.design_text_input_end_icon; + global::Xamarin.Forms.Platform.Android.Resource.Layout.design_text_input_start_icon = global::mederly.Droid.Resource.Layout.design_text_input_start_icon; + global::Xamarin.Forms.Platform.Android.Resource.Layout.FallbackTabbarDoNotUse = global::mederly.Droid.Resource.Layout.FallbackTabbarDoNotUse; + global::Xamarin.Forms.Platform.Android.Resource.Layout.FallbackToolbarDoNotUse = global::mederly.Droid.Resource.Layout.FallbackToolbarDoNotUse; + global::Xamarin.Forms.Platform.Android.Resource.Layout.FlyoutContent = global::mederly.Droid.Resource.Layout.FlyoutContent; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_alert_dialog = global::mederly.Droid.Resource.Layout.mtrl_alert_dialog; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_alert_dialog_actions = global::mederly.Droid.Resource.Layout.mtrl_alert_dialog_actions; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_alert_dialog_title = global::mederly.Droid.Resource.Layout.mtrl_alert_dialog_title; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_alert_select_dialog_item = global::mederly.Droid.Resource.Layout.mtrl_alert_select_dialog_item; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_alert_select_dialog_multichoice = global::mederly.Droid.Resource.Layout.mtrl_alert_select_dialog_multichoice; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_alert_select_dialog_singlechoice = global::mederly.Droid.Resource.Layout.mtrl_alert_select_dialog_singlechoice; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_day = global::mederly.Droid.Resource.Layout.mtrl_calendar_day; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_days_of_week = global::mederly.Droid.Resource.Layout.mtrl_calendar_days_of_week; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_day_of_week = global::mederly.Droid.Resource.Layout.mtrl_calendar_day_of_week; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_horizontal = global::mederly.Droid.Resource.Layout.mtrl_calendar_horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_month = global::mederly.Droid.Resource.Layout.mtrl_calendar_month; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_months = global::mederly.Droid.Resource.Layout.mtrl_calendar_months; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_month_labeled = global::mederly.Droid.Resource.Layout.mtrl_calendar_month_labeled; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_month_navigation = global::mederly.Droid.Resource.Layout.mtrl_calendar_month_navigation; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_vertical = global::mederly.Droid.Resource.Layout.mtrl_calendar_vertical; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_calendar_year = global::mederly.Droid.Resource.Layout.mtrl_calendar_year; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_layout_snackbar = global::mederly.Droid.Resource.Layout.mtrl_layout_snackbar; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_layout_snackbar_include = global::mederly.Droid.Resource.Layout.mtrl_layout_snackbar_include; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_actions = global::mederly.Droid.Resource.Layout.mtrl_picker_actions; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_dialog = global::mederly.Droid.Resource.Layout.mtrl_picker_dialog; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_fullscreen = global::mederly.Droid.Resource.Layout.mtrl_picker_fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_header_dialog = global::mederly.Droid.Resource.Layout.mtrl_picker_header_dialog; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_header_fullscreen = global::mederly.Droid.Resource.Layout.mtrl_picker_header_fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_header_selection_text = global::mederly.Droid.Resource.Layout.mtrl_picker_header_selection_text; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_header_title_text = global::mederly.Droid.Resource.Layout.mtrl_picker_header_title_text; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_header_toggle = global::mederly.Droid.Resource.Layout.mtrl_picker_header_toggle; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_text_input_date = global::mederly.Droid.Resource.Layout.mtrl_picker_text_input_date; + global::Xamarin.Forms.Platform.Android.Resource.Layout.mtrl_picker_text_input_date_range = global::mederly.Droid.Resource.Layout.mtrl_picker_text_input_date_range; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_action = global::mederly.Droid.Resource.Layout.notification_action; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_action_tombstone = global::mederly.Droid.Resource.Layout.notification_action_tombstone; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_media_action = global::mederly.Droid.Resource.Layout.notification_media_action; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_media_cancel_action = global::mederly.Droid.Resource.Layout.notification_media_cancel_action; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_big_media = global::mederly.Droid.Resource.Layout.notification_template_big_media; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_big_media_custom = global::mederly.Droid.Resource.Layout.notification_template_big_media_custom; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_big_media_narrow = global::mederly.Droid.Resource.Layout.notification_template_big_media_narrow; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_big_media_narrow_custom = global::mederly.Droid.Resource.Layout.notification_template_big_media_narrow_custom; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_custom_big = global::mederly.Droid.Resource.Layout.notification_template_custom_big; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_icon_group = global::mederly.Droid.Resource.Layout.notification_template_icon_group; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_lines_media = global::mederly.Droid.Resource.Layout.notification_template_lines_media; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_media = global::mederly.Droid.Resource.Layout.notification_template_media; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_media_custom = global::mederly.Droid.Resource.Layout.notification_template_media_custom; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_part_chronometer = global::mederly.Droid.Resource.Layout.notification_template_part_chronometer; + global::Xamarin.Forms.Platform.Android.Resource.Layout.notification_template_part_time = global::mederly.Droid.Resource.Layout.notification_template_part_time; + global::Xamarin.Forms.Platform.Android.Resource.Layout.RootLayout = global::mederly.Droid.Resource.Layout.RootLayout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.select_dialog_item_material = global::mederly.Droid.Resource.Layout.select_dialog_item_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.select_dialog_multichoice_material = global::mederly.Droid.Resource.Layout.select_dialog_multichoice_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.select_dialog_singlechoice_material = global::mederly.Droid.Resource.Layout.select_dialog_singlechoice_material; + global::Xamarin.Forms.Platform.Android.Resource.Layout.ShellContent = global::mederly.Droid.Resource.Layout.ShellContent; + global::Xamarin.Forms.Platform.Android.Resource.Layout.support_simple_spinner_dropdown_item = global::mederly.Droid.Resource.Layout.support_simple_spinner_dropdown_item; + global::Xamarin.Forms.Platform.Android.Resource.Layout.Tabbar = global::mederly.Droid.Resource.Layout.Tabbar; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_action_chip = global::mederly.Droid.Resource.Layout.test_action_chip; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_chip_zero_corner_radius = global::mederly.Droid.Resource.Layout.test_chip_zero_corner_radius; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_design_checkbox = global::mederly.Droid.Resource.Layout.test_design_checkbox; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_design_radiobutton = global::mederly.Droid.Resource.Layout.test_design_radiobutton; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_reflow_chipgroup = global::mederly.Droid.Resource.Layout.test_reflow_chipgroup; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_toolbar = global::mederly.Droid.Resource.Layout.test_toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_toolbar_custom_background = global::mederly.Droid.Resource.Layout.test_toolbar_custom_background; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_toolbar_elevation = global::mederly.Droid.Resource.Layout.test_toolbar_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Layout.test_toolbar_surface = global::mederly.Droid.Resource.Layout.test_toolbar_surface; + global::Xamarin.Forms.Platform.Android.Resource.Layout.text_view_without_line_height = global::mederly.Droid.Resource.Layout.text_view_without_line_height; + global::Xamarin.Forms.Platform.Android.Resource.Layout.text_view_with_line_height_from_appearance = global::mederly.Droid.Resource.Layout.text_view_with_line_height_from_appearance; + global::Xamarin.Forms.Platform.Android.Resource.Layout.text_view_with_line_height_from_layout = global::mederly.Droid.Resource.Layout.text_view_with_line_height_from_layout; + global::Xamarin.Forms.Platform.Android.Resource.Layout.text_view_with_line_height_from_style = global::mederly.Droid.Resource.Layout.text_view_with_line_height_from_style; + global::Xamarin.Forms.Platform.Android.Resource.Layout.text_view_with_theme_line_height = global::mederly.Droid.Resource.Layout.text_view_with_theme_line_height; + global::Xamarin.Forms.Platform.Android.Resource.Layout.Toolbar = global::mederly.Droid.Resource.Layout.Toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Plurals.mtrl_badge_content_description = global::mederly.Droid.Resource.Plurals.mtrl_badge_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_action_bar_home_description = global::mederly.Droid.Resource.String.abc_action_bar_home_description; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_action_bar_up_description = global::mederly.Droid.Resource.String.abc_action_bar_up_description; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_action_menu_overflow_description = global::mederly.Droid.Resource.String.abc_action_menu_overflow_description; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_action_mode_done = global::mederly.Droid.Resource.String.abc_action_mode_done; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_activitychooserview_choose_application = global::mederly.Droid.Resource.String.abc_activitychooserview_choose_application; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_activity_chooser_view_see_all = global::mederly.Droid.Resource.String.abc_activity_chooser_view_see_all; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_capital_off = global::mederly.Droid.Resource.String.abc_capital_off; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_capital_on = global::mederly.Droid.Resource.String.abc_capital_on; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_alt_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_alt_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_ctrl_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_ctrl_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_delete_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_delete_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_enter_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_enter_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_function_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_function_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_meta_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_meta_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_shift_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_shift_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_space_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_space_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_menu_sym_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_sym_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_prepend_shortcut_label = global::mederly.Droid.Resource.String.abc_prepend_shortcut_label; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_searchview_description_clear = global::mederly.Droid.Resource.String.abc_searchview_description_clear; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_searchview_description_query = global::mederly.Droid.Resource.String.abc_searchview_description_query; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_searchview_description_search = global::mederly.Droid.Resource.String.abc_searchview_description_search; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_searchview_description_submit = global::mederly.Droid.Resource.String.abc_searchview_description_submit; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_searchview_description_voice = global::mederly.Droid.Resource.String.abc_searchview_description_voice; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_search_hint = global::mederly.Droid.Resource.String.abc_search_hint; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_shareactionprovider_share_with = global::mederly.Droid.Resource.String.abc_shareactionprovider_share_with; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_shareactionprovider_share_with_application = global::mederly.Droid.Resource.String.abc_shareactionprovider_share_with_application; + global::Xamarin.Forms.Platform.Android.Resource.String.abc_toolbar_collapse_description = global::mederly.Droid.Resource.String.abc_toolbar_collapse_description; + global::Xamarin.Forms.Platform.Android.Resource.String.appbar_scrolling_view_behavior = global::mederly.Droid.Resource.String.appbar_scrolling_view_behavior; + global::Xamarin.Forms.Platform.Android.Resource.String.bottom_sheet_behavior = global::mederly.Droid.Resource.String.bottom_sheet_behavior; + global::Xamarin.Forms.Platform.Android.Resource.String.character_counter_content_description = global::mederly.Droid.Resource.String.character_counter_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.character_counter_overflowed_content_description = global::mederly.Droid.Resource.String.character_counter_overflowed_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.character_counter_pattern = global::mederly.Droid.Resource.String.character_counter_pattern; + global::Xamarin.Forms.Platform.Android.Resource.String.chip_text = global::mederly.Droid.Resource.String.chip_text; + global::Xamarin.Forms.Platform.Android.Resource.String.clear_text_end_icon_content_description = global::mederly.Droid.Resource.String.clear_text_end_icon_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.error_icon_content_description = global::mederly.Droid.Resource.String.error_icon_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.exposed_dropdown_menu_content_description = global::mederly.Droid.Resource.String.exposed_dropdown_menu_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.fab_transformation_scrim_behavior = global::mederly.Droid.Resource.String.fab_transformation_scrim_behavior; + global::Xamarin.Forms.Platform.Android.Resource.String.fab_transformation_sheet_behavior = global::mederly.Droid.Resource.String.fab_transformation_sheet_behavior; + global::Xamarin.Forms.Platform.Android.Resource.String.hide_bottom_view_on_scroll_behavior = global::mederly.Droid.Resource.String.hide_bottom_view_on_scroll_behavior; + global::Xamarin.Forms.Platform.Android.Resource.String.icon_content_description = global::mederly.Droid.Resource.String.icon_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.item_view_role_description = global::mederly.Droid.Resource.String.item_view_role_description; + global::Xamarin.Forms.Platform.Android.Resource.String.material_slider_range_end = global::mederly.Droid.Resource.String.material_slider_range_end; + global::Xamarin.Forms.Platform.Android.Resource.String.material_slider_range_start = global::mederly.Droid.Resource.String.material_slider_range_start; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_badge_numberless_content_description = global::mederly.Droid.Resource.String.mtrl_badge_numberless_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_chip_close_icon_content_description = global::mederly.Droid.Resource.String.mtrl_chip_close_icon_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_exceed_max_badge_number_content_description = global::mederly.Droid.Resource.String.mtrl_exceed_max_badge_number_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_exceed_max_badge_number_suffix = global::mederly.Droid.Resource.String.mtrl_exceed_max_badge_number_suffix; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_a11y_next_month = global::mederly.Droid.Resource.String.mtrl_picker_a11y_next_month; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_a11y_prev_month = global::mederly.Droid.Resource.String.mtrl_picker_a11y_prev_month; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_announce_current_selection = global::mederly.Droid.Resource.String.mtrl_picker_announce_current_selection; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_cancel = global::mederly.Droid.Resource.String.mtrl_picker_cancel; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_confirm = global::mederly.Droid.Resource.String.mtrl_picker_confirm; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_date_header_selected = global::mederly.Droid.Resource.String.mtrl_picker_date_header_selected; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_date_header_title = global::mederly.Droid.Resource.String.mtrl_picker_date_header_title; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_date_header_unselected = global::mederly.Droid.Resource.String.mtrl_picker_date_header_unselected; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_day_of_week_column_header = global::mederly.Droid.Resource.String.mtrl_picker_day_of_week_column_header; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_invalid_format = global::mederly.Droid.Resource.String.mtrl_picker_invalid_format; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_invalid_format_example = global::mederly.Droid.Resource.String.mtrl_picker_invalid_format_example; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_invalid_format_use = global::mederly.Droid.Resource.String.mtrl_picker_invalid_format_use; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_invalid_range = global::mederly.Droid.Resource.String.mtrl_picker_invalid_range; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_navigate_to_year_description = global::mederly.Droid.Resource.String.mtrl_picker_navigate_to_year_description; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_out_of_range = global::mederly.Droid.Resource.String.mtrl_picker_out_of_range; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_range_header_only_end_selected = global::mederly.Droid.Resource.String.mtrl_picker_range_header_only_end_selected; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_range_header_only_start_selected = global::mederly.Droid.Resource.String.mtrl_picker_range_header_only_start_selected; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_range_header_selected = global::mederly.Droid.Resource.String.mtrl_picker_range_header_selected; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_range_header_title = global::mederly.Droid.Resource.String.mtrl_picker_range_header_title; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_range_header_unselected = global::mederly.Droid.Resource.String.mtrl_picker_range_header_unselected; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_save = global::mederly.Droid.Resource.String.mtrl_picker_save; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_text_input_date_hint = global::mederly.Droid.Resource.String.mtrl_picker_text_input_date_hint; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_text_input_date_range_end_hint = global::mederly.Droid.Resource.String.mtrl_picker_text_input_date_range_end_hint; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_text_input_date_range_start_hint = global::mederly.Droid.Resource.String.mtrl_picker_text_input_date_range_start_hint; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_text_input_day_abbr = global::mederly.Droid.Resource.String.mtrl_picker_text_input_day_abbr; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_text_input_month_abbr = global::mederly.Droid.Resource.String.mtrl_picker_text_input_month_abbr; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_text_input_year_abbr = global::mederly.Droid.Resource.String.mtrl_picker_text_input_year_abbr; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_toggle_to_calendar_input_mode = global::mederly.Droid.Resource.String.mtrl_picker_toggle_to_calendar_input_mode; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_toggle_to_day_selection = global::mederly.Droid.Resource.String.mtrl_picker_toggle_to_day_selection; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_toggle_to_text_input_mode = global::mederly.Droid.Resource.String.mtrl_picker_toggle_to_text_input_mode; + global::Xamarin.Forms.Platform.Android.Resource.String.mtrl_picker_toggle_to_year_selection = global::mederly.Droid.Resource.String.mtrl_picker_toggle_to_year_selection; + global::Xamarin.Forms.Platform.Android.Resource.String.overflow_tab_title = global::mederly.Droid.Resource.String.overflow_tab_title; + global::Xamarin.Forms.Platform.Android.Resource.String.password_toggle_content_description = global::mederly.Droid.Resource.String.password_toggle_content_description; + global::Xamarin.Forms.Platform.Android.Resource.String.path_password_eye = global::mederly.Droid.Resource.String.path_password_eye; + global::Xamarin.Forms.Platform.Android.Resource.String.path_password_eye_mask_strike_through = global::mederly.Droid.Resource.String.path_password_eye_mask_strike_through; + global::Xamarin.Forms.Platform.Android.Resource.String.path_password_eye_mask_visible = global::mederly.Droid.Resource.String.path_password_eye_mask_visible; + global::Xamarin.Forms.Platform.Android.Resource.String.path_password_strike_through = global::mederly.Droid.Resource.String.path_password_strike_through; + global::Xamarin.Forms.Platform.Android.Resource.String.search_menu_title = global::mederly.Droid.Resource.String.search_menu_title; + global::Xamarin.Forms.Platform.Android.Resource.String.status_bar_notification_info_overflow = global::mederly.Droid.Resource.String.status_bar_notification_info_overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.AlertDialog_AppCompat = global::mederly.Droid.Resource.Style.AlertDialog_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.AlertDialog_AppCompat_Light = global::mederly.Droid.Resource.Style.AlertDialog_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.AndroidThemeColorAccentYellow = global::mederly.Droid.Resource.Style.AndroidThemeColorAccentYellow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Animation_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Animation_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Animation_AppCompat_DropDownUp = global::mederly.Droid.Resource.Style.Animation_AppCompat_DropDownUp; + global::Xamarin.Forms.Platform.Android.Resource.Style.Animation_AppCompat_Tooltip = global::mederly.Droid.Resource.Style.Animation_AppCompat_Tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Style.Animation_Design_BottomSheetDialog = global::mederly.Droid.Resource.Style.Animation_Design_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Animation_MaterialComponents_BottomSheetDialog = global::mederly.Droid.Resource.Style.Animation_MaterialComponents_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.AppCompatDialogStyle = global::mederly.Droid.Resource.Style.AppCompatDialogStyle; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_AlertDialog_AppCompat = global::mederly.Droid.Resource.Style.Base_AlertDialog_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_AlertDialog_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_AlertDialog_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Animation_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_Animation_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Animation_AppCompat_DropDownUp = global::mederly.Droid.Resource.Style.Base_Animation_AppCompat_DropDownUp; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Animation_AppCompat_Tooltip = global::mederly.Droid.Resource.Style.Base_Animation_AppCompat_Tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_CardView = global::mederly.Droid.Resource.Style.Base_CardView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_DialogWindowTitleBackground_AppCompat = global::mederly.Droid.Resource.Style.Base_DialogWindowTitleBackground_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_DialogWindowTitle_AppCompat = global::mederly.Droid.Resource.Style.Base_DialogWindowTitle_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Icon = global::mederly.Droid.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Panel = global::mederly.Droid.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Panel; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Text = global::mederly.Droid.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Text; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Body1 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Body1; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Body2 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Body2; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Button = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Caption = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Caption; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Display1 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Display1; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Display2 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Display2; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Display3 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Display3; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Display4 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Display4; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Headline = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Headline; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Large = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Large; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Large_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Large_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Medium = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Medium; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Medium_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Medium_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Menu = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Menu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_SearchResult; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Subtitle = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Small = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Small_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Small_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Subhead = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Subhead; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Subhead_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Subhead_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Title_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Title_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Tooltip = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Menu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Colored = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_DropDownItem = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_DropDownItem; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Header; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Large; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Switch = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Switch; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_MaterialComponents_Badge = global::mederly.Droid.Resource.Style.Base_TextAppearance_MaterialComponents_Badge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_MaterialComponents_Button = global::mederly.Droid.Resource.Style.Base_TextAppearance_MaterialComponents_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_MaterialComponents_Headline6 = global::mederly.Droid.Resource.Style.Base_TextAppearance_MaterialComponents_Headline6; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_MaterialComponents_Subtitle2 = global::mederly.Droid.Resource.Style.Base_TextAppearance_MaterialComponents_Subtitle2; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = global::mederly.Droid.Resource.Style.Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = global::mederly.Droid.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_AppCompat = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_AppCompat_ActionBar = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Dark = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Dark; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Dark_ActionBar = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Dark_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_CompactMenu = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_CompactMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_DialogWhenLarge = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Light_DarkActionBar = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_DarkActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Light_Dialog = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Light_DialogWhenLarge = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_CompactMenu = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_CompactMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_DialogWhenLarge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_DialogWhenLarge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::mederly.Droid.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_ThemeOverlay_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_V21_ThemeOverlay_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V21_Theme_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_Theme_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_V21_Theme_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V21_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_Theme_AppCompat_Light_Dialog = global::mederly.Droid.Resource.Style.Base_V21_Theme_AppCompat_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_Theme_MaterialComponents = global::mederly.Droid.Resource.Style.Base_V21_Theme_MaterialComponents; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_Theme_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_V21_Theme_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_Theme_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Base_V21_Theme_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V21_Theme_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Base_V21_Theme_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V22_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V22_Theme_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V22_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V22_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V23_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V23_Theme_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V23_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V23_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V26_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V26_Theme_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V26_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V26_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V26_Widget_AppCompat_Toolbar = global::mederly.Droid.Resource.Style.Base_V26_Widget_AppCompat_Toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V28_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V28_Theme_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V28_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V28_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V7_ThemeOverlay_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_V7_ThemeOverlay_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V7_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V7_Theme_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V7_Theme_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_V7_Theme_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V7_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V7_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V7_Theme_AppCompat_Light_Dialog = global::mederly.Droid.Resource.Style.Base_V7_Theme_AppCompat_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V7_Widget_AppCompat_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Base_V7_Widget_AppCompat_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V7_Widget_AppCompat_EditText = global::mederly.Droid.Resource.Style.Base_V7_Widget_AppCompat_EditText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_V7_Widget_AppCompat_Toolbar = global::mederly.Droid.Resource.Style.Base_V7_Widget_AppCompat_Toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionBar_Solid = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar_Solid; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar_TabBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabText = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar_TabText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar_TabView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionButton = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionButton_CloseMode = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionButton_CloseMode; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionButton_Overflow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionButton_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActionMode = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionMode; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ActivityChooserView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActivityChooserView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Button = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ButtonBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ButtonBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ButtonBar_AlertDialog = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ButtonBar_AlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Button_Borderless = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_Borderless; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Button_Borderless_Colored = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_Borderless_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_ButtonBar_AlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Button_Colored = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Button_Small = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_CompoundButton_CheckBox = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_CompoundButton_CheckBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_CompoundButton_RadioButton = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_CompoundButton_RadioButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_CompoundButton_Switch = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_CompoundButton_Switch; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle_Common = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle_Common; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_DropDownItem_Spinner = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_DropDownItem_Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_EditText = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_EditText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ImageButton = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ImageButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_Solid = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_Solid; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ListMenuView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListMenuView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ListPopupWindow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListPopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ListView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ListView_DropDown = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListView_DropDown; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ListView_Menu = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListView_Menu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_PopupMenu = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_PopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_PopupWindow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_PopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ProgressBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ProgressBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_ProgressBar_Horizontal = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ProgressBar_Horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_RatingBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_RatingBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_RatingBar_Indicator = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_RatingBar_Indicator; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_RatingBar_Small = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_RatingBar_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_SearchView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_SearchView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_SearchView_ActionBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_SearchView_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_SeekBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_SeekBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_SeekBar_Discrete = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_SeekBar_Discrete; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Spinner = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Spinner_Underlined = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Spinner_Underlined; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_TextView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_TextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_TextView_SpinnerItem = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_TextView_SpinnerItem; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Toolbar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_AppCompat_Toolbar_Button_Navigation = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Toolbar_Button_Navigation; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_Design_TabLayout = global::mederly.Droid.Resource.Style.Base_Widget_Design_TabLayout; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_CheckedTextView = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_CheckedTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_Chip = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_Chip; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_PopupMenu = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_PopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ContextMenu = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ContextMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_Slider = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_Slider; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_TextInputEditText = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_TextInputEditText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_TextInputLayout = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_TextInputLayout; + global::Xamarin.Forms.Platform.Android.Resource.Style.Base_Widget_MaterialComponents_TextView = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_TextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.CardView = global::mederly.Droid.Resource.Style.CardView; + global::Xamarin.Forms.Platform.Android.Resource.Style.CardView_Dark = global::mederly.Droid.Resource.Style.CardView_Dark; + global::Xamarin.Forms.Platform.Android.Resource.Style.CardView_Light = global::mederly.Droid.Resource.Style.CardView_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.collectionViewTheme = global::mederly.Droid.Resource.Style.collectionViewTheme; + global::Xamarin.Forms.Platform.Android.Resource.Style.EmptyTheme = global::mederly.Droid.Resource.Style.EmptyTheme; + global::Xamarin.Forms.Platform.Android.Resource.Style.MainTheme = global::mederly.Droid.Resource.Style.MainTheme; + global::Xamarin.Forms.Platform.Android.Resource.Style.MainTheme_Base = global::mederly.Droid.Resource.Style.MainTheme_Base; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Body_Text = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Body_Text; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text; + global::Xamarin.Forms.Platform.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_AppCompat = global::mederly.Droid.Resource.Style.Platform_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_AppCompat_Light = global::mederly.Droid.Resource.Style.Platform_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_MaterialComponents = global::mederly.Droid.Resource.Style.Platform_MaterialComponents; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Platform_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Platform_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Platform_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_ThemeOverlay_AppCompat = global::mederly.Droid.Resource.Style.Platform_ThemeOverlay_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_ThemeOverlay_AppCompat_Dark = global::mederly.Droid.Resource.Style.Platform_ThemeOverlay_AppCompat_Dark; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_ThemeOverlay_AppCompat_Light = global::mederly.Droid.Resource.Style.Platform_ThemeOverlay_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_V21_AppCompat = global::mederly.Droid.Resource.Style.Platform_V21_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_V21_AppCompat_Light = global::mederly.Droid.Resource.Style.Platform_V21_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_V25_AppCompat = global::mederly.Droid.Resource.Style.Platform_V25_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_V25_AppCompat_Light = global::mederly.Droid.Resource.Style.Platform_V25_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Platform_Widget_AppCompat_Spinner = global::mederly.Droid.Resource.Style.Platform_Widget_AppCompat_Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_DialogWindowTitle_AppCompat = global::mederly.Droid.Resource.Style.RtlOverlay_DialogWindowTitle_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_ActionBar_TitleItem; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_DialogTitle_Icon = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_DialogTitle_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Text; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_SearchView_MagIcon = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_SearchView_MagIcon; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Query = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Query; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Text = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Text; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton = global::mederly.Droid.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = global::mederly.Droid.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.scrollViewScrollBars = global::mederly.Droid.Resource.Style.scrollViewScrollBars; + global::Xamarin.Forms.Platform.Android.Resource.Style.scrollViewTheme = global::mederly.Droid.Resource.Style.scrollViewTheme; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_BottomLeftDifferentCornerSize = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_BottomLeftDifferentCornerSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_BottomRightCut = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_BottomRightCut; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_Cut = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_Cut; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_DifferentCornerSize = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_DifferentCornerSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_BottomSheet = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_BottomSheet; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_Chip = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_Chip; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_TopLeftCut = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_TopLeftCut; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearanceOverlay_TopRightDifferentCornerSize = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_TopRightDifferentCornerSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearance_MaterialComponents = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearance_MaterialComponents_LargeComponent = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_LargeComponent; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearance_MaterialComponents_MediumComponent = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_MediumComponent; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearance_MaterialComponents_SmallComponent = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_SmallComponent; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearance_MaterialComponents_Test = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_Test; + global::Xamarin.Forms.Platform.Android.Resource.Style.ShapeAppearance_MaterialComponents_Tooltip = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_Tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Style.TestStyleWithLineHeight = global::mederly.Droid.Resource.Style.TestStyleWithLineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Style.TestStyleWithLineHeightAppearance = global::mederly.Droid.Resource.Style.TestStyleWithLineHeightAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Style.TestStyleWithoutLineHeight = global::mederly.Droid.Resource.Style.TestStyleWithoutLineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Style.TestStyleWithThemeLineHeightAttribute = global::mederly.Droid.Resource.Style.TestStyleWithThemeLineHeightAttribute; + global::Xamarin.Forms.Platform.Android.Resource.Style.TestThemeWithLineHeight = global::mederly.Droid.Resource.Style.TestThemeWithLineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Style.TestThemeWithLineHeightDisabled = global::mederly.Droid.Resource.Style.TestThemeWithLineHeightDisabled; + global::Xamarin.Forms.Platform.Android.Resource.Style.Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = global::mederly.Droid.Resource.Style.Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day; + global::Xamarin.Forms.Platform.Android.Resource.Style.Test_Theme_MaterialComponents_MaterialCalendar = global::mederly.Droid.Resource.Style.Test_Theme_MaterialComponents_MaterialCalendar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar = global::mederly.Droid.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day = global::mederly.Droid.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day; + global::Xamarin.Forms.Platform.Android.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected = global::mederly.Droid.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Body1 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Body1; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Body2 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Body2; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Button = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Caption = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Caption; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Display1 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Display1; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Display2 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Display2; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Display3 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Display3; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Display4 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Display4; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Headline = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Headline; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Large = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Large; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Large_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Large_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Large; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Medium = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Medium; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Medium_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Medium_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Menu = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Menu; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_SearchResult_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_SearchResult_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_SearchResult_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_SearchResult_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Small = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Small_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Small_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Subhead = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Subhead; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Subhead_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Subhead_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Title_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Title_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Tooltip = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Menu = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Menu; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_Button = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Borderless_Colored = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Button_Borderless_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Colored = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Button_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Button_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_DropDownItem = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_DropDownItem; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Header = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Header; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Large = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Large; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Small = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_Switch = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Switch; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_AppCompat_Widget_TextView_SpinnerItem = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_TextView_SpinnerItem; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Info = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Info; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Info_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Info_Media; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Line2 = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Line2; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Line2_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Line2_Media; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Media; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Time = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Time; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Time_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Time_Media; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Title = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Compat_Notification_Title_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Title_Media; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_CollapsingToolbar_Expanded = global::mederly.Droid.Resource.Style.TextAppearance_Design_CollapsingToolbar_Expanded; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Counter = global::mederly.Droid.Resource.Style.TextAppearance_Design_Counter; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Counter_Overflow = global::mederly.Droid.Resource.Style.TextAppearance_Design_Counter_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Error = global::mederly.Droid.Resource.Style.TextAppearance_Design_Error; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_HelperText = global::mederly.Droid.Resource.Style.TextAppearance_Design_HelperText; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Hint = global::mederly.Droid.Resource.Style.TextAppearance_Design_Hint; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Placeholder = global::mederly.Droid.Resource.Style.TextAppearance_Design_Placeholder; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Prefix = global::mederly.Droid.Resource.Style.TextAppearance_Design_Prefix; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Snackbar_Message = global::mederly.Droid.Resource.Style.TextAppearance_Design_Snackbar_Message; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Suffix = global::mederly.Droid.Resource.Style.TextAppearance_Design_Suffix; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Design_Tab = global::mederly.Droid.Resource.Style.TextAppearance_Design_Tab; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Badge = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Badge; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Body1 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Body1; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Body2 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Body2; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Button = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Caption = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Caption; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Chip = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Chip; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Headline1 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline1; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Headline2 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline2; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Headline3 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline3; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Headline4 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline4; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Headline5 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline5; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Headline6 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline6; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Overline = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Overline; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Subtitle1 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Subtitle1; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Subtitle2 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Subtitle2; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_MaterialComponents_Tooltip = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Widget_AppCompat_ExpandedMenu_Item = global::mederly.Droid.Resource.Style.TextAppearance_Widget_AppCompat_ExpandedMenu_Item; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Title = global::mederly.Droid.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Title; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlayColorAccentRed = global::mederly.Droid.Resource.Style.ThemeOverlayColorAccentRed; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat_Dark = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Dark; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat_Dark_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Dark_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat_DayNight = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_DayNight; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat_DayNight_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_DayNight_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat_Dialog = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat_Dialog_Alert = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_AppCompat_Light = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_Design_TextInputEditText = global::mederly.Droid.Resource.Style.ThemeOverlay_Design_TextInputEditText; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Primary = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Primary; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Surface = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Surface; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Primary = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Primary; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Surface = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Surface; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_BottomSheetDialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dark = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dark; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dark_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dark_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert_Framework; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Light = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Light_BottomSheetDialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Light_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Primary = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Primary; + global::Xamarin.Forms.Platform.Android.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Surface = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Surface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat = global::mederly.Droid.Resource.Style.Theme_AppCompat; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_CompactMenu = global::mederly.Droid.Resource.Style.Theme_AppCompat_CompactMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_DayNight = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_DayNight_DarkActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_DarkActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_DayNight_Dialog = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_DayNight_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_DayNight_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_DayNight_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_DayNight_NoActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_NoActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Theme_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_AppCompat_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_AppCompat_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_AppCompat_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Empty = global::mederly.Droid.Resource.Style.Theme_AppCompat_Empty; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Light_DarkActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_DarkActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Light_Dialog = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Light_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Light_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Light_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_Light_NoActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_NoActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_AppCompat_NoActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_NoActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_Design = global::mederly.Droid.Resource.Style.Theme_Design; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_Design_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_Design_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_Design_Light = global::mederly.Droid.Resource.Style.Theme_Design_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_Design_Light_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_Design_Light_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_Design_Light_NoActionBar = global::mederly.Droid.Resource.Style.Theme_Design_Light_NoActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_Design_NoActionBar = global::mederly.Droid.Resource.Style.Theme_Design_NoActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents = global::mederly.Droid.Resource.Style.Theme_MaterialComponents; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_CompactMenu = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_CompactMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Dialog_Alert_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_Alert_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Dialog_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_BarSize = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_BarSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_BottomSheetDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_DialogWhenLarge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_LargeTouch = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_LargeTouch; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_NoActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_NoActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_Light_NoActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_NoActionBar_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_NoActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_NoActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Theme_MaterialComponents_NoActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_NoActionBar_Bridge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionBar_Solid = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar_Solid; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionBar_TabBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar_TabBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionBar_TabText = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar_TabText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionBar_TabView = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar_TabView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionButton = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionButton_CloseMode = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionButton_CloseMode; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionButton_Overflow = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionButton_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActionMode = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionMode; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ActivityChooserView = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActivityChooserView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Widget_AppCompat_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Button = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ButtonBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_ButtonBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ButtonBar_AlertDialog = global::mederly.Droid.Resource.Style.Widget_AppCompat_ButtonBar_AlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Button_Borderless = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_Borderless; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Button_Borderless_Colored = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_Borderless_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Button_ButtonBar_AlertDialog = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_ButtonBar_AlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Button_Colored = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Button_Small = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_CompoundButton_CheckBox = global::mederly.Droid.Resource.Style.Widget_AppCompat_CompoundButton_CheckBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_CompoundButton_RadioButton = global::mederly.Droid.Resource.Style.Widget_AppCompat_CompoundButton_RadioButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_CompoundButton_Switch = global::mederly.Droid.Resource.Style.Widget_AppCompat_CompoundButton_Switch; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_DrawerArrowToggle = global::mederly.Droid.Resource.Style.Widget_AppCompat_DrawerArrowToggle; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_DropDownItem_Spinner = global::mederly.Droid.Resource.Style.Widget_AppCompat_DropDownItem_Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_EditText = global::mederly.Droid.Resource.Style.Widget_AppCompat_EditText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ImageButton = global::mederly.Droid.Resource.Style.Widget_AppCompat_ImageButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionButton = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionButton_CloseMode = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionButton_CloseMode; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionButton_Overflow = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionButton_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActionMode_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionMode_Inverse; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ActivityChooserView = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActivityChooserView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_DropDownItem_Spinner = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_DropDownItem_Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ListPopupWindow = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ListPopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_ListView_DropDown = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ListView_DropDown; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_PopupMenu = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_PopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_SearchView = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_SearchView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Light_Spinner_DropDown_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_Spinner_DropDown_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ListMenuView = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListMenuView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ListPopupWindow = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListPopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ListView = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ListView_DropDown = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListView_DropDown; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ListView_Menu = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListView_Menu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_PopupMenu = global::mederly.Droid.Resource.Style.Widget_AppCompat_PopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Widget_AppCompat_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_PopupWindow = global::mederly.Droid.Resource.Style.Widget_AppCompat_PopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ProgressBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_ProgressBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_ProgressBar_Horizontal = global::mederly.Droid.Resource.Style.Widget_AppCompat_ProgressBar_Horizontal; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_RatingBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_RatingBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_RatingBar_Indicator = global::mederly.Droid.Resource.Style.Widget_AppCompat_RatingBar_Indicator; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_RatingBar_Small = global::mederly.Droid.Resource.Style.Widget_AppCompat_RatingBar_Small; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_SearchView = global::mederly.Droid.Resource.Style.Widget_AppCompat_SearchView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_SearchView_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_SearchView_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_SeekBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_SeekBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_SeekBar_Discrete = global::mederly.Droid.Resource.Style.Widget_AppCompat_SeekBar_Discrete; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Spinner = global::mederly.Droid.Resource.Style.Widget_AppCompat_Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Spinner_DropDown = global::mederly.Droid.Resource.Style.Widget_AppCompat_Spinner_DropDown; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Spinner_DropDown_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Spinner_DropDown_ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Spinner_Underlined = global::mederly.Droid.Resource.Style.Widget_AppCompat_Spinner_Underlined; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_TextView = global::mederly.Droid.Resource.Style.Widget_AppCompat_TextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_TextView_SpinnerItem = global::mederly.Droid.Resource.Style.Widget_AppCompat_TextView_SpinnerItem; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Toolbar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_AppCompat_Toolbar_Button_Navigation = global::mederly.Droid.Resource.Style.Widget_AppCompat_Toolbar_Button_Navigation; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Compat_NotificationActionContainer = global::mederly.Droid.Resource.Style.Widget_Compat_NotificationActionContainer; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Compat_NotificationActionText = global::mederly.Droid.Resource.Style.Widget_Compat_NotificationActionText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_AppBarLayout = global::mederly.Droid.Resource.Style.Widget_Design_AppBarLayout; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_BottomNavigationView = global::mederly.Droid.Resource.Style.Widget_Design_BottomNavigationView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_BottomSheet_Modal = global::mederly.Droid.Resource.Style.Widget_Design_BottomSheet_Modal; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_CollapsingToolbar = global::mederly.Droid.Resource.Style.Widget_Design_CollapsingToolbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_FloatingActionButton = global::mederly.Droid.Resource.Style.Widget_Design_FloatingActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_NavigationView = global::mederly.Droid.Resource.Style.Widget_Design_NavigationView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_ScrimInsetsFrameLayout = global::mederly.Droid.Resource.Style.Widget_Design_ScrimInsetsFrameLayout; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_Snackbar = global::mederly.Droid.Resource.Style.Widget_Design_Snackbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_TabLayout = global::mederly.Droid.Resource.Style.Widget_Design_TabLayout; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_TextInputEditText = global::mederly.Droid.Resource.Style.Widget_Design_TextInputEditText; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Design_TextInputLayout = global::mederly.Droid.Resource.Style.Widget_Design_TextInputLayout; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_ActionBar_Primary = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ActionBar_Primary; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_ActionBar_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ActionBar_PrimarySurface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_ActionBar_Solid = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ActionBar_Solid; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_ActionBar_Surface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ActionBar_Surface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_AppBarLayout_Primary = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AppBarLayout_Primary; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_AppBarLayout_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AppBarLayout_PrimarySurface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_AppBarLayout_Surface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AppBarLayout_Surface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Badge = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Badge; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_BottomAppBar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomAppBar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_BottomAppBar_Colored = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomAppBar_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_BottomAppBar_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomAppBar_PrimarySurface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_BottomNavigationView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomNavigationView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_BottomNavigationView_Colored = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomNavigationView_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_BottomNavigationView_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomNavigationView_PrimarySurface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_BottomSheet = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomSheet; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_BottomSheet_Modal = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomSheet_Modal; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Flush = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Flush; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Snackbar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Snackbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_CardView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CardView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_CheckedTextView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CheckedTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_ChipGroup = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ChipGroup; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Chip_Action = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Chip_Action; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Chip_Choice = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Chip_Choice; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Chip_Entry = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Chip_Entry; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Chip_Filter = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Chip_Filter; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_CompoundButton_CheckBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CompoundButton_CheckBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_CompoundButton_RadioButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CompoundButton_RadioButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_CompoundButton_Switch = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CompoundButton_Switch; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton_Icon; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_FloatingActionButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_FloatingActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Light_ActionBar_Solid = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Light_ActionBar_Solid; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialButtonToggleGroup = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialButtonToggleGroup; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_DayTextView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_DayTextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Invalid = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Invalid; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Selected = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Selected; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Today = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Today; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Fullscreen = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderDivider = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderDivider; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderLayout = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderLayout; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderTitle = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderTitle; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Item = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Item; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Selected = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Selected; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Today = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Today; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_NavigationView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_NavigationView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_PopupMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_PopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_PopupMenu_ContextMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_PopupMenu_ContextMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_PopupMenu_ListPopupWindow = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_PopupMenu_ListPopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_ShapeableImageView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ShapeableImageView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Slider = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Slider; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Snackbar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Snackbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Snackbar_FullWidth = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Snackbar_FullWidth; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Snackbar_TextView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Snackbar_TextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TabLayout = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TabLayout; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TabLayout_Colored = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TabLayout_Colored; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TabLayout_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TabLayout_PrimarySurface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_TextView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextView; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Toolbar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Toolbar_Primary = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Toolbar_Primary; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Toolbar_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Toolbar_PrimarySurface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Toolbar_Surface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Toolbar_Surface; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_MaterialComponents_Tooltip = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Style.Widget_Support_CoordinatorLayout = global::mederly.Droid.Resource.Style.Widget_Support_CoordinatorLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar = global::mederly.Droid.Resource.Styleable.ActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBarLayout = global::mederly.Droid.Resource.Styleable.ActionBarLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBarLayout_android_layout_gravity = global::mederly.Droid.Resource.Styleable.ActionBarLayout_android_layout_gravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_background = global::mederly.Droid.Resource.Styleable.ActionBar_background; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_backgroundSplit = global::mederly.Droid.Resource.Styleable.ActionBar_backgroundSplit; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_backgroundStacked = global::mederly.Droid.Resource.Styleable.ActionBar_backgroundStacked; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_contentInsetEnd = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_contentInsetEndWithActions = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetEndWithActions; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_contentInsetLeft = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_contentInsetRight = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_contentInsetStart = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_contentInsetStartWithNavigation = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetStartWithNavigation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_customNavigationLayout = global::mederly.Droid.Resource.Styleable.ActionBar_customNavigationLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_displayOptions = global::mederly.Droid.Resource.Styleable.ActionBar_displayOptions; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_divider = global::mederly.Droid.Resource.Styleable.ActionBar_divider; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_elevation = global::mederly.Droid.Resource.Styleable.ActionBar_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_height = global::mederly.Droid.Resource.Styleable.ActionBar_height; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_hideOnContentScroll = global::mederly.Droid.Resource.Styleable.ActionBar_hideOnContentScroll; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_homeAsUpIndicator = global::mederly.Droid.Resource.Styleable.ActionBar_homeAsUpIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_homeLayout = global::mederly.Droid.Resource.Styleable.ActionBar_homeLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_icon = global::mederly.Droid.Resource.Styleable.ActionBar_icon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_indeterminateProgressStyle = global::mederly.Droid.Resource.Styleable.ActionBar_indeterminateProgressStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_itemPadding = global::mederly.Droid.Resource.Styleable.ActionBar_itemPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_logo = global::mederly.Droid.Resource.Styleable.ActionBar_logo; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_navigationMode = global::mederly.Droid.Resource.Styleable.ActionBar_navigationMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_popupTheme = global::mederly.Droid.Resource.Styleable.ActionBar_popupTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_progressBarPadding = global::mederly.Droid.Resource.Styleable.ActionBar_progressBarPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_progressBarStyle = global::mederly.Droid.Resource.Styleable.ActionBar_progressBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_subtitle = global::mederly.Droid.Resource.Styleable.ActionBar_subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_subtitleTextStyle = global::mederly.Droid.Resource.Styleable.ActionBar_subtitleTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_title = global::mederly.Droid.Resource.Styleable.ActionBar_title; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionBar_titleTextStyle = global::mederly.Droid.Resource.Styleable.ActionBar_titleTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMenuItemView = global::mederly.Droid.Resource.Styleable.ActionMenuItemView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMenuItemView_android_minWidth = global::mederly.Droid.Resource.Styleable.ActionMenuItemView_android_minWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMenuView = global::mederly.Droid.Resource.Styleable.ActionMenuView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMode = global::mederly.Droid.Resource.Styleable.ActionMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMode_background = global::mederly.Droid.Resource.Styleable.ActionMode_background; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMode_backgroundSplit = global::mederly.Droid.Resource.Styleable.ActionMode_backgroundSplit; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMode_closeItemLayout = global::mederly.Droid.Resource.Styleable.ActionMode_closeItemLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMode_height = global::mederly.Droid.Resource.Styleable.ActionMode_height; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMode_subtitleTextStyle = global::mederly.Droid.Resource.Styleable.ActionMode_subtitleTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActionMode_titleTextStyle = global::mederly.Droid.Resource.Styleable.ActionMode_titleTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActivityChooserView = global::mederly.Droid.Resource.Styleable.ActivityChooserView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActivityChooserView_expandActivityOverflowButtonDrawable = global::mederly.Droid.Resource.Styleable.ActivityChooserView_expandActivityOverflowButtonDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ActivityChooserView_initialActivityCount = global::mederly.Droid.Resource.Styleable.ActivityChooserView_initialActivityCount; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog = global::mederly.Droid.Resource.Styleable.AlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog_android_layout = global::mederly.Droid.Resource.Styleable.AlertDialog_android_layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog_buttonIconDimen = global::mederly.Droid.Resource.Styleable.AlertDialog_buttonIconDimen; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog_buttonPanelSideLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_buttonPanelSideLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog_listItemLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_listItemLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog_listLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_listLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog_multiChoiceItemLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_multiChoiceItemLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog_showTitle = global::mederly.Droid.Resource.Styleable.AlertDialog_showTitle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AlertDialog_singleChoiceItemLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_singleChoiceItemLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableCompat = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_constantSize = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_constantSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_dither = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_dither; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_enterFadeDuration = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_enterFadeDuration; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_exitFadeDuration = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_exitFadeDuration; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_variablePadding = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_variablePadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_visible = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_visible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableItem = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableItem_android_drawable = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableItem_android_drawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableItem_android_id = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableItem_android_id; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableTransition = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableTransition_android_drawable = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition_android_drawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableTransition_android_fromId = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition_android_fromId; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableTransition_android_reversible = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition_android_reversible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AnimatedStateListDrawableTransition_android_toId = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition_android_toId; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout = global::mederly.Droid.Resource.Styleable.AppBarLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayoutStates = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayoutStates_state_collapsed = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates_state_collapsed; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayoutStates_state_collapsible = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates_state_collapsible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayoutStates_state_liftable = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates_state_liftable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayoutStates_state_lifted = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates_state_lifted; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_android_background = global::mederly.Droid.Resource.Styleable.AppBarLayout_android_background; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_android_keyboardNavigationCluster = global::mederly.Droid.Resource.Styleable.AppBarLayout_android_keyboardNavigationCluster; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_android_touchscreenBlocksFocus = global::mederly.Droid.Resource.Styleable.AppBarLayout_android_touchscreenBlocksFocus; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_elevation = global::mederly.Droid.Resource.Styleable.AppBarLayout_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_expanded = global::mederly.Droid.Resource.Styleable.AppBarLayout_expanded; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_Layout = global::mederly.Droid.Resource.Styleable.AppBarLayout_Layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_Layout_layout_scrollFlags = global::mederly.Droid.Resource.Styleable.AppBarLayout_Layout_layout_scrollFlags; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_Layout_layout_scrollInterpolator = global::mederly.Droid.Resource.Styleable.AppBarLayout_Layout_layout_scrollInterpolator; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_liftOnScroll = global::mederly.Droid.Resource.Styleable.AppBarLayout_liftOnScroll; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_liftOnScrollTargetViewId = global::mederly.Droid.Resource.Styleable.AppBarLayout_liftOnScrollTargetViewId; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppBarLayout_statusBarForeground = global::mederly.Droid.Resource.Styleable.AppBarLayout_statusBarForeground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatImageView = global::mederly.Droid.Resource.Styleable.AppCompatImageView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatImageView_android_src = global::mederly.Droid.Resource.Styleable.AppCompatImageView_android_src; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatImageView_srcCompat = global::mederly.Droid.Resource.Styleable.AppCompatImageView_srcCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatImageView_tint = global::mederly.Droid.Resource.Styleable.AppCompatImageView_tint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatImageView_tintMode = global::mederly.Droid.Resource.Styleable.AppCompatImageView_tintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatSeekBar = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatSeekBar_android_thumb = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar_android_thumb; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatSeekBar_tickMark = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar_tickMark; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatSeekBar_tickMarkTint = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar_tickMarkTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatSeekBar_tickMarkTintMode = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar_tickMarkTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextHelper = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextHelper_android_drawableBottom = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextHelper_android_drawableEnd = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextHelper_android_drawableLeft = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextHelper_android_drawableRight = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextHelper_android_drawableStart = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextHelper_android_drawableTop = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextHelper_android_textAppearance = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_textAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView = global::mederly.Droid.Resource.Styleable.AppCompatTextView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_android_textAppearance = global::mederly.Droid.Resource.Styleable.AppCompatTextView_android_textAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_autoSizeMaxTextSize = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizeMaxTextSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_autoSizeMinTextSize = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizeMinTextSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_autoSizePresetSizes = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizePresetSizes; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_autoSizeStepGranularity = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizeStepGranularity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_autoSizeTextType = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizeTextType; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_drawableBottomCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableBottomCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_drawableEndCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableEndCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_drawableLeftCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableLeftCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_drawableRightCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableRightCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_drawableStartCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableStartCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_drawableTint = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_drawableTintMode = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_drawableTopCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableTopCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_firstBaselineToTopHeight = global::mederly.Droid.Resource.Styleable.AppCompatTextView_firstBaselineToTopHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_fontFamily = global::mederly.Droid.Resource.Styleable.AppCompatTextView_fontFamily; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_fontVariationSettings = global::mederly.Droid.Resource.Styleable.AppCompatTextView_fontVariationSettings; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_lastBaselineToBottomHeight = global::mederly.Droid.Resource.Styleable.AppCompatTextView_lastBaselineToBottomHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_lineHeight = global::mederly.Droid.Resource.Styleable.AppCompatTextView_lineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_textAllCaps = global::mederly.Droid.Resource.Styleable.AppCompatTextView_textAllCaps; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTextView_textLocale = global::mederly.Droid.Resource.Styleable.AppCompatTextView_textLocale; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarDivider = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarDivider; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarItemBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarItemBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarPopupTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarPopupTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarSize = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarSplitStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarSplitStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarTabBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarTabBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarTabStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarTabStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarTabTextStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarTabTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionBarWidgetTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarWidgetTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionDropDownStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionDropDownStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionMenuTextAppearance = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionMenuTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionMenuTextColor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionMenuTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeCloseButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeCloseButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeCloseDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeCloseDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeCopyDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeCopyDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeCutDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeCutDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeFindDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeFindDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModePasteDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModePasteDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModePopupWindowStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModePopupWindowStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeSelectAllDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeSelectAllDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeShareDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeShareDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeSplitBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeSplitBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionModeWebSearchDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeWebSearchDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionOverflowButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionOverflowButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_actionOverflowMenuStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionOverflowMenuStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_activityChooserViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_activityChooserViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_alertDialogButtonGroupStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_alertDialogButtonGroupStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_alertDialogCenterButtons = global::mederly.Droid.Resource.Styleable.AppCompatTheme_alertDialogCenterButtons; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_alertDialogStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_alertDialogStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_alertDialogTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_alertDialogTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_android_windowAnimationStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_android_windowAnimationStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_android_windowIsFloating = global::mederly.Droid.Resource.Styleable.AppCompatTheme_android_windowIsFloating; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_autoCompleteTextViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_autoCompleteTextViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_borderlessButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_borderlessButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_buttonBarButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_buttonBarNegativeButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarNegativeButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_buttonBarNeutralButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarNeutralButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_buttonBarPositiveButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarPositiveButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_buttonBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_buttonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_buttonStyleSmall = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonStyleSmall; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_checkboxStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_checkboxStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_checkedTextViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_checkedTextViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorAccent = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorAccent; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorBackgroundFloating = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorBackgroundFloating; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorButtonNormal = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorButtonNormal; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorControlActivated = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorControlActivated; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorControlHighlight = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorControlHighlight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorControlNormal = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorControlNormal; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorError = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorError; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorPrimary = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorPrimary; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorPrimaryDark = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorPrimaryDark; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_colorSwitchThumbNormal = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorSwitchThumbNormal; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_controlBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_controlBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_dialogCornerRadius = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dialogCornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_dialogPreferredPadding = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dialogPreferredPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_dialogTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dialogTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_dividerHorizontal = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dividerHorizontal; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_dividerVertical = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dividerVertical; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_dropdownListPreferredItemHeight = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dropdownListPreferredItemHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_dropDownListViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dropDownListViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_editTextBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_editTextBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_editTextColor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_editTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_editTextStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_editTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_homeAsUpIndicator = global::mederly.Droid.Resource.Styleable.AppCompatTheme_homeAsUpIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_imageButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_imageButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listChoiceBackgroundIndicator = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listChoiceBackgroundIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listChoiceIndicatorMultipleAnimated = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listChoiceIndicatorMultipleAnimated; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listChoiceIndicatorSingleAnimated = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listChoiceIndicatorSingleAnimated; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listDividerAlertDialog = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listDividerAlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listMenuViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listMenuViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listPopupWindowStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPopupWindowStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listPreferredItemHeight = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listPreferredItemHeightLarge = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemHeightLarge; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listPreferredItemHeightSmall = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemHeightSmall; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingEnd = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingLeft = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingRight = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingStart = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_panelBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_panelBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_panelMenuListTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_panelMenuListTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_panelMenuListWidth = global::mederly.Droid.Resource.Styleable.AppCompatTheme_panelMenuListWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_popupMenuStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_popupMenuStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_popupWindowStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_popupWindowStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_radioButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_radioButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_ratingBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_ratingBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_ratingBarStyleIndicator = global::mederly.Droid.Resource.Styleable.AppCompatTheme_ratingBarStyleIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_ratingBarStyleSmall = global::mederly.Droid.Resource.Styleable.AppCompatTheme_ratingBarStyleSmall; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_searchViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_searchViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_seekBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_seekBarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_selectableItemBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_selectableItemBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_selectableItemBackgroundBorderless = global::mederly.Droid.Resource.Styleable.AppCompatTheme_selectableItemBackgroundBorderless; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_spinnerDropDownItemStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_spinnerDropDownItemStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_spinnerStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_spinnerStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_switchStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_switchStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textAppearanceLargePopupMenu = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceLargePopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textAppearanceListItem = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceListItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textAppearanceListItemSecondary = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceListItemSecondary; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textAppearanceListItemSmall = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceListItemSmall; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textAppearancePopupMenuHeader = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearancePopupMenuHeader; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultSubtitle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultSubtitle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultTitle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultTitle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textAppearanceSmallPopupMenu = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceSmallPopupMenu; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textColorAlertDialogListItem = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textColorAlertDialogListItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_textColorSearchUrl = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textColorSearchUrl; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_toolbarNavigationButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_toolbarNavigationButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_toolbarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_toolbarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_tooltipForegroundColor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_tooltipForegroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_tooltipFrameBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_tooltipFrameBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_viewInflaterClass = global::mederly.Droid.Resource.Styleable.AppCompatTheme_viewInflaterClass; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowActionBar = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowActionBar; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowActionBarOverlay = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowActionBarOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowActionModeOverlay = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowActionModeOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowFixedHeightMajor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowFixedHeightMajor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowFixedHeightMinor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowFixedHeightMinor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowFixedWidthMajor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowFixedWidthMajor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowFixedWidthMinor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowFixedWidthMinor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowMinWidthMajor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowMinWidthMajor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowMinWidthMinor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowMinWidthMinor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.AppCompatTheme_windowNoTitle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowNoTitle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Badge = global::mederly.Droid.Resource.Styleable.Badge; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Badge_backgroundColor = global::mederly.Droid.Resource.Styleable.Badge_backgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Badge_badgeGravity = global::mederly.Droid.Resource.Styleable.Badge_badgeGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Badge_badgeTextColor = global::mederly.Droid.Resource.Styleable.Badge_badgeTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Badge_horizontalOffset = global::mederly.Droid.Resource.Styleable.Badge_horizontalOffset; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Badge_maxCharacterCount = global::mederly.Droid.Resource.Styleable.Badge_maxCharacterCount; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Badge_number = global::mederly.Droid.Resource.Styleable.Badge_number; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Badge_verticalOffset = global::mederly.Droid.Resource.Styleable.Badge_verticalOffset; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar = global::mederly.Droid.Resource.Styleable.BottomAppBar; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_backgroundTint = global::mederly.Droid.Resource.Styleable.BottomAppBar_backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_elevation = global::mederly.Droid.Resource.Styleable.BottomAppBar_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_fabAlignmentMode = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabAlignmentMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_fabAnimationMode = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabAnimationMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_fabCradleMargin = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabCradleMargin; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_fabCradleRoundedCornerRadius = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabCradleRoundedCornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_fabCradleVerticalOffset = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabCradleVerticalOffset; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_hideOnScroll = global::mederly.Droid.Resource.Styleable.BottomAppBar_hideOnScroll; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_paddingBottomSystemWindowInsets = global::mederly.Droid.Resource.Styleable.BottomAppBar_paddingBottomSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_paddingLeftSystemWindowInsets = global::mederly.Droid.Resource.Styleable.BottomAppBar_paddingLeftSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomAppBar_paddingRightSystemWindowInsets = global::mederly.Droid.Resource.Styleable.BottomAppBar_paddingRightSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView = global::mederly.Droid.Resource.Styleable.BottomNavigationView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_backgroundTint = global::mederly.Droid.Resource.Styleable.BottomNavigationView_backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_elevation = global::mederly.Droid.Resource.Styleable.BottomNavigationView_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_itemBackground = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_itemHorizontalTranslationEnabled = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemHorizontalTranslationEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_itemIconSize = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemIconSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_itemIconTint = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_itemRippleColor = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemRippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_itemTextAppearanceActive = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemTextAppearanceActive; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_itemTextAppearanceInactive = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemTextAppearanceInactive; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_itemTextColor = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_labelVisibilityMode = global::mederly.Droid.Resource.Styleable.BottomNavigationView_labelVisibilityMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomNavigationView_menu = global::mederly.Droid.Resource.Styleable.BottomNavigationView_menu; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_android_elevation = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_android_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_backgroundTint = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_draggable = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_draggable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_expandedOffset = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_expandedOffset; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_fitToContents = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_fitToContents; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_halfExpandedRatio = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_halfExpandedRatio; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_hideable = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_hideable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_peekHeight = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_peekHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_saveFlags = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_saveFlags; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_skipCollapsed = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_skipCollapsed; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_gestureInsetBottomIgnored = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_gestureInsetBottomIgnored; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearance = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ButtonBarLayout = global::mederly.Droid.Resource.Styleable.ButtonBarLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ButtonBarLayout_allowStacking = global::mederly.Droid.Resource.Styleable.ButtonBarLayout_allowStacking; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView = global::mederly.Droid.Resource.Styleable.CardView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_android_minHeight = global::mederly.Droid.Resource.Styleable.CardView_android_minHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_android_minWidth = global::mederly.Droid.Resource.Styleable.CardView_android_minWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_cardBackgroundColor = global::mederly.Droid.Resource.Styleable.CardView_cardBackgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_cardCornerRadius = global::mederly.Droid.Resource.Styleable.CardView_cardCornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_cardElevation = global::mederly.Droid.Resource.Styleable.CardView_cardElevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_cardMaxElevation = global::mederly.Droid.Resource.Styleable.CardView_cardMaxElevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_cardPreventCornerOverlap = global::mederly.Droid.Resource.Styleable.CardView_cardPreventCornerOverlap; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_cardUseCompatPadding = global::mederly.Droid.Resource.Styleable.CardView_cardUseCompatPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_contentPadding = global::mederly.Droid.Resource.Styleable.CardView_contentPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_contentPaddingBottom = global::mederly.Droid.Resource.Styleable.CardView_contentPaddingBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_contentPaddingLeft = global::mederly.Droid.Resource.Styleable.CardView_contentPaddingLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_contentPaddingRight = global::mederly.Droid.Resource.Styleable.CardView_contentPaddingRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CardView_contentPaddingTop = global::mederly.Droid.Resource.Styleable.CardView_contentPaddingTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip = global::mederly.Droid.Resource.Styleable.Chip; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ChipGroup = global::mederly.Droid.Resource.Styleable.ChipGroup; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ChipGroup_checkedChip = global::mederly.Droid.Resource.Styleable.ChipGroup_checkedChip; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ChipGroup_chipSpacing = global::mederly.Droid.Resource.Styleable.ChipGroup_chipSpacing; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ChipGroup_chipSpacingHorizontal = global::mederly.Droid.Resource.Styleable.ChipGroup_chipSpacingHorizontal; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ChipGroup_chipSpacingVertical = global::mederly.Droid.Resource.Styleable.ChipGroup_chipSpacingVertical; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ChipGroup_selectionRequired = global::mederly.Droid.Resource.Styleable.ChipGroup_selectionRequired; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ChipGroup_singleLine = global::mederly.Droid.Resource.Styleable.ChipGroup_singleLine; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ChipGroup_singleSelection = global::mederly.Droid.Resource.Styleable.ChipGroup_singleSelection; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_android_checkable = global::mederly.Droid.Resource.Styleable.Chip_android_checkable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_android_ellipsize = global::mederly.Droid.Resource.Styleable.Chip_android_ellipsize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_android_maxWidth = global::mederly.Droid.Resource.Styleable.Chip_android_maxWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_android_text = global::mederly.Droid.Resource.Styleable.Chip_android_text; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_android_textAppearance = global::mederly.Droid.Resource.Styleable.Chip_android_textAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_android_textColor = global::mederly.Droid.Resource.Styleable.Chip_android_textColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_checkedIcon = global::mederly.Droid.Resource.Styleable.Chip_checkedIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_checkedIconEnabled = global::mederly.Droid.Resource.Styleable.Chip_checkedIconEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_checkedIconTint = global::mederly.Droid.Resource.Styleable.Chip_checkedIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_checkedIconVisible = global::mederly.Droid.Resource.Styleable.Chip_checkedIconVisible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipBackgroundColor = global::mederly.Droid.Resource.Styleable.Chip_chipBackgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipCornerRadius = global::mederly.Droid.Resource.Styleable.Chip_chipCornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipEndPadding = global::mederly.Droid.Resource.Styleable.Chip_chipEndPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipIcon = global::mederly.Droid.Resource.Styleable.Chip_chipIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipIconEnabled = global::mederly.Droid.Resource.Styleable.Chip_chipIconEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipIconSize = global::mederly.Droid.Resource.Styleable.Chip_chipIconSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipIconTint = global::mederly.Droid.Resource.Styleable.Chip_chipIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipIconVisible = global::mederly.Droid.Resource.Styleable.Chip_chipIconVisible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipMinHeight = global::mederly.Droid.Resource.Styleable.Chip_chipMinHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipMinTouchTargetSize = global::mederly.Droid.Resource.Styleable.Chip_chipMinTouchTargetSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipStartPadding = global::mederly.Droid.Resource.Styleable.Chip_chipStartPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipStrokeColor = global::mederly.Droid.Resource.Styleable.Chip_chipStrokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipStrokeWidth = global::mederly.Droid.Resource.Styleable.Chip_chipStrokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_chipSurfaceColor = global::mederly.Droid.Resource.Styleable.Chip_chipSurfaceColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_closeIcon = global::mederly.Droid.Resource.Styleable.Chip_closeIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_closeIconEnabled = global::mederly.Droid.Resource.Styleable.Chip_closeIconEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_closeIconEndPadding = global::mederly.Droid.Resource.Styleable.Chip_closeIconEndPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_closeIconSize = global::mederly.Droid.Resource.Styleable.Chip_closeIconSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_closeIconStartPadding = global::mederly.Droid.Resource.Styleable.Chip_closeIconStartPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_closeIconTint = global::mederly.Droid.Resource.Styleable.Chip_closeIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_closeIconVisible = global::mederly.Droid.Resource.Styleable.Chip_closeIconVisible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_ensureMinTouchTargetSize = global::mederly.Droid.Resource.Styleable.Chip_ensureMinTouchTargetSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_hideMotionSpec = global::mederly.Droid.Resource.Styleable.Chip_hideMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_iconEndPadding = global::mederly.Droid.Resource.Styleable.Chip_iconEndPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_iconStartPadding = global::mederly.Droid.Resource.Styleable.Chip_iconStartPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_rippleColor = global::mederly.Droid.Resource.Styleable.Chip_rippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_shapeAppearance = global::mederly.Droid.Resource.Styleable.Chip_shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.Chip_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_showMotionSpec = global::mederly.Droid.Resource.Styleable.Chip_showMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_textEndPadding = global::mederly.Droid.Resource.Styleable.Chip_textEndPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Chip_textStartPadding = global::mederly.Droid.Resource.Styleable.Chip_textStartPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleGravity = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleTextAppearance = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_contentScrim = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_contentScrim; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleGravity = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMargin = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMargin; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginBottom = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginEnd = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginStart = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginTop = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleTextAppearance = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_Layout = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_Layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseMode = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_maxLines = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_maxLines; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_scrimAnimationDuration = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_scrimAnimationDuration; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_scrimVisibleHeightTrigger = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_scrimVisibleHeightTrigger; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_statusBarScrim = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_statusBarScrim; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_title = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_title; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_titleEnabled = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_titleEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CollapsingToolbarLayout_toolbarId = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_toolbarId; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ColorStateListItem = global::mederly.Droid.Resource.Styleable.ColorStateListItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ColorStateListItem_alpha = global::mederly.Droid.Resource.Styleable.ColorStateListItem_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ColorStateListItem_android_alpha = global::mederly.Droid.Resource.Styleable.ColorStateListItem_android_alpha; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ColorStateListItem_android_color = global::mederly.Droid.Resource.Styleable.ColorStateListItem_android_color; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CompoundButton = global::mederly.Droid.Resource.Styleable.CompoundButton; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CompoundButton_android_button = global::mederly.Droid.Resource.Styleable.CompoundButton_android_button; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CompoundButton_buttonCompat = global::mederly.Droid.Resource.Styleable.CompoundButton_buttonCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CompoundButton_buttonTint = global::mederly.Droid.Resource.Styleable.CompoundButton_buttonTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CompoundButton_buttonTintMode = global::mederly.Droid.Resource.Styleable.CompoundButton_buttonTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout = global::mederly.Droid.Resource.Styleable.CoordinatorLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_keylines = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_keylines; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_Layout = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_Layout_android_layout_gravity = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_android_layout_gravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_anchor = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_anchor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_anchorGravity = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_anchorGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_behavior = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_behavior; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_dodgeInsetEdges = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_dodgeInsetEdges; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_insetEdge = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_insetEdge; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_keyline = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_keyline; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.CoordinatorLayout_statusBarBackground = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_statusBarBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle_arrowHeadLength = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_arrowHeadLength; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle_arrowShaftLength = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_arrowShaftLength; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle_barLength = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_barLength; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle_color = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_color; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle_drawableSize = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_drawableSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle_gapBetweenBars = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_gapBetweenBars; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle_spinBars = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_spinBars; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerArrowToggle_thickness = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_thickness; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerLayout = global::mederly.Droid.Resource.Styleable.DrawerLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.DrawerLayout_elevation = global::mederly.Droid.Resource.Styleable.DrawerLayout_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton_elevation = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton_extendMotionSpec = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_extendMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton_hideMotionSpec = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_hideMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton_showMotionSpec = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_showMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ExtendedFloatingActionButton_shrinkMotionSpec = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_shrinkMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton = global::mederly.Droid.Resource.Styleable.FloatingActionButton; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_android_enabled = global::mederly.Droid.Resource.Styleable.FloatingActionButton_android_enabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_backgroundTint = global::mederly.Droid.Resource.Styleable.FloatingActionButton_backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_backgroundTintMode = global::mederly.Droid.Resource.Styleable.FloatingActionButton_backgroundTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_Behavior_Layout = global::mederly.Droid.Resource.Styleable.FloatingActionButton_Behavior_Layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_Behavior_Layout_behavior_autoHide = global::mederly.Droid.Resource.Styleable.FloatingActionButton_Behavior_Layout_behavior_autoHide; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_borderWidth = global::mederly.Droid.Resource.Styleable.FloatingActionButton_borderWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_elevation = global::mederly.Droid.Resource.Styleable.FloatingActionButton_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_ensureMinTouchTargetSize = global::mederly.Droid.Resource.Styleable.FloatingActionButton_ensureMinTouchTargetSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_fabCustomSize = global::mederly.Droid.Resource.Styleable.FloatingActionButton_fabCustomSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_fabSize = global::mederly.Droid.Resource.Styleable.FloatingActionButton_fabSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_hideMotionSpec = global::mederly.Droid.Resource.Styleable.FloatingActionButton_hideMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_hoveredFocusedTranslationZ = global::mederly.Droid.Resource.Styleable.FloatingActionButton_hoveredFocusedTranslationZ; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_maxImageSize = global::mederly.Droid.Resource.Styleable.FloatingActionButton_maxImageSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_pressedTranslationZ = global::mederly.Droid.Resource.Styleable.FloatingActionButton_pressedTranslationZ; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_rippleColor = global::mederly.Droid.Resource.Styleable.FloatingActionButton_rippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_shapeAppearance = global::mederly.Droid.Resource.Styleable.FloatingActionButton_shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.FloatingActionButton_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_showMotionSpec = global::mederly.Droid.Resource.Styleable.FloatingActionButton_showMotionSpec; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FloatingActionButton_useCompatPadding = global::mederly.Droid.Resource.Styleable.FloatingActionButton_useCompatPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FlowLayout = global::mederly.Droid.Resource.Styleable.FlowLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FlowLayout_itemSpacing = global::mederly.Droid.Resource.Styleable.FlowLayout_itemSpacing; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FlowLayout_lineSpacing = global::mederly.Droid.Resource.Styleable.FlowLayout_lineSpacing; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamily = global::mederly.Droid.Resource.Styleable.FontFamily; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont = global::mederly.Droid.Resource.Styleable.FontFamilyFont; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_android_font = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_font; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_android_fontStyle = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_android_fontVariationSettings = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontVariationSettings; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_android_fontWeight = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontWeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_android_ttcIndex = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_ttcIndex; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_font = global::mederly.Droid.Resource.Styleable.FontFamilyFont_font; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_fontStyle = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_fontVariationSettings = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontVariationSettings; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_fontWeight = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontWeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamilyFont_ttcIndex = global::mederly.Droid.Resource.Styleable.FontFamilyFont_ttcIndex; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamily_fontProviderAuthority = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderAuthority; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamily_fontProviderCerts = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderCerts; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamily_fontProviderFetchStrategy = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderFetchStrategy; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamily_fontProviderFetchTimeout = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderFetchTimeout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamily_fontProviderPackage = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderPackage; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FontFamily_fontProviderQuery = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderQuery; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ForegroundLinearLayout = global::mederly.Droid.Resource.Styleable.ForegroundLinearLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ForegroundLinearLayout_android_foreground = global::mederly.Droid.Resource.Styleable.ForegroundLinearLayout_android_foreground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ForegroundLinearLayout_android_foregroundGravity = global::mederly.Droid.Resource.Styleable.ForegroundLinearLayout_android_foregroundGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ForegroundLinearLayout_foregroundInsidePadding = global::mederly.Droid.Resource.Styleable.ForegroundLinearLayout_foregroundInsidePadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Fragment = global::mederly.Droid.Resource.Styleable.Fragment; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FragmentContainerView = global::mederly.Droid.Resource.Styleable.FragmentContainerView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FragmentContainerView_android_name = global::mederly.Droid.Resource.Styleable.FragmentContainerView_android_name; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.FragmentContainerView_android_tag = global::mederly.Droid.Resource.Styleable.FragmentContainerView_android_tag; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Fragment_android_id = global::mederly.Droid.Resource.Styleable.Fragment_android_id; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Fragment_android_name = global::mederly.Droid.Resource.Styleable.Fragment_android_name; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Fragment_android_tag = global::mederly.Droid.Resource.Styleable.Fragment_android_tag; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor = global::mederly.Droid.Resource.Styleable.GradientColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColorItem = global::mederly.Droid.Resource.Styleable.GradientColorItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColorItem_android_color = global::mederly.Droid.Resource.Styleable.GradientColorItem_android_color; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColorItem_android_offset = global::mederly.Droid.Resource.Styleable.GradientColorItem_android_offset; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_centerColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_centerX = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerX; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_centerY = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerY; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_endColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_endColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_endX = global::mederly.Droid.Resource.Styleable.GradientColor_android_endX; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_endY = global::mederly.Droid.Resource.Styleable.GradientColor_android_endY; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_gradientRadius = global::mederly.Droid.Resource.Styleable.GradientColor_android_gradientRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_startColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_startColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_startX = global::mederly.Droid.Resource.Styleable.GradientColor_android_startX; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_startY = global::mederly.Droid.Resource.Styleable.GradientColor_android_startY; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_tileMode = global::mederly.Droid.Resource.Styleable.GradientColor_android_tileMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.GradientColor_android_type = global::mederly.Droid.Resource.Styleable.GradientColor_android_type; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Insets = global::mederly.Droid.Resource.Styleable.Insets; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Insets_paddingBottomSystemWindowInsets = global::mederly.Droid.Resource.Styleable.Insets_paddingBottomSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Insets_paddingLeftSystemWindowInsets = global::mederly.Droid.Resource.Styleable.Insets_paddingLeftSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Insets_paddingRightSystemWindowInsets = global::mederly.Droid.Resource.Styleable.Insets_paddingRightSystemWindowInsets; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ItemsViewRendererTheme = global::mederly.Droid.Resource.Styleable.ItemsViewRendererTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ItemsViewRendererTheme_collectionViewStyle = global::mederly.Droid.Resource.Styleable.ItemsViewRendererTheme_collectionViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_android_baselineAligned = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_baselineAligned; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_android_baselineAlignedChildIndex = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_baselineAlignedChildIndex; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_android_gravity = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_gravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_android_orientation = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_orientation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_android_weightSum = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_weightSum; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_divider = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_divider; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_dividerPadding = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_dividerPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_Layout = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_gravity = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_gravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_height = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_height; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_weight = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_weight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_width = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_width; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_measureWithLargestChild = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_measureWithLargestChild; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.LinearLayoutCompat_showDividers = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_showDividers; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ListPopupWindow = global::mederly.Droid.Resource.Styleable.ListPopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ListPopupWindow_android_dropDownHorizontalOffset = global::mederly.Droid.Resource.Styleable.ListPopupWindow_android_dropDownHorizontalOffset; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ListPopupWindow_android_dropDownVerticalOffset = global::mederly.Droid.Resource.Styleable.ListPopupWindow_android_dropDownVerticalOffset; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialog = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialogTheme = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTheme = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialog_backgroundInsetBottom = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog_backgroundInsetBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialog_backgroundInsetEnd = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog_backgroundInsetEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialog_backgroundInsetStart = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog_backgroundInsetStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAlertDialog_backgroundInsetTop = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog_backgroundInsetTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAutoCompleteTextView = global::mederly.Droid.Resource.Styleable.MaterialAutoCompleteTextView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialAutoCompleteTextView_android_inputType = global::mederly.Droid.Resource.Styleable.MaterialAutoCompleteTextView_android_inputType; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton = global::mederly.Droid.Resource.Styleable.MaterialButton; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButtonToggleGroup = global::mederly.Droid.Resource.Styleable.MaterialButtonToggleGroup; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButtonToggleGroup_checkedButton = global::mederly.Droid.Resource.Styleable.MaterialButtonToggleGroup_checkedButton; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButtonToggleGroup_selectionRequired = global::mederly.Droid.Resource.Styleable.MaterialButtonToggleGroup_selectionRequired; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButtonToggleGroup_singleSelection = global::mederly.Droid.Resource.Styleable.MaterialButtonToggleGroup_singleSelection; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_android_background = global::mederly.Droid.Resource.Styleable.MaterialButton_android_background; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_android_checkable = global::mederly.Droid.Resource.Styleable.MaterialButton_android_checkable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_android_insetBottom = global::mederly.Droid.Resource.Styleable.MaterialButton_android_insetBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_android_insetLeft = global::mederly.Droid.Resource.Styleable.MaterialButton_android_insetLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_android_insetRight = global::mederly.Droid.Resource.Styleable.MaterialButton_android_insetRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_android_insetTop = global::mederly.Droid.Resource.Styleable.MaterialButton_android_insetTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_backgroundTint = global::mederly.Droid.Resource.Styleable.MaterialButton_backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_backgroundTintMode = global::mederly.Droid.Resource.Styleable.MaterialButton_backgroundTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_cornerRadius = global::mederly.Droid.Resource.Styleable.MaterialButton_cornerRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_elevation = global::mederly.Droid.Resource.Styleable.MaterialButton_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_icon = global::mederly.Droid.Resource.Styleable.MaterialButton_icon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_iconGravity = global::mederly.Droid.Resource.Styleable.MaterialButton_iconGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_iconPadding = global::mederly.Droid.Resource.Styleable.MaterialButton_iconPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_iconSize = global::mederly.Droid.Resource.Styleable.MaterialButton_iconSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_iconTint = global::mederly.Droid.Resource.Styleable.MaterialButton_iconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_iconTintMode = global::mederly.Droid.Resource.Styleable.MaterialButton_iconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_rippleColor = global::mederly.Droid.Resource.Styleable.MaterialButton_rippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_shapeAppearance = global::mederly.Droid.Resource.Styleable.MaterialButton_shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.MaterialButton_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_strokeColor = global::mederly.Droid.Resource.Styleable.MaterialButton_strokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialButton_strokeWidth = global::mederly.Droid.Resource.Styleable.MaterialButton_strokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar = global::mederly.Droid.Resource.Styleable.MaterialCalendar; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_android_insetBottom = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_android_insetBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_android_insetLeft = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_android_insetLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_android_insetRight = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_android_insetRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_android_insetTop = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_android_insetTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_itemFillColor = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemFillColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_itemShapeAppearance = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemShapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_itemShapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemShapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_itemStrokeColor = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemStrokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_itemStrokeWidth = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemStrokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendarItem_itemTextColor = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_android_windowFullscreen = global::mederly.Droid.Resource.Styleable.MaterialCalendar_android_windowFullscreen; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_dayInvalidStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_dayInvalidStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_daySelectedStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_daySelectedStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_dayStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_dayStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_dayTodayStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_dayTodayStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_rangeFillColor = global::mederly.Droid.Resource.Styleable.MaterialCalendar_rangeFillColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_yearSelectedStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_yearSelectedStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_yearStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_yearStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCalendar_yearTodayStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_yearTodayStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView = global::mederly.Droid.Resource.Styleable.MaterialCardView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_android_checkable = global::mederly.Droid.Resource.Styleable.MaterialCardView_android_checkable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_cardForegroundColor = global::mederly.Droid.Resource.Styleable.MaterialCardView_cardForegroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_checkedIcon = global::mederly.Droid.Resource.Styleable.MaterialCardView_checkedIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_checkedIconTint = global::mederly.Droid.Resource.Styleable.MaterialCardView_checkedIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_rippleColor = global::mederly.Droid.Resource.Styleable.MaterialCardView_rippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_shapeAppearance = global::mederly.Droid.Resource.Styleable.MaterialCardView_shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.MaterialCardView_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_state_dragged = global::mederly.Droid.Resource.Styleable.MaterialCardView_state_dragged; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_strokeColor = global::mederly.Droid.Resource.Styleable.MaterialCardView_strokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCardView_strokeWidth = global::mederly.Droid.Resource.Styleable.MaterialCardView_strokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCheckBox = global::mederly.Droid.Resource.Styleable.MaterialCheckBox; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCheckBox_buttonTint = global::mederly.Droid.Resource.Styleable.MaterialCheckBox_buttonTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialCheckBox_useMaterialThemeColors = global::mederly.Droid.Resource.Styleable.MaterialCheckBox_useMaterialThemeColors; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialRadioButton = global::mederly.Droid.Resource.Styleable.MaterialRadioButton; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialRadioButton_buttonTint = global::mederly.Droid.Resource.Styleable.MaterialRadioButton_buttonTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialRadioButton_useMaterialThemeColors = global::mederly.Droid.Resource.Styleable.MaterialRadioButton_useMaterialThemeColors; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialShape = global::mederly.Droid.Resource.Styleable.MaterialShape; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialShape_shapeAppearance = global::mederly.Droid.Resource.Styleable.MaterialShape_shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialShape_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.MaterialShape_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialTextAppearance = global::mederly.Droid.Resource.Styleable.MaterialTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialTextAppearance_android_lineHeight = global::mederly.Droid.Resource.Styleable.MaterialTextAppearance_android_lineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialTextAppearance_lineHeight = global::mederly.Droid.Resource.Styleable.MaterialTextAppearance_lineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialTextView = global::mederly.Droid.Resource.Styleable.MaterialTextView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialTextView_android_lineHeight = global::mederly.Droid.Resource.Styleable.MaterialTextView_android_lineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialTextView_android_textAppearance = global::mederly.Droid.Resource.Styleable.MaterialTextView_android_textAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MaterialTextView_lineHeight = global::mederly.Droid.Resource.Styleable.MaterialTextView_lineHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuGroup = global::mederly.Droid.Resource.Styleable.MenuGroup; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuGroup_android_checkableBehavior = global::mederly.Droid.Resource.Styleable.MenuGroup_android_checkableBehavior; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuGroup_android_enabled = global::mederly.Droid.Resource.Styleable.MenuGroup_android_enabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuGroup_android_id = global::mederly.Droid.Resource.Styleable.MenuGroup_android_id; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuGroup_android_menuCategory = global::mederly.Droid.Resource.Styleable.MenuGroup_android_menuCategory; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuGroup_android_orderInCategory = global::mederly.Droid.Resource.Styleable.MenuGroup_android_orderInCategory; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuGroup_android_visible = global::mederly.Droid.Resource.Styleable.MenuGroup_android_visible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem = global::mederly.Droid.Resource.Styleable.MenuItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_actionLayout = global::mederly.Droid.Resource.Styleable.MenuItem_actionLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_actionProviderClass = global::mederly.Droid.Resource.Styleable.MenuItem_actionProviderClass; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_actionViewClass = global::mederly.Droid.Resource.Styleable.MenuItem_actionViewClass; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_alphabeticModifiers = global::mederly.Droid.Resource.Styleable.MenuItem_alphabeticModifiers; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_alphabeticShortcut = global::mederly.Droid.Resource.Styleable.MenuItem_android_alphabeticShortcut; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_checkable = global::mederly.Droid.Resource.Styleable.MenuItem_android_checkable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_checked = global::mederly.Droid.Resource.Styleable.MenuItem_android_checked; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_enabled = global::mederly.Droid.Resource.Styleable.MenuItem_android_enabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_icon = global::mederly.Droid.Resource.Styleable.MenuItem_android_icon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_id = global::mederly.Droid.Resource.Styleable.MenuItem_android_id; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_menuCategory = global::mederly.Droid.Resource.Styleable.MenuItem_android_menuCategory; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_numericShortcut = global::mederly.Droid.Resource.Styleable.MenuItem_android_numericShortcut; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_onClick = global::mederly.Droid.Resource.Styleable.MenuItem_android_onClick; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_orderInCategory = global::mederly.Droid.Resource.Styleable.MenuItem_android_orderInCategory; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_title = global::mederly.Droid.Resource.Styleable.MenuItem_android_title; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_titleCondensed = global::mederly.Droid.Resource.Styleable.MenuItem_android_titleCondensed; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_android_visible = global::mederly.Droid.Resource.Styleable.MenuItem_android_visible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_contentDescription = global::mederly.Droid.Resource.Styleable.MenuItem_contentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_iconTint = global::mederly.Droid.Resource.Styleable.MenuItem_iconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_iconTintMode = global::mederly.Droid.Resource.Styleable.MenuItem_iconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_numericModifiers = global::mederly.Droid.Resource.Styleable.MenuItem_numericModifiers; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_showAsAction = global::mederly.Droid.Resource.Styleable.MenuItem_showAsAction; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuItem_tooltipText = global::mederly.Droid.Resource.Styleable.MenuItem_tooltipText; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView = global::mederly.Droid.Resource.Styleable.MenuView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_android_headerBackground = global::mederly.Droid.Resource.Styleable.MenuView_android_headerBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_android_horizontalDivider = global::mederly.Droid.Resource.Styleable.MenuView_android_horizontalDivider; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_android_itemBackground = global::mederly.Droid.Resource.Styleable.MenuView_android_itemBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_android_itemIconDisabledAlpha = global::mederly.Droid.Resource.Styleable.MenuView_android_itemIconDisabledAlpha; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_android_itemTextAppearance = global::mederly.Droid.Resource.Styleable.MenuView_android_itemTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_android_verticalDivider = global::mederly.Droid.Resource.Styleable.MenuView_android_verticalDivider; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_android_windowAnimationStyle = global::mederly.Droid.Resource.Styleable.MenuView_android_windowAnimationStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_preserveIconSpacing = global::mederly.Droid.Resource.Styleable.MenuView_preserveIconSpacing; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.MenuView_subMenuArrow = global::mederly.Droid.Resource.Styleable.MenuView_subMenuArrow; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView = global::mederly.Droid.Resource.Styleable.NavigationView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_android_background = global::mederly.Droid.Resource.Styleable.NavigationView_android_background; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_android_fitsSystemWindows = global::mederly.Droid.Resource.Styleable.NavigationView_android_fitsSystemWindows; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_android_maxWidth = global::mederly.Droid.Resource.Styleable.NavigationView_android_maxWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_elevation = global::mederly.Droid.Resource.Styleable.NavigationView_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_headerLayout = global::mederly.Droid.Resource.Styleable.NavigationView_headerLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemBackground = global::mederly.Droid.Resource.Styleable.NavigationView_itemBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemHorizontalPadding = global::mederly.Droid.Resource.Styleable.NavigationView_itemHorizontalPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemIconPadding = global::mederly.Droid.Resource.Styleable.NavigationView_itemIconPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemIconSize = global::mederly.Droid.Resource.Styleable.NavigationView_itemIconSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemIconTint = global::mederly.Droid.Resource.Styleable.NavigationView_itemIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemMaxLines = global::mederly.Droid.Resource.Styleable.NavigationView_itemMaxLines; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemShapeAppearance = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemShapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemShapeFillColor = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeFillColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemShapeInsetBottom = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeInsetBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemShapeInsetEnd = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeInsetEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemShapeInsetStart = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeInsetStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemShapeInsetTop = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeInsetTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemTextAppearance = global::mederly.Droid.Resource.Styleable.NavigationView_itemTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_itemTextColor = global::mederly.Droid.Resource.Styleable.NavigationView_itemTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.NavigationView_menu = global::mederly.Droid.Resource.Styleable.NavigationView_menu; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.PopupWindow = global::mederly.Droid.Resource.Styleable.PopupWindow; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.PopupWindowBackgroundState = global::mederly.Droid.Resource.Styleable.PopupWindowBackgroundState; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.PopupWindowBackgroundState_state_above_anchor = global::mederly.Droid.Resource.Styleable.PopupWindowBackgroundState_state_above_anchor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.PopupWindow_android_popupAnimationStyle = global::mederly.Droid.Resource.Styleable.PopupWindow_android_popupAnimationStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.PopupWindow_android_popupBackground = global::mederly.Droid.Resource.Styleable.PopupWindow_android_popupBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.PopupWindow_overlapAnchor = global::mederly.Droid.Resource.Styleable.PopupWindow_overlapAnchor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RangeSlider = global::mederly.Droid.Resource.Styleable.RangeSlider; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RangeSlider_values = global::mederly.Droid.Resource.Styleable.RangeSlider_values; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecycleListView = global::mederly.Droid.Resource.Styleable.RecycleListView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecycleListView_paddingBottomNoButtons = global::mederly.Droid.Resource.Styleable.RecycleListView_paddingBottomNoButtons; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecycleListView_paddingTopNoTitle = global::mederly.Droid.Resource.Styleable.RecycleListView_paddingTopNoTitle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView = global::mederly.Droid.Resource.Styleable.RecyclerView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_android_clipToPadding = global::mederly.Droid.Resource.Styleable.RecyclerView_android_clipToPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_android_descendantFocusability = global::mederly.Droid.Resource.Styleable.RecyclerView_android_descendantFocusability; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_android_orientation = global::mederly.Droid.Resource.Styleable.RecyclerView_android_orientation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_fastScrollEnabled = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_fastScrollHorizontalThumbDrawable = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollHorizontalThumbDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_fastScrollHorizontalTrackDrawable = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollHorizontalTrackDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_fastScrollVerticalThumbDrawable = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollVerticalThumbDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_fastScrollVerticalTrackDrawable = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollVerticalTrackDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_layoutManager = global::mederly.Droid.Resource.Styleable.RecyclerView_layoutManager; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_reverseLayout = global::mederly.Droid.Resource.Styleable.RecyclerView_reverseLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_spanCount = global::mederly.Droid.Resource.Styleable.RecyclerView_spanCount; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.RecyclerView_stackFromEnd = global::mederly.Droid.Resource.Styleable.RecyclerView_stackFromEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ScrimInsetsFrameLayout = global::mederly.Droid.Resource.Styleable.ScrimInsetsFrameLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ScrimInsetsFrameLayout_insetForeground = global::mederly.Droid.Resource.Styleable.ScrimInsetsFrameLayout_insetForeground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ScrollingViewBehavior_Layout = global::mederly.Droid.Resource.Styleable.ScrollingViewBehavior_Layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ScrollingViewBehavior_Layout_behavior_overlapTop = global::mederly.Droid.Resource.Styleable.ScrollingViewBehavior_Layout_behavior_overlapTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ScrollViewRendererTheme = global::mederly.Droid.Resource.Styleable.ScrollViewRendererTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ScrollViewRendererTheme_scrollViewStyle = global::mederly.Droid.Resource.Styleable.ScrollViewRendererTheme_scrollViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView = global::mederly.Droid.Resource.Styleable.SearchView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_android_focusable = global::mederly.Droid.Resource.Styleable.SearchView_android_focusable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_android_imeOptions = global::mederly.Droid.Resource.Styleable.SearchView_android_imeOptions; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_android_inputType = global::mederly.Droid.Resource.Styleable.SearchView_android_inputType; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_android_maxWidth = global::mederly.Droid.Resource.Styleable.SearchView_android_maxWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_closeIcon = global::mederly.Droid.Resource.Styleable.SearchView_closeIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_commitIcon = global::mederly.Droid.Resource.Styleable.SearchView_commitIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_defaultQueryHint = global::mederly.Droid.Resource.Styleable.SearchView_defaultQueryHint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_goIcon = global::mederly.Droid.Resource.Styleable.SearchView_goIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_iconifiedByDefault = global::mederly.Droid.Resource.Styleable.SearchView_iconifiedByDefault; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_layout = global::mederly.Droid.Resource.Styleable.SearchView_layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_queryBackground = global::mederly.Droid.Resource.Styleable.SearchView_queryBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_queryHint = global::mederly.Droid.Resource.Styleable.SearchView_queryHint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_searchHintIcon = global::mederly.Droid.Resource.Styleable.SearchView_searchHintIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_searchIcon = global::mederly.Droid.Resource.Styleable.SearchView_searchIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_submitBackground = global::mederly.Droid.Resource.Styleable.SearchView_submitBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_suggestionRowLayout = global::mederly.Droid.Resource.Styleable.SearchView_suggestionRowLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SearchView_voiceIcon = global::mederly.Droid.Resource.Styleable.SearchView_voiceIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeableImageView = global::mederly.Droid.Resource.Styleable.ShapeableImageView; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeableImageView_shapeAppearance = global::mederly.Droid.Resource.Styleable.ShapeableImageView_shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeableImageView_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.ShapeableImageView_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeableImageView_strokeColor = global::mederly.Droid.Resource.Styleable.ShapeableImageView_strokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeableImageView_strokeWidth = global::mederly.Droid.Resource.Styleable.ShapeableImageView_strokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance = global::mederly.Droid.Resource.Styleable.ShapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerFamily = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamily; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerFamilyBottomLeft = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamilyBottomLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerFamilyBottomRight = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamilyBottomRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerFamilyTopLeft = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamilyTopLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerFamilyTopRight = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamilyTopRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerSize = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerSizeBottomLeft = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSizeBottomLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerSizeBottomRight = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSizeBottomRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerSizeTopLeft = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSizeTopLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ShapeAppearance_cornerSizeTopRight = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSizeTopRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider = global::mederly.Droid.Resource.Styleable.Slider; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_android_enabled = global::mederly.Droid.Resource.Styleable.Slider_android_enabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_android_stepSize = global::mederly.Droid.Resource.Styleable.Slider_android_stepSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_android_value = global::mederly.Droid.Resource.Styleable.Slider_android_value; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_android_valueFrom = global::mederly.Droid.Resource.Styleable.Slider_android_valueFrom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_android_valueTo = global::mederly.Droid.Resource.Styleable.Slider_android_valueTo; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_haloColor = global::mederly.Droid.Resource.Styleable.Slider_haloColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_haloRadius = global::mederly.Droid.Resource.Styleable.Slider_haloRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_labelBehavior = global::mederly.Droid.Resource.Styleable.Slider_labelBehavior; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_labelStyle = global::mederly.Droid.Resource.Styleable.Slider_labelStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_thumbColor = global::mederly.Droid.Resource.Styleable.Slider_thumbColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_thumbElevation = global::mederly.Droid.Resource.Styleable.Slider_thumbElevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_thumbRadius = global::mederly.Droid.Resource.Styleable.Slider_thumbRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_tickColor = global::mederly.Droid.Resource.Styleable.Slider_tickColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_tickColorActive = global::mederly.Droid.Resource.Styleable.Slider_tickColorActive; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_tickColorInactive = global::mederly.Droid.Resource.Styleable.Slider_tickColorInactive; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_trackColor = global::mederly.Droid.Resource.Styleable.Slider_trackColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_trackColorActive = global::mederly.Droid.Resource.Styleable.Slider_trackColorActive; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_trackColorInactive = global::mederly.Droid.Resource.Styleable.Slider_trackColorInactive; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Slider_trackHeight = global::mederly.Droid.Resource.Styleable.Slider_trackHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Snackbar = global::mederly.Droid.Resource.Styleable.Snackbar; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout = global::mederly.Droid.Resource.Styleable.SnackbarLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout_actionTextColorAlpha = global::mederly.Droid.Resource.Styleable.SnackbarLayout_actionTextColorAlpha; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout_android_maxWidth = global::mederly.Droid.Resource.Styleable.SnackbarLayout_android_maxWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout_animationMode = global::mederly.Droid.Resource.Styleable.SnackbarLayout_animationMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout_backgroundOverlayColorAlpha = global::mederly.Droid.Resource.Styleable.SnackbarLayout_backgroundOverlayColorAlpha; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout_backgroundTint = global::mederly.Droid.Resource.Styleable.SnackbarLayout_backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout_backgroundTintMode = global::mederly.Droid.Resource.Styleable.SnackbarLayout_backgroundTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout_elevation = global::mederly.Droid.Resource.Styleable.SnackbarLayout_elevation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SnackbarLayout_maxActionInlineWidth = global::mederly.Droid.Resource.Styleable.SnackbarLayout_maxActionInlineWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Snackbar_snackbarButtonStyle = global::mederly.Droid.Resource.Styleable.Snackbar_snackbarButtonStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Snackbar_snackbarStyle = global::mederly.Droid.Resource.Styleable.Snackbar_snackbarStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Snackbar_snackbarTextViewStyle = global::mederly.Droid.Resource.Styleable.Snackbar_snackbarTextViewStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Spinner = global::mederly.Droid.Resource.Styleable.Spinner; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Spinner_android_dropDownWidth = global::mederly.Droid.Resource.Styleable.Spinner_android_dropDownWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Spinner_android_entries = global::mederly.Droid.Resource.Styleable.Spinner_android_entries; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Spinner_android_popupBackground = global::mederly.Droid.Resource.Styleable.Spinner_android_popupBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Spinner_android_prompt = global::mederly.Droid.Resource.Styleable.Spinner_android_prompt; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Spinner_popupTheme = global::mederly.Droid.Resource.Styleable.Spinner_popupTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawable = global::mederly.Droid.Resource.Styleable.StateListDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawableItem = global::mederly.Droid.Resource.Styleable.StateListDrawableItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawableItem_android_drawable = global::mederly.Droid.Resource.Styleable.StateListDrawableItem_android_drawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawable_android_constantSize = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_constantSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawable_android_dither = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_dither; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawable_android_enterFadeDuration = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_enterFadeDuration; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawable_android_exitFadeDuration = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_exitFadeDuration; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawable_android_variablePadding = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_variablePadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.StateListDrawable_android_visible = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_visible; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwipeRefreshLayout = global::mederly.Droid.Resource.Styleable.SwipeRefreshLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor = global::mederly.Droid.Resource.Styleable.SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat = global::mederly.Droid.Resource.Styleable.SwitchCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_android_textOff = global::mederly.Droid.Resource.Styleable.SwitchCompat_android_textOff; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_android_textOn = global::mederly.Droid.Resource.Styleable.SwitchCompat_android_textOn; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_android_thumb = global::mederly.Droid.Resource.Styleable.SwitchCompat_android_thumb; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_showText = global::mederly.Droid.Resource.Styleable.SwitchCompat_showText; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_splitTrack = global::mederly.Droid.Resource.Styleable.SwitchCompat_splitTrack; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_switchMinWidth = global::mederly.Droid.Resource.Styleable.SwitchCompat_switchMinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_switchPadding = global::mederly.Droid.Resource.Styleable.SwitchCompat_switchPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_switchTextAppearance = global::mederly.Droid.Resource.Styleable.SwitchCompat_switchTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_thumbTextPadding = global::mederly.Droid.Resource.Styleable.SwitchCompat_thumbTextPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_thumbTint = global::mederly.Droid.Resource.Styleable.SwitchCompat_thumbTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_thumbTintMode = global::mederly.Droid.Resource.Styleable.SwitchCompat_thumbTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_track = global::mederly.Droid.Resource.Styleable.SwitchCompat_track; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_trackTint = global::mederly.Droid.Resource.Styleable.SwitchCompat_trackTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchCompat_trackTintMode = global::mederly.Droid.Resource.Styleable.SwitchCompat_trackTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchMaterial = global::mederly.Droid.Resource.Styleable.SwitchMaterial; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.SwitchMaterial_useMaterialThemeColors = global::mederly.Droid.Resource.Styleable.SwitchMaterial_useMaterialThemeColors; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabItem = global::mederly.Droid.Resource.Styleable.TabItem; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabItem_android_icon = global::mederly.Droid.Resource.Styleable.TabItem_android_icon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabItem_android_layout = global::mederly.Droid.Resource.Styleable.TabItem_android_layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabItem_android_text = global::mederly.Droid.Resource.Styleable.TabItem_android_text; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout = global::mederly.Droid.Resource.Styleable.TabLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabBackground = global::mederly.Droid.Resource.Styleable.TabLayout_tabBackground; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabContentStart = global::mederly.Droid.Resource.Styleable.TabLayout_tabContentStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabGravity = global::mederly.Droid.Resource.Styleable.TabLayout_tabGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabIconTint = global::mederly.Droid.Resource.Styleable.TabLayout_tabIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabIconTintMode = global::mederly.Droid.Resource.Styleable.TabLayout_tabIconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabIndicator = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicator; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabIndicatorAnimationDuration = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorAnimationDuration; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabIndicatorColor = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabIndicatorFullWidth = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorFullWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabIndicatorGravity = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabIndicatorHeight = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabInlineLabel = global::mederly.Droid.Resource.Styleable.TabLayout_tabInlineLabel; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabMaxWidth = global::mederly.Droid.Resource.Styleable.TabLayout_tabMaxWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabMinWidth = global::mederly.Droid.Resource.Styleable.TabLayout_tabMinWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabMode = global::mederly.Droid.Resource.Styleable.TabLayout_tabMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabPadding = global::mederly.Droid.Resource.Styleable.TabLayout_tabPadding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabPaddingBottom = global::mederly.Droid.Resource.Styleable.TabLayout_tabPaddingBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabPaddingEnd = global::mederly.Droid.Resource.Styleable.TabLayout_tabPaddingEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabPaddingStart = global::mederly.Droid.Resource.Styleable.TabLayout_tabPaddingStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabPaddingTop = global::mederly.Droid.Resource.Styleable.TabLayout_tabPaddingTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabRippleColor = global::mederly.Droid.Resource.Styleable.TabLayout_tabRippleColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabSelectedTextColor = global::mederly.Droid.Resource.Styleable.TabLayout_tabSelectedTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabTextAppearance = global::mederly.Droid.Resource.Styleable.TabLayout_tabTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabTextColor = global::mederly.Droid.Resource.Styleable.TabLayout_tabTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TabLayout_tabUnboundedRipple = global::mederly.Droid.Resource.Styleable.TabLayout_tabUnboundedRipple; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance = global::mederly.Droid.Resource.Styleable.TextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_fontFamily = global::mederly.Droid.Resource.Styleable.TextAppearance_android_fontFamily; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_shadowColor = global::mederly.Droid.Resource.Styleable.TextAppearance_android_shadowColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_shadowDx = global::mederly.Droid.Resource.Styleable.TextAppearance_android_shadowDx; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_shadowDy = global::mederly.Droid.Resource.Styleable.TextAppearance_android_shadowDy; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_shadowRadius = global::mederly.Droid.Resource.Styleable.TextAppearance_android_shadowRadius; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_textColor = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_textColorHint = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textColorHint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_textColorLink = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textColorLink; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_textFontWeight = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textFontWeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_textSize = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textSize; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_textStyle = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textStyle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_android_typeface = global::mederly.Droid.Resource.Styleable.TextAppearance_android_typeface; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_fontFamily = global::mederly.Droid.Resource.Styleable.TextAppearance_fontFamily; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_fontVariationSettings = global::mederly.Droid.Resource.Styleable.TextAppearance_fontVariationSettings; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_textAllCaps = global::mederly.Droid.Resource.Styleable.TextAppearance_textAllCaps; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextAppearance_textLocale = global::mederly.Droid.Resource.Styleable.TextAppearance_textLocale; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputEditText = global::mederly.Droid.Resource.Styleable.TextInputEditText; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputEditText_textInputLayoutFocusedRectEnabled = global::mederly.Droid.Resource.Styleable.TextInputEditText_textInputLayoutFocusedRectEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout = global::mederly.Droid.Resource.Styleable.TextInputLayout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_android_enabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_android_enabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_android_hint = global::mederly.Droid.Resource.Styleable.TextInputLayout_android_hint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_android_textColorHint = global::mederly.Droid.Resource.Styleable.TextInputLayout_android_textColorHint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxBackgroundColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxBackgroundColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxBackgroundMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxBackgroundMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxCollapsedPaddingTop = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCollapsedPaddingTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomEnd = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomStart = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxCornerRadiusTopEnd = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCornerRadiusTopEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxCornerRadiusTopStart = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCornerRadiusTopStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxStrokeColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxStrokeColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxStrokeErrorColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxStrokeErrorColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxStrokeWidth = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxStrokeWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_boxStrokeWidthFocused = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxStrokeWidthFocused; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_counterEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_counterMaxLength = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterMaxLength; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_counterOverflowTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterOverflowTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_counterOverflowTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterOverflowTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_counterTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_counterTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_endIconCheckable = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconCheckable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_endIconContentDescription = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_endIconDrawable = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_endIconMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_endIconTint = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_endIconTintMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_errorContentDescription = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_errorEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_errorIconDrawable = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorIconDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_errorIconTint = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_errorIconTintMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorIconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_errorTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_errorTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_helperText = global::mederly.Droid.Resource.Styleable.TextInputLayout_helperText; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_helperTextEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_helperTextEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_helperTextTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_helperTextTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_helperTextTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_helperTextTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_hintAnimationEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_hintAnimationEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_hintEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_hintEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_hintTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_hintTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_hintTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_hintTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_passwordToggleContentDescription = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_passwordToggleDrawable = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_passwordToggleEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleEnabled; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_passwordToggleTint = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_passwordToggleTintMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_placeholderText = global::mederly.Droid.Resource.Styleable.TextInputLayout_placeholderText; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_placeholderTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_placeholderTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_placeholderTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_placeholderTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_prefixText = global::mederly.Droid.Resource.Styleable.TextInputLayout_prefixText; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_prefixTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_prefixTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_prefixTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_prefixTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_shapeAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_shapeAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.TextInputLayout_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_startIconCheckable = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconCheckable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_startIconContentDescription = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_startIconDrawable = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconDrawable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_startIconTint = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_startIconTintMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_suffixText = global::mederly.Droid.Resource.Styleable.TextInputLayout_suffixText; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_suffixTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_suffixTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.TextInputLayout_suffixTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_suffixTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ThemeEnforcement = global::mederly.Droid.Resource.Styleable.ThemeEnforcement; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ThemeEnforcement_android_textAppearance = global::mederly.Droid.Resource.Styleable.ThemeEnforcement_android_textAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ThemeEnforcement_enforceMaterialTheme = global::mederly.Droid.Resource.Styleable.ThemeEnforcement_enforceMaterialTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ThemeEnforcement_enforceTextAppearance = global::mederly.Droid.Resource.Styleable.ThemeEnforcement_enforceTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar = global::mederly.Droid.Resource.Styleable.Toolbar; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_android_gravity = global::mederly.Droid.Resource.Styleable.Toolbar_android_gravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_android_minHeight = global::mederly.Droid.Resource.Styleable.Toolbar_android_minHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_buttonGravity = global::mederly.Droid.Resource.Styleable.Toolbar_buttonGravity; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_collapseContentDescription = global::mederly.Droid.Resource.Styleable.Toolbar_collapseContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_collapseIcon = global::mederly.Droid.Resource.Styleable.Toolbar_collapseIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_contentInsetEnd = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_contentInsetEndWithActions = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetEndWithActions; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_contentInsetLeft = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetLeft; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_contentInsetRight = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetRight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_contentInsetStart = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_contentInsetStartWithNavigation = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetStartWithNavigation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_logo = global::mederly.Droid.Resource.Styleable.Toolbar_logo; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_logoDescription = global::mederly.Droid.Resource.Styleable.Toolbar_logoDescription; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_maxButtonHeight = global::mederly.Droid.Resource.Styleable.Toolbar_maxButtonHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_menu = global::mederly.Droid.Resource.Styleable.Toolbar_menu; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_navigationContentDescription = global::mederly.Droid.Resource.Styleable.Toolbar_navigationContentDescription; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_navigationIcon = global::mederly.Droid.Resource.Styleable.Toolbar_navigationIcon; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_popupTheme = global::mederly.Droid.Resource.Styleable.Toolbar_popupTheme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_subtitle = global::mederly.Droid.Resource.Styleable.Toolbar_subtitle; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_subtitleTextAppearance = global::mederly.Droid.Resource.Styleable.Toolbar_subtitleTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_subtitleTextColor = global::mederly.Droid.Resource.Styleable.Toolbar_subtitleTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_title = global::mederly.Droid.Resource.Styleable.Toolbar_title; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_titleMargin = global::mederly.Droid.Resource.Styleable.Toolbar_titleMargin; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_titleMarginBottom = global::mederly.Droid.Resource.Styleable.Toolbar_titleMarginBottom; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_titleMarginEnd = global::mederly.Droid.Resource.Styleable.Toolbar_titleMarginEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_titleMargins = global::mederly.Droid.Resource.Styleable.Toolbar_titleMargins; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_titleMarginStart = global::mederly.Droid.Resource.Styleable.Toolbar_titleMarginStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_titleMarginTop = global::mederly.Droid.Resource.Styleable.Toolbar_titleMarginTop; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_titleTextAppearance = global::mederly.Droid.Resource.Styleable.Toolbar_titleTextAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Toolbar_titleTextColor = global::mederly.Droid.Resource.Styleable.Toolbar_titleTextColor; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Tooltip = global::mederly.Droid.Resource.Styleable.Tooltip; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Tooltip_android_layout_margin = global::mederly.Droid.Resource.Styleable.Tooltip_android_layout_margin; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Tooltip_android_minHeight = global::mederly.Droid.Resource.Styleable.Tooltip_android_minHeight; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Tooltip_android_minWidth = global::mederly.Droid.Resource.Styleable.Tooltip_android_minWidth; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Tooltip_android_padding = global::mederly.Droid.Resource.Styleable.Tooltip_android_padding; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Tooltip_android_text = global::mederly.Droid.Resource.Styleable.Tooltip_android_text; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Tooltip_android_textAppearance = global::mederly.Droid.Resource.Styleable.Tooltip_android_textAppearance; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.Tooltip_backgroundTint = global::mederly.Droid.Resource.Styleable.Tooltip_backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.View = global::mederly.Droid.Resource.Styleable.View; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewBackgroundHelper = global::mederly.Droid.Resource.Styleable.ViewBackgroundHelper; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewBackgroundHelper_android_background = global::mederly.Droid.Resource.Styleable.ViewBackgroundHelper_android_background; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewBackgroundHelper_backgroundTint = global::mederly.Droid.Resource.Styleable.ViewBackgroundHelper_backgroundTint; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewBackgroundHelper_backgroundTintMode = global::mederly.Droid.Resource.Styleable.ViewBackgroundHelper_backgroundTintMode; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewPager2 = global::mederly.Droid.Resource.Styleable.ViewPager2; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewPager2_android_orientation = global::mederly.Droid.Resource.Styleable.ViewPager2_android_orientation; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewStubCompat = global::mederly.Droid.Resource.Styleable.ViewStubCompat; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewStubCompat_android_id = global::mederly.Droid.Resource.Styleable.ViewStubCompat_android_id; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewStubCompat_android_inflatedId = global::mederly.Droid.Resource.Styleable.ViewStubCompat_android_inflatedId; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.ViewStubCompat_android_layout = global::mederly.Droid.Resource.Styleable.ViewStubCompat_android_layout; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.View_android_focusable = global::mederly.Droid.Resource.Styleable.View_android_focusable; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.View_android_theme = global::mederly.Droid.Resource.Styleable.View_android_theme; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.View_paddingEnd = global::mederly.Droid.Resource.Styleable.View_paddingEnd; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.View_paddingStart = global::mederly.Droid.Resource.Styleable.View_paddingStart; + global::Xamarin.Forms.Platform.Android.Resource.Styleable.View_theme = global::mederly.Droid.Resource.Styleable.View_theme; + global::Xamarin.Forms.Platform.Android.Resource.Xml.standalone_badge = global::mederly.Droid.Resource.Xml.standalone_badge; + global::Xamarin.Forms.Platform.Android.Resource.Xml.standalone_badge_gravity_bottom_end = global::mederly.Droid.Resource.Xml.standalone_badge_gravity_bottom_end; + global::Xamarin.Forms.Platform.Android.Resource.Xml.standalone_badge_gravity_bottom_start = global::mederly.Droid.Resource.Xml.standalone_badge_gravity_bottom_start; + global::Xamarin.Forms.Platform.Android.Resource.Xml.standalone_badge_gravity_top_start = global::mederly.Droid.Resource.Xml.standalone_badge_gravity_top_start; + global::Xamarin.Forms.Platform.Android.Resource.Xml.standalone_badge_offset = global::mederly.Droid.Resource.Xml.standalone_badge_offset; + global::Xamarin.Forms.Platform.Resource.Animation.abc_fade_in = global::mederly.Droid.Resource.Animation.abc_fade_in; + global::Xamarin.Forms.Platform.Resource.Animation.abc_fade_out = global::mederly.Droid.Resource.Animation.abc_fade_out; + global::Xamarin.Forms.Platform.Resource.Animation.abc_grow_fade_in_from_bottom = global::mederly.Droid.Resource.Animation.abc_grow_fade_in_from_bottom; + global::Xamarin.Forms.Platform.Resource.Animation.abc_popup_enter = global::mederly.Droid.Resource.Animation.abc_popup_enter; + global::Xamarin.Forms.Platform.Resource.Animation.abc_popup_exit = global::mederly.Droid.Resource.Animation.abc_popup_exit; + global::Xamarin.Forms.Platform.Resource.Animation.abc_shrink_fade_out_from_bottom = global::mederly.Droid.Resource.Animation.abc_shrink_fade_out_from_bottom; + global::Xamarin.Forms.Platform.Resource.Animation.abc_slide_in_bottom = global::mederly.Droid.Resource.Animation.abc_slide_in_bottom; + global::Xamarin.Forms.Platform.Resource.Animation.abc_slide_in_top = global::mederly.Droid.Resource.Animation.abc_slide_in_top; + global::Xamarin.Forms.Platform.Resource.Animation.abc_slide_out_bottom = global::mederly.Droid.Resource.Animation.abc_slide_out_bottom; + global::Xamarin.Forms.Platform.Resource.Animation.abc_slide_out_top = global::mederly.Droid.Resource.Animation.abc_slide_out_top; + global::Xamarin.Forms.Platform.Resource.Animation.abc_tooltip_enter = global::mederly.Droid.Resource.Animation.abc_tooltip_enter; + global::Xamarin.Forms.Platform.Resource.Animation.abc_tooltip_exit = global::mederly.Droid.Resource.Animation.abc_tooltip_exit; + global::Xamarin.Forms.Platform.Resource.Animation.btn_checkbox_to_checked_box_inner_merged_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_checked_box_inner_merged_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_checkbox_to_checked_box_outer_merged_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_checked_box_outer_merged_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_checkbox_to_checked_icon_null_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_checked_icon_null_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_checkbox_to_unchecked_box_inner_merged_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_unchecked_box_inner_merged_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_checkbox_to_unchecked_check_path_merged_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_unchecked_check_path_merged_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_checkbox_to_unchecked_icon_null_animation = global::mederly.Droid.Resource.Animation.btn_checkbox_to_unchecked_icon_null_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_radio_to_off_mtrl_dot_group_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_off_mtrl_dot_group_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_path_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_path_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_radio_to_on_mtrl_dot_group_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_on_mtrl_dot_group_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_animation; + global::Xamarin.Forms.Platform.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_path_animation = global::mederly.Droid.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_path_animation; + global::Xamarin.Forms.Platform.Resource.Animation.design_bottom_sheet_slide_in = global::mederly.Droid.Resource.Animation.design_bottom_sheet_slide_in; + global::Xamarin.Forms.Platform.Resource.Animation.design_bottom_sheet_slide_out = global::mederly.Droid.Resource.Animation.design_bottom_sheet_slide_out; + global::Xamarin.Forms.Platform.Resource.Animation.design_snackbar_in = global::mederly.Droid.Resource.Animation.design_snackbar_in; + global::Xamarin.Forms.Platform.Resource.Animation.design_snackbar_out = global::mederly.Droid.Resource.Animation.design_snackbar_out; + global::Xamarin.Forms.Platform.Resource.Animation.EnterFromLeft = global::mederly.Droid.Resource.Animation.EnterFromLeft; + global::Xamarin.Forms.Platform.Resource.Animation.EnterFromRight = global::mederly.Droid.Resource.Animation.EnterFromRight; + global::Xamarin.Forms.Platform.Resource.Animation.ExitToLeft = global::mederly.Droid.Resource.Animation.ExitToLeft; + global::Xamarin.Forms.Platform.Resource.Animation.ExitToRight = global::mederly.Droid.Resource.Animation.ExitToRight; + global::Xamarin.Forms.Platform.Resource.Animation.fragment_close_enter = global::mederly.Droid.Resource.Animation.fragment_close_enter; + global::Xamarin.Forms.Platform.Resource.Animation.fragment_close_exit = global::mederly.Droid.Resource.Animation.fragment_close_exit; + global::Xamarin.Forms.Platform.Resource.Animation.fragment_fade_enter = global::mederly.Droid.Resource.Animation.fragment_fade_enter; + global::Xamarin.Forms.Platform.Resource.Animation.fragment_fade_exit = global::mederly.Droid.Resource.Animation.fragment_fade_exit; + global::Xamarin.Forms.Platform.Resource.Animation.fragment_fast_out_extra_slow_in = global::mederly.Droid.Resource.Animation.fragment_fast_out_extra_slow_in; + global::Xamarin.Forms.Platform.Resource.Animation.fragment_open_enter = global::mederly.Droid.Resource.Animation.fragment_open_enter; + global::Xamarin.Forms.Platform.Resource.Animation.fragment_open_exit = global::mederly.Droid.Resource.Animation.fragment_open_exit; + global::Xamarin.Forms.Platform.Resource.Animation.mtrl_bottom_sheet_slide_in = global::mederly.Droid.Resource.Animation.mtrl_bottom_sheet_slide_in; + global::Xamarin.Forms.Platform.Resource.Animation.mtrl_bottom_sheet_slide_out = global::mederly.Droid.Resource.Animation.mtrl_bottom_sheet_slide_out; + global::Xamarin.Forms.Platform.Resource.Animation.mtrl_card_lowers_interpolator = global::mederly.Droid.Resource.Animation.mtrl_card_lowers_interpolator; + global::Xamarin.Forms.Platform.Resource.Animator.design_appbar_state_list_animator = global::mederly.Droid.Resource.Animator.design_appbar_state_list_animator; + global::Xamarin.Forms.Platform.Resource.Animator.design_fab_hide_motion_spec = global::mederly.Droid.Resource.Animator.design_fab_hide_motion_spec; + global::Xamarin.Forms.Platform.Resource.Animator.design_fab_show_motion_spec = global::mederly.Droid.Resource.Animator.design_fab_show_motion_spec; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_btn_state_list_anim = global::mederly.Droid.Resource.Animator.mtrl_btn_state_list_anim; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_btn_unelevated_state_list_anim = global::mederly.Droid.Resource.Animator.mtrl_btn_unelevated_state_list_anim; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_card_state_list_anim = global::mederly.Droid.Resource.Animator.mtrl_card_state_list_anim; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_chip_state_list_anim = global::mederly.Droid.Resource.Animator.mtrl_chip_state_list_anim; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_extended_fab_change_size_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_extended_fab_change_size_motion_spec; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_extended_fab_hide_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_extended_fab_hide_motion_spec; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_extended_fab_show_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_extended_fab_show_motion_spec; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_extended_fab_state_list_animator = global::mederly.Droid.Resource.Animator.mtrl_extended_fab_state_list_animator; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_fab_hide_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_fab_hide_motion_spec; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_fab_show_motion_spec = global::mederly.Droid.Resource.Animator.mtrl_fab_show_motion_spec; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_fab_transformation_sheet_collapse_spec = global::mederly.Droid.Resource.Animator.mtrl_fab_transformation_sheet_collapse_spec; + global::Xamarin.Forms.Platform.Resource.Animator.mtrl_fab_transformation_sheet_expand_spec = global::mederly.Droid.Resource.Animator.mtrl_fab_transformation_sheet_expand_spec; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarDivider = global::mederly.Droid.Resource.Attribute.actionBarDivider; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarItemBackground = global::mederly.Droid.Resource.Attribute.actionBarItemBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarPopupTheme = global::mederly.Droid.Resource.Attribute.actionBarPopupTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarSize = global::mederly.Droid.Resource.Attribute.actionBarSize; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarSplitStyle = global::mederly.Droid.Resource.Attribute.actionBarSplitStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarStyle = global::mederly.Droid.Resource.Attribute.actionBarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarTabBarStyle = global::mederly.Droid.Resource.Attribute.actionBarTabBarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarTabStyle = global::mederly.Droid.Resource.Attribute.actionBarTabStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarTabTextStyle = global::mederly.Droid.Resource.Attribute.actionBarTabTextStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarTheme = global::mederly.Droid.Resource.Attribute.actionBarTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.actionBarWidgetTheme = global::mederly.Droid.Resource.Attribute.actionBarWidgetTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.actionButtonStyle = global::mederly.Droid.Resource.Attribute.actionButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionDropDownStyle = global::mederly.Droid.Resource.Attribute.actionDropDownStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionLayout = global::mederly.Droid.Resource.Attribute.actionLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.actionMenuTextAppearance = global::mederly.Droid.Resource.Attribute.actionMenuTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.actionMenuTextColor = global::mederly.Droid.Resource.Attribute.actionMenuTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeBackground = global::mederly.Droid.Resource.Attribute.actionModeBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeCloseButtonStyle = global::mederly.Droid.Resource.Attribute.actionModeCloseButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeCloseDrawable = global::mederly.Droid.Resource.Attribute.actionModeCloseDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeCopyDrawable = global::mederly.Droid.Resource.Attribute.actionModeCopyDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeCutDrawable = global::mederly.Droid.Resource.Attribute.actionModeCutDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeFindDrawable = global::mederly.Droid.Resource.Attribute.actionModeFindDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModePasteDrawable = global::mederly.Droid.Resource.Attribute.actionModePasteDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModePopupWindowStyle = global::mederly.Droid.Resource.Attribute.actionModePopupWindowStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeSelectAllDrawable = global::mederly.Droid.Resource.Attribute.actionModeSelectAllDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeShareDrawable = global::mederly.Droid.Resource.Attribute.actionModeShareDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeSplitBackground = global::mederly.Droid.Resource.Attribute.actionModeSplitBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeStyle = global::mederly.Droid.Resource.Attribute.actionModeStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionModeWebSearchDrawable = global::mederly.Droid.Resource.Attribute.actionModeWebSearchDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.actionOverflowButtonStyle = global::mederly.Droid.Resource.Attribute.actionOverflowButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionOverflowMenuStyle = global::mederly.Droid.Resource.Attribute.actionOverflowMenuStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.actionProviderClass = global::mederly.Droid.Resource.Attribute.actionProviderClass; + global::Xamarin.Forms.Platform.Resource.Attribute.actionTextColorAlpha = global::mederly.Droid.Resource.Attribute.actionTextColorAlpha; + global::Xamarin.Forms.Platform.Resource.Attribute.actionViewClass = global::mederly.Droid.Resource.Attribute.actionViewClass; + global::Xamarin.Forms.Platform.Resource.Attribute.activityChooserViewStyle = global::mederly.Droid.Resource.Attribute.activityChooserViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.alertDialogButtonGroupStyle = global::mederly.Droid.Resource.Attribute.alertDialogButtonGroupStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.alertDialogCenterButtons = global::mederly.Droid.Resource.Attribute.alertDialogCenterButtons; + global::Xamarin.Forms.Platform.Resource.Attribute.alertDialogStyle = global::mederly.Droid.Resource.Attribute.alertDialogStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.alertDialogTheme = global::mederly.Droid.Resource.Attribute.alertDialogTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.allowStacking = global::mederly.Droid.Resource.Attribute.allowStacking; + global::Xamarin.Forms.Platform.Resource.Attribute.alpha = global::mederly.Droid.Resource.Attribute.alpha; + global::Xamarin.Forms.Platform.Resource.Attribute.alphabeticModifiers = global::mederly.Droid.Resource.Attribute.alphabeticModifiers; + global::Xamarin.Forms.Platform.Resource.Attribute.animationMode = global::mederly.Droid.Resource.Attribute.animationMode; + global::Xamarin.Forms.Platform.Resource.Attribute.appBarLayoutStyle = global::mederly.Droid.Resource.Attribute.appBarLayoutStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.arrowHeadLength = global::mederly.Droid.Resource.Attribute.arrowHeadLength; + global::Xamarin.Forms.Platform.Resource.Attribute.arrowShaftLength = global::mederly.Droid.Resource.Attribute.arrowShaftLength; + global::Xamarin.Forms.Platform.Resource.Attribute.autoCompleteTextViewStyle = global::mederly.Droid.Resource.Attribute.autoCompleteTextViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.autoSizeMaxTextSize = global::mederly.Droid.Resource.Attribute.autoSizeMaxTextSize; + global::Xamarin.Forms.Platform.Resource.Attribute.autoSizeMinTextSize = global::mederly.Droid.Resource.Attribute.autoSizeMinTextSize; + global::Xamarin.Forms.Platform.Resource.Attribute.autoSizePresetSizes = global::mederly.Droid.Resource.Attribute.autoSizePresetSizes; + global::Xamarin.Forms.Platform.Resource.Attribute.autoSizeStepGranularity = global::mederly.Droid.Resource.Attribute.autoSizeStepGranularity; + global::Xamarin.Forms.Platform.Resource.Attribute.autoSizeTextType = global::mederly.Droid.Resource.Attribute.autoSizeTextType; + global::Xamarin.Forms.Platform.Resource.Attribute.background = global::mederly.Droid.Resource.Attribute.background; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundColor = global::mederly.Droid.Resource.Attribute.backgroundColor; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundInsetBottom = global::mederly.Droid.Resource.Attribute.backgroundInsetBottom; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundInsetEnd = global::mederly.Droid.Resource.Attribute.backgroundInsetEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundInsetStart = global::mederly.Droid.Resource.Attribute.backgroundInsetStart; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundInsetTop = global::mederly.Droid.Resource.Attribute.backgroundInsetTop; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundOverlayColorAlpha = global::mederly.Droid.Resource.Attribute.backgroundOverlayColorAlpha; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundSplit = global::mederly.Droid.Resource.Attribute.backgroundSplit; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundStacked = global::mederly.Droid.Resource.Attribute.backgroundStacked; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundTint = global::mederly.Droid.Resource.Attribute.backgroundTint; + global::Xamarin.Forms.Platform.Resource.Attribute.backgroundTintMode = global::mederly.Droid.Resource.Attribute.backgroundTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.badgeGravity = global::mederly.Droid.Resource.Attribute.badgeGravity; + global::Xamarin.Forms.Platform.Resource.Attribute.badgeStyle = global::mederly.Droid.Resource.Attribute.badgeStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.badgeTextColor = global::mederly.Droid.Resource.Attribute.badgeTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.barLength = global::mederly.Droid.Resource.Attribute.barLength; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_autoHide = global::mederly.Droid.Resource.Attribute.behavior_autoHide; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_autoShrink = global::mederly.Droid.Resource.Attribute.behavior_autoShrink; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_draggable = global::mederly.Droid.Resource.Attribute.behavior_draggable; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_expandedOffset = global::mederly.Droid.Resource.Attribute.behavior_expandedOffset; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_fitToContents = global::mederly.Droid.Resource.Attribute.behavior_fitToContents; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_halfExpandedRatio = global::mederly.Droid.Resource.Attribute.behavior_halfExpandedRatio; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_hideable = global::mederly.Droid.Resource.Attribute.behavior_hideable; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_overlapTop = global::mederly.Droid.Resource.Attribute.behavior_overlapTop; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_peekHeight = global::mederly.Droid.Resource.Attribute.behavior_peekHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_saveFlags = global::mederly.Droid.Resource.Attribute.behavior_saveFlags; + global::Xamarin.Forms.Platform.Resource.Attribute.behavior_skipCollapsed = global::mederly.Droid.Resource.Attribute.behavior_skipCollapsed; + global::Xamarin.Forms.Platform.Resource.Attribute.borderlessButtonStyle = global::mederly.Droid.Resource.Attribute.borderlessButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.borderWidth = global::mederly.Droid.Resource.Attribute.borderWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.bottomAppBarStyle = global::mederly.Droid.Resource.Attribute.bottomAppBarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.bottomNavigationStyle = global::mederly.Droid.Resource.Attribute.bottomNavigationStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.bottomSheetDialogTheme = global::mederly.Droid.Resource.Attribute.bottomSheetDialogTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.bottomSheetStyle = global::mederly.Droid.Resource.Attribute.bottomSheetStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.boxBackgroundColor = global::mederly.Droid.Resource.Attribute.boxBackgroundColor; + global::Xamarin.Forms.Platform.Resource.Attribute.boxBackgroundMode = global::mederly.Droid.Resource.Attribute.boxBackgroundMode; + global::Xamarin.Forms.Platform.Resource.Attribute.boxCollapsedPaddingTop = global::mederly.Droid.Resource.Attribute.boxCollapsedPaddingTop; + global::Xamarin.Forms.Platform.Resource.Attribute.boxCornerRadiusBottomEnd = global::mederly.Droid.Resource.Attribute.boxCornerRadiusBottomEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.boxCornerRadiusBottomStart = global::mederly.Droid.Resource.Attribute.boxCornerRadiusBottomStart; + global::Xamarin.Forms.Platform.Resource.Attribute.boxCornerRadiusTopEnd = global::mederly.Droid.Resource.Attribute.boxCornerRadiusTopEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.boxCornerRadiusTopStart = global::mederly.Droid.Resource.Attribute.boxCornerRadiusTopStart; + global::Xamarin.Forms.Platform.Resource.Attribute.boxStrokeColor = global::mederly.Droid.Resource.Attribute.boxStrokeColor; + global::Xamarin.Forms.Platform.Resource.Attribute.boxStrokeErrorColor = global::mederly.Droid.Resource.Attribute.boxStrokeErrorColor; + global::Xamarin.Forms.Platform.Resource.Attribute.boxStrokeWidth = global::mederly.Droid.Resource.Attribute.boxStrokeWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.boxStrokeWidthFocused = global::mederly.Droid.Resource.Attribute.boxStrokeWidthFocused; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonBarButtonStyle = global::mederly.Droid.Resource.Attribute.buttonBarButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonBarNegativeButtonStyle = global::mederly.Droid.Resource.Attribute.buttonBarNegativeButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonBarNeutralButtonStyle = global::mederly.Droid.Resource.Attribute.buttonBarNeutralButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonBarPositiveButtonStyle = global::mederly.Droid.Resource.Attribute.buttonBarPositiveButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonBarStyle = global::mederly.Droid.Resource.Attribute.buttonBarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonCompat = global::mederly.Droid.Resource.Attribute.buttonCompat; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonGravity = global::mederly.Droid.Resource.Attribute.buttonGravity; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonIconDimen = global::mederly.Droid.Resource.Attribute.buttonIconDimen; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonPanelSideLayout = global::mederly.Droid.Resource.Attribute.buttonPanelSideLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonStyle = global::mederly.Droid.Resource.Attribute.buttonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonStyleSmall = global::mederly.Droid.Resource.Attribute.buttonStyleSmall; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonTint = global::mederly.Droid.Resource.Attribute.buttonTint; + global::Xamarin.Forms.Platform.Resource.Attribute.buttonTintMode = global::mederly.Droid.Resource.Attribute.buttonTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.cardBackgroundColor = global::mederly.Droid.Resource.Attribute.cardBackgroundColor; + global::Xamarin.Forms.Platform.Resource.Attribute.cardCornerRadius = global::mederly.Droid.Resource.Attribute.cardCornerRadius; + global::Xamarin.Forms.Platform.Resource.Attribute.cardElevation = global::mederly.Droid.Resource.Attribute.cardElevation; + global::Xamarin.Forms.Platform.Resource.Attribute.cardForegroundColor = global::mederly.Droid.Resource.Attribute.cardForegroundColor; + global::Xamarin.Forms.Platform.Resource.Attribute.cardMaxElevation = global::mederly.Droid.Resource.Attribute.cardMaxElevation; + global::Xamarin.Forms.Platform.Resource.Attribute.cardPreventCornerOverlap = global::mederly.Droid.Resource.Attribute.cardPreventCornerOverlap; + global::Xamarin.Forms.Platform.Resource.Attribute.cardUseCompatPadding = global::mederly.Droid.Resource.Attribute.cardUseCompatPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.cardViewStyle = global::mederly.Droid.Resource.Attribute.cardViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.checkboxStyle = global::mederly.Droid.Resource.Attribute.checkboxStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.checkedButton = global::mederly.Droid.Resource.Attribute.checkedButton; + global::Xamarin.Forms.Platform.Resource.Attribute.checkedChip = global::mederly.Droid.Resource.Attribute.checkedChip; + global::Xamarin.Forms.Platform.Resource.Attribute.checkedIcon = global::mederly.Droid.Resource.Attribute.checkedIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.checkedIconEnabled = global::mederly.Droid.Resource.Attribute.checkedIconEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.checkedIconTint = global::mederly.Droid.Resource.Attribute.checkedIconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.checkedIconVisible = global::mederly.Droid.Resource.Attribute.checkedIconVisible; + global::Xamarin.Forms.Platform.Resource.Attribute.checkedTextViewStyle = global::mederly.Droid.Resource.Attribute.checkedTextViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.chipBackgroundColor = global::mederly.Droid.Resource.Attribute.chipBackgroundColor; + global::Xamarin.Forms.Platform.Resource.Attribute.chipCornerRadius = global::mederly.Droid.Resource.Attribute.chipCornerRadius; + global::Xamarin.Forms.Platform.Resource.Attribute.chipEndPadding = global::mederly.Droid.Resource.Attribute.chipEndPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.chipGroupStyle = global::mederly.Droid.Resource.Attribute.chipGroupStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.chipIcon = global::mederly.Droid.Resource.Attribute.chipIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.chipIconEnabled = global::mederly.Droid.Resource.Attribute.chipIconEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.chipIconSize = global::mederly.Droid.Resource.Attribute.chipIconSize; + global::Xamarin.Forms.Platform.Resource.Attribute.chipIconTint = global::mederly.Droid.Resource.Attribute.chipIconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.chipIconVisible = global::mederly.Droid.Resource.Attribute.chipIconVisible; + global::Xamarin.Forms.Platform.Resource.Attribute.chipMinHeight = global::mederly.Droid.Resource.Attribute.chipMinHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.chipMinTouchTargetSize = global::mederly.Droid.Resource.Attribute.chipMinTouchTargetSize; + global::Xamarin.Forms.Platform.Resource.Attribute.chipSpacing = global::mederly.Droid.Resource.Attribute.chipSpacing; + global::Xamarin.Forms.Platform.Resource.Attribute.chipSpacingHorizontal = global::mederly.Droid.Resource.Attribute.chipSpacingHorizontal; + global::Xamarin.Forms.Platform.Resource.Attribute.chipSpacingVertical = global::mederly.Droid.Resource.Attribute.chipSpacingVertical; + global::Xamarin.Forms.Platform.Resource.Attribute.chipStandaloneStyle = global::mederly.Droid.Resource.Attribute.chipStandaloneStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.chipStartPadding = global::mederly.Droid.Resource.Attribute.chipStartPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.chipStrokeColor = global::mederly.Droid.Resource.Attribute.chipStrokeColor; + global::Xamarin.Forms.Platform.Resource.Attribute.chipStrokeWidth = global::mederly.Droid.Resource.Attribute.chipStrokeWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.chipStyle = global::mederly.Droid.Resource.Attribute.chipStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.chipSurfaceColor = global::mederly.Droid.Resource.Attribute.chipSurfaceColor; + global::Xamarin.Forms.Platform.Resource.Attribute.closeIcon = global::mederly.Droid.Resource.Attribute.closeIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.closeIconEnabled = global::mederly.Droid.Resource.Attribute.closeIconEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.closeIconEndPadding = global::mederly.Droid.Resource.Attribute.closeIconEndPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.closeIconSize = global::mederly.Droid.Resource.Attribute.closeIconSize; + global::Xamarin.Forms.Platform.Resource.Attribute.closeIconStartPadding = global::mederly.Droid.Resource.Attribute.closeIconStartPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.closeIconTint = global::mederly.Droid.Resource.Attribute.closeIconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.closeIconVisible = global::mederly.Droid.Resource.Attribute.closeIconVisible; + global::Xamarin.Forms.Platform.Resource.Attribute.closeItemLayout = global::mederly.Droid.Resource.Attribute.closeItemLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.collapseContentDescription = global::mederly.Droid.Resource.Attribute.collapseContentDescription; + global::Xamarin.Forms.Platform.Resource.Attribute.collapsedTitleGravity = global::mederly.Droid.Resource.Attribute.collapsedTitleGravity; + global::Xamarin.Forms.Platform.Resource.Attribute.collapsedTitleTextAppearance = global::mederly.Droid.Resource.Attribute.collapsedTitleTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.collapseIcon = global::mederly.Droid.Resource.Attribute.collapseIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.collectionViewStyle = global::mederly.Droid.Resource.Attribute.collectionViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.color = global::mederly.Droid.Resource.Attribute.color; + global::Xamarin.Forms.Platform.Resource.Attribute.colorAccent = global::mederly.Droid.Resource.Attribute.colorAccent; + global::Xamarin.Forms.Platform.Resource.Attribute.colorBackgroundFloating = global::mederly.Droid.Resource.Attribute.colorBackgroundFloating; + global::Xamarin.Forms.Platform.Resource.Attribute.colorButtonNormal = global::mederly.Droid.Resource.Attribute.colorButtonNormal; + global::Xamarin.Forms.Platform.Resource.Attribute.colorControlActivated = global::mederly.Droid.Resource.Attribute.colorControlActivated; + global::Xamarin.Forms.Platform.Resource.Attribute.colorControlHighlight = global::mederly.Droid.Resource.Attribute.colorControlHighlight; + global::Xamarin.Forms.Platform.Resource.Attribute.colorControlNormal = global::mederly.Droid.Resource.Attribute.colorControlNormal; + global::Xamarin.Forms.Platform.Resource.Attribute.colorError = global::mederly.Droid.Resource.Attribute.colorError; + global::Xamarin.Forms.Platform.Resource.Attribute.colorOnBackground = global::mederly.Droid.Resource.Attribute.colorOnBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.colorOnError = global::mederly.Droid.Resource.Attribute.colorOnError; + global::Xamarin.Forms.Platform.Resource.Attribute.colorOnPrimary = global::mederly.Droid.Resource.Attribute.colorOnPrimary; + global::Xamarin.Forms.Platform.Resource.Attribute.colorOnPrimarySurface = global::mederly.Droid.Resource.Attribute.colorOnPrimarySurface; + global::Xamarin.Forms.Platform.Resource.Attribute.colorOnSecondary = global::mederly.Droid.Resource.Attribute.colorOnSecondary; + global::Xamarin.Forms.Platform.Resource.Attribute.colorOnSurface = global::mederly.Droid.Resource.Attribute.colorOnSurface; + global::Xamarin.Forms.Platform.Resource.Attribute.colorPrimary = global::mederly.Droid.Resource.Attribute.colorPrimary; + global::Xamarin.Forms.Platform.Resource.Attribute.colorPrimaryDark = global::mederly.Droid.Resource.Attribute.colorPrimaryDark; + global::Xamarin.Forms.Platform.Resource.Attribute.colorPrimarySurface = global::mederly.Droid.Resource.Attribute.colorPrimarySurface; + global::Xamarin.Forms.Platform.Resource.Attribute.colorPrimaryVariant = global::mederly.Droid.Resource.Attribute.colorPrimaryVariant; + global::Xamarin.Forms.Platform.Resource.Attribute.colorSecondary = global::mederly.Droid.Resource.Attribute.colorSecondary; + global::Xamarin.Forms.Platform.Resource.Attribute.colorSecondaryVariant = global::mederly.Droid.Resource.Attribute.colorSecondaryVariant; + global::Xamarin.Forms.Platform.Resource.Attribute.colorSurface = global::mederly.Droid.Resource.Attribute.colorSurface; + global::Xamarin.Forms.Platform.Resource.Attribute.colorSwitchThumbNormal = global::mederly.Droid.Resource.Attribute.colorSwitchThumbNormal; + global::Xamarin.Forms.Platform.Resource.Attribute.commitIcon = global::mederly.Droid.Resource.Attribute.commitIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.contentDescription = global::mederly.Droid.Resource.Attribute.contentDescription; + global::Xamarin.Forms.Platform.Resource.Attribute.contentInsetEnd = global::mederly.Droid.Resource.Attribute.contentInsetEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.contentInsetEndWithActions = global::mederly.Droid.Resource.Attribute.contentInsetEndWithActions; + global::Xamarin.Forms.Platform.Resource.Attribute.contentInsetLeft = global::mederly.Droid.Resource.Attribute.contentInsetLeft; + global::Xamarin.Forms.Platform.Resource.Attribute.contentInsetRight = global::mederly.Droid.Resource.Attribute.contentInsetRight; + global::Xamarin.Forms.Platform.Resource.Attribute.contentInsetStart = global::mederly.Droid.Resource.Attribute.contentInsetStart; + global::Xamarin.Forms.Platform.Resource.Attribute.contentInsetStartWithNavigation = global::mederly.Droid.Resource.Attribute.contentInsetStartWithNavigation; + global::Xamarin.Forms.Platform.Resource.Attribute.contentPadding = global::mederly.Droid.Resource.Attribute.contentPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.contentPaddingBottom = global::mederly.Droid.Resource.Attribute.contentPaddingBottom; + global::Xamarin.Forms.Platform.Resource.Attribute.contentPaddingLeft = global::mederly.Droid.Resource.Attribute.contentPaddingLeft; + global::Xamarin.Forms.Platform.Resource.Attribute.contentPaddingRight = global::mederly.Droid.Resource.Attribute.contentPaddingRight; + global::Xamarin.Forms.Platform.Resource.Attribute.contentPaddingTop = global::mederly.Droid.Resource.Attribute.contentPaddingTop; + global::Xamarin.Forms.Platform.Resource.Attribute.contentScrim = global::mederly.Droid.Resource.Attribute.contentScrim; + global::Xamarin.Forms.Platform.Resource.Attribute.controlBackground = global::mederly.Droid.Resource.Attribute.controlBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.coordinatorLayoutStyle = global::mederly.Droid.Resource.Attribute.coordinatorLayoutStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerFamily = global::mederly.Droid.Resource.Attribute.cornerFamily; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerFamilyBottomLeft = global::mederly.Droid.Resource.Attribute.cornerFamilyBottomLeft; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerFamilyBottomRight = global::mederly.Droid.Resource.Attribute.cornerFamilyBottomRight; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerFamilyTopLeft = global::mederly.Droid.Resource.Attribute.cornerFamilyTopLeft; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerFamilyTopRight = global::mederly.Droid.Resource.Attribute.cornerFamilyTopRight; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerRadius = global::mederly.Droid.Resource.Attribute.cornerRadius; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerSize = global::mederly.Droid.Resource.Attribute.cornerSize; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerSizeBottomLeft = global::mederly.Droid.Resource.Attribute.cornerSizeBottomLeft; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerSizeBottomRight = global::mederly.Droid.Resource.Attribute.cornerSizeBottomRight; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerSizeTopLeft = global::mederly.Droid.Resource.Attribute.cornerSizeTopLeft; + global::Xamarin.Forms.Platform.Resource.Attribute.cornerSizeTopRight = global::mederly.Droid.Resource.Attribute.cornerSizeTopRight; + global::Xamarin.Forms.Platform.Resource.Attribute.counterEnabled = global::mederly.Droid.Resource.Attribute.counterEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.counterMaxLength = global::mederly.Droid.Resource.Attribute.counterMaxLength; + global::Xamarin.Forms.Platform.Resource.Attribute.counterOverflowTextAppearance = global::mederly.Droid.Resource.Attribute.counterOverflowTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.counterOverflowTextColor = global::mederly.Droid.Resource.Attribute.counterOverflowTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.counterTextAppearance = global::mederly.Droid.Resource.Attribute.counterTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.counterTextColor = global::mederly.Droid.Resource.Attribute.counterTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.customNavigationLayout = global::mederly.Droid.Resource.Attribute.customNavigationLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.dayInvalidStyle = global::mederly.Droid.Resource.Attribute.dayInvalidStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.daySelectedStyle = global::mederly.Droid.Resource.Attribute.daySelectedStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.dayStyle = global::mederly.Droid.Resource.Attribute.dayStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.dayTodayStyle = global::mederly.Droid.Resource.Attribute.dayTodayStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.defaultQueryHint = global::mederly.Droid.Resource.Attribute.defaultQueryHint; + global::Xamarin.Forms.Platform.Resource.Attribute.dialogCornerRadius = global::mederly.Droid.Resource.Attribute.dialogCornerRadius; + global::Xamarin.Forms.Platform.Resource.Attribute.dialogPreferredPadding = global::mederly.Droid.Resource.Attribute.dialogPreferredPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.dialogTheme = global::mederly.Droid.Resource.Attribute.dialogTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.displayOptions = global::mederly.Droid.Resource.Attribute.displayOptions; + global::Xamarin.Forms.Platform.Resource.Attribute.divider = global::mederly.Droid.Resource.Attribute.divider; + global::Xamarin.Forms.Platform.Resource.Attribute.dividerHorizontal = global::mederly.Droid.Resource.Attribute.dividerHorizontal; + global::Xamarin.Forms.Platform.Resource.Attribute.dividerPadding = global::mederly.Droid.Resource.Attribute.dividerPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.dividerVertical = global::mederly.Droid.Resource.Attribute.dividerVertical; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableBottomCompat = global::mederly.Droid.Resource.Attribute.drawableBottomCompat; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableEndCompat = global::mederly.Droid.Resource.Attribute.drawableEndCompat; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableLeftCompat = global::mederly.Droid.Resource.Attribute.drawableLeftCompat; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableRightCompat = global::mederly.Droid.Resource.Attribute.drawableRightCompat; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableSize = global::mederly.Droid.Resource.Attribute.drawableSize; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableStartCompat = global::mederly.Droid.Resource.Attribute.drawableStartCompat; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableTint = global::mederly.Droid.Resource.Attribute.drawableTint; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableTintMode = global::mederly.Droid.Resource.Attribute.drawableTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.drawableTopCompat = global::mederly.Droid.Resource.Attribute.drawableTopCompat; + global::Xamarin.Forms.Platform.Resource.Attribute.drawerArrowStyle = global::mederly.Droid.Resource.Attribute.drawerArrowStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.drawerLayoutStyle = global::mederly.Droid.Resource.Attribute.drawerLayoutStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.dropdownListPreferredItemHeight = global::mederly.Droid.Resource.Attribute.dropdownListPreferredItemHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.dropDownListViewStyle = global::mederly.Droid.Resource.Attribute.dropDownListViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.editTextBackground = global::mederly.Droid.Resource.Attribute.editTextBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.editTextColor = global::mederly.Droid.Resource.Attribute.editTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.editTextStyle = global::mederly.Droid.Resource.Attribute.editTextStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.elevation = global::mederly.Droid.Resource.Attribute.elevation; + global::Xamarin.Forms.Platform.Resource.Attribute.elevationOverlayColor = global::mederly.Droid.Resource.Attribute.elevationOverlayColor; + global::Xamarin.Forms.Platform.Resource.Attribute.elevationOverlayEnabled = global::mederly.Droid.Resource.Attribute.elevationOverlayEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.endIconCheckable = global::mederly.Droid.Resource.Attribute.endIconCheckable; + global::Xamarin.Forms.Platform.Resource.Attribute.endIconContentDescription = global::mederly.Droid.Resource.Attribute.endIconContentDescription; + global::Xamarin.Forms.Platform.Resource.Attribute.endIconDrawable = global::mederly.Droid.Resource.Attribute.endIconDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.endIconMode = global::mederly.Droid.Resource.Attribute.endIconMode; + global::Xamarin.Forms.Platform.Resource.Attribute.endIconTint = global::mederly.Droid.Resource.Attribute.endIconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.endIconTintMode = global::mederly.Droid.Resource.Attribute.endIconTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.enforceMaterialTheme = global::mederly.Droid.Resource.Attribute.enforceMaterialTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.enforceTextAppearance = global::mederly.Droid.Resource.Attribute.enforceTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.ensureMinTouchTargetSize = global::mederly.Droid.Resource.Attribute.ensureMinTouchTargetSize; + global::Xamarin.Forms.Platform.Resource.Attribute.errorContentDescription = global::mederly.Droid.Resource.Attribute.errorContentDescription; + global::Xamarin.Forms.Platform.Resource.Attribute.errorEnabled = global::mederly.Droid.Resource.Attribute.errorEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.errorIconDrawable = global::mederly.Droid.Resource.Attribute.errorIconDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.errorIconTint = global::mederly.Droid.Resource.Attribute.errorIconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.errorIconTintMode = global::mederly.Droid.Resource.Attribute.errorIconTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.errorTextAppearance = global::mederly.Droid.Resource.Attribute.errorTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.errorTextColor = global::mederly.Droid.Resource.Attribute.errorTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.expandActivityOverflowButtonDrawable = global::mederly.Droid.Resource.Attribute.expandActivityOverflowButtonDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.expanded = global::mederly.Droid.Resource.Attribute.expanded; + global::Xamarin.Forms.Platform.Resource.Attribute.expandedTitleGravity = global::mederly.Droid.Resource.Attribute.expandedTitleGravity; + global::Xamarin.Forms.Platform.Resource.Attribute.expandedTitleMargin = global::mederly.Droid.Resource.Attribute.expandedTitleMargin; + global::Xamarin.Forms.Platform.Resource.Attribute.expandedTitleMarginBottom = global::mederly.Droid.Resource.Attribute.expandedTitleMarginBottom; + global::Xamarin.Forms.Platform.Resource.Attribute.expandedTitleMarginEnd = global::mederly.Droid.Resource.Attribute.expandedTitleMarginEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.expandedTitleMarginStart = global::mederly.Droid.Resource.Attribute.expandedTitleMarginStart; + global::Xamarin.Forms.Platform.Resource.Attribute.expandedTitleMarginTop = global::mederly.Droid.Resource.Attribute.expandedTitleMarginTop; + global::Xamarin.Forms.Platform.Resource.Attribute.expandedTitleTextAppearance = global::mederly.Droid.Resource.Attribute.expandedTitleTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.extendedFloatingActionButtonStyle = global::mederly.Droid.Resource.Attribute.extendedFloatingActionButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.extendMotionSpec = global::mederly.Droid.Resource.Attribute.extendMotionSpec; + global::Xamarin.Forms.Platform.Resource.Attribute.fabAlignmentMode = global::mederly.Droid.Resource.Attribute.fabAlignmentMode; + global::Xamarin.Forms.Platform.Resource.Attribute.fabAnimationMode = global::mederly.Droid.Resource.Attribute.fabAnimationMode; + global::Xamarin.Forms.Platform.Resource.Attribute.fabCradleMargin = global::mederly.Droid.Resource.Attribute.fabCradleMargin; + global::Xamarin.Forms.Platform.Resource.Attribute.fabCradleRoundedCornerRadius = global::mederly.Droid.Resource.Attribute.fabCradleRoundedCornerRadius; + global::Xamarin.Forms.Platform.Resource.Attribute.fabCradleVerticalOffset = global::mederly.Droid.Resource.Attribute.fabCradleVerticalOffset; + global::Xamarin.Forms.Platform.Resource.Attribute.fabCustomSize = global::mederly.Droid.Resource.Attribute.fabCustomSize; + global::Xamarin.Forms.Platform.Resource.Attribute.fabSize = global::mederly.Droid.Resource.Attribute.fabSize; + global::Xamarin.Forms.Platform.Resource.Attribute.fastScrollEnabled = global::mederly.Droid.Resource.Attribute.fastScrollEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.fastScrollHorizontalThumbDrawable = global::mederly.Droid.Resource.Attribute.fastScrollHorizontalThumbDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.fastScrollHorizontalTrackDrawable = global::mederly.Droid.Resource.Attribute.fastScrollHorizontalTrackDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.fastScrollVerticalThumbDrawable = global::mederly.Droid.Resource.Attribute.fastScrollVerticalThumbDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.fastScrollVerticalTrackDrawable = global::mederly.Droid.Resource.Attribute.fastScrollVerticalTrackDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.firstBaselineToTopHeight = global::mederly.Droid.Resource.Attribute.firstBaselineToTopHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.floatingActionButtonStyle = global::mederly.Droid.Resource.Attribute.floatingActionButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.font = global::mederly.Droid.Resource.Attribute.font; + global::Xamarin.Forms.Platform.Resource.Attribute.fontFamily = global::mederly.Droid.Resource.Attribute.fontFamily; + global::Xamarin.Forms.Platform.Resource.Attribute.fontProviderAuthority = global::mederly.Droid.Resource.Attribute.fontProviderAuthority; + global::Xamarin.Forms.Platform.Resource.Attribute.fontProviderCerts = global::mederly.Droid.Resource.Attribute.fontProviderCerts; + global::Xamarin.Forms.Platform.Resource.Attribute.fontProviderFetchStrategy = global::mederly.Droid.Resource.Attribute.fontProviderFetchStrategy; + global::Xamarin.Forms.Platform.Resource.Attribute.fontProviderFetchTimeout = global::mederly.Droid.Resource.Attribute.fontProviderFetchTimeout; + global::Xamarin.Forms.Platform.Resource.Attribute.fontProviderPackage = global::mederly.Droid.Resource.Attribute.fontProviderPackage; + global::Xamarin.Forms.Platform.Resource.Attribute.fontProviderQuery = global::mederly.Droid.Resource.Attribute.fontProviderQuery; + global::Xamarin.Forms.Platform.Resource.Attribute.fontStyle = global::mederly.Droid.Resource.Attribute.fontStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.fontVariationSettings = global::mederly.Droid.Resource.Attribute.fontVariationSettings; + global::Xamarin.Forms.Platform.Resource.Attribute.fontWeight = global::mederly.Droid.Resource.Attribute.fontWeight; + global::Xamarin.Forms.Platform.Resource.Attribute.foregroundInsidePadding = global::mederly.Droid.Resource.Attribute.foregroundInsidePadding; + global::Xamarin.Forms.Platform.Resource.Attribute.gapBetweenBars = global::mederly.Droid.Resource.Attribute.gapBetweenBars; + global::Xamarin.Forms.Platform.Resource.Attribute.gestureInsetBottomIgnored = global::mederly.Droid.Resource.Attribute.gestureInsetBottomIgnored; + global::Xamarin.Forms.Platform.Resource.Attribute.goIcon = global::mederly.Droid.Resource.Attribute.goIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.haloColor = global::mederly.Droid.Resource.Attribute.haloColor; + global::Xamarin.Forms.Platform.Resource.Attribute.haloRadius = global::mederly.Droid.Resource.Attribute.haloRadius; + global::Xamarin.Forms.Platform.Resource.Attribute.headerLayout = global::mederly.Droid.Resource.Attribute.headerLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.height = global::mederly.Droid.Resource.Attribute.height; + global::Xamarin.Forms.Platform.Resource.Attribute.helperText = global::mederly.Droid.Resource.Attribute.helperText; + global::Xamarin.Forms.Platform.Resource.Attribute.helperTextEnabled = global::mederly.Droid.Resource.Attribute.helperTextEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.helperTextTextAppearance = global::mederly.Droid.Resource.Attribute.helperTextTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.helperTextTextColor = global::mederly.Droid.Resource.Attribute.helperTextTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.hideMotionSpec = global::mederly.Droid.Resource.Attribute.hideMotionSpec; + global::Xamarin.Forms.Platform.Resource.Attribute.hideOnContentScroll = global::mederly.Droid.Resource.Attribute.hideOnContentScroll; + global::Xamarin.Forms.Platform.Resource.Attribute.hideOnScroll = global::mederly.Droid.Resource.Attribute.hideOnScroll; + global::Xamarin.Forms.Platform.Resource.Attribute.hintAnimationEnabled = global::mederly.Droid.Resource.Attribute.hintAnimationEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.hintEnabled = global::mederly.Droid.Resource.Attribute.hintEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.hintTextAppearance = global::mederly.Droid.Resource.Attribute.hintTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.hintTextColor = global::mederly.Droid.Resource.Attribute.hintTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.homeAsUpIndicator = global::mederly.Droid.Resource.Attribute.homeAsUpIndicator; + global::Xamarin.Forms.Platform.Resource.Attribute.homeLayout = global::mederly.Droid.Resource.Attribute.homeLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.horizontalOffset = global::mederly.Droid.Resource.Attribute.horizontalOffset; + global::Xamarin.Forms.Platform.Resource.Attribute.hoveredFocusedTranslationZ = global::mederly.Droid.Resource.Attribute.hoveredFocusedTranslationZ; + global::Xamarin.Forms.Platform.Resource.Attribute.icon = global::mederly.Droid.Resource.Attribute.icon; + global::Xamarin.Forms.Platform.Resource.Attribute.iconEndPadding = global::mederly.Droid.Resource.Attribute.iconEndPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.iconGravity = global::mederly.Droid.Resource.Attribute.iconGravity; + global::Xamarin.Forms.Platform.Resource.Attribute.iconifiedByDefault = global::mederly.Droid.Resource.Attribute.iconifiedByDefault; + global::Xamarin.Forms.Platform.Resource.Attribute.iconPadding = global::mederly.Droid.Resource.Attribute.iconPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.iconSize = global::mederly.Droid.Resource.Attribute.iconSize; + global::Xamarin.Forms.Platform.Resource.Attribute.iconStartPadding = global::mederly.Droid.Resource.Attribute.iconStartPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.iconTint = global::mederly.Droid.Resource.Attribute.iconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.iconTintMode = global::mederly.Droid.Resource.Attribute.iconTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.imageButtonStyle = global::mederly.Droid.Resource.Attribute.imageButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.indeterminateProgressStyle = global::mederly.Droid.Resource.Attribute.indeterminateProgressStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.initialActivityCount = global::mederly.Droid.Resource.Attribute.initialActivityCount; + global::Xamarin.Forms.Platform.Resource.Attribute.insetForeground = global::mederly.Droid.Resource.Attribute.insetForeground; + global::Xamarin.Forms.Platform.Resource.Attribute.isLightTheme = global::mederly.Droid.Resource.Attribute.isLightTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.isMaterialTheme = global::mederly.Droid.Resource.Attribute.isMaterialTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.itemBackground = global::mederly.Droid.Resource.Attribute.itemBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.itemFillColor = global::mederly.Droid.Resource.Attribute.itemFillColor; + global::Xamarin.Forms.Platform.Resource.Attribute.itemHorizontalPadding = global::mederly.Droid.Resource.Attribute.itemHorizontalPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.itemHorizontalTranslationEnabled = global::mederly.Droid.Resource.Attribute.itemHorizontalTranslationEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.itemIconPadding = global::mederly.Droid.Resource.Attribute.itemIconPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.itemIconSize = global::mederly.Droid.Resource.Attribute.itemIconSize; + global::Xamarin.Forms.Platform.Resource.Attribute.itemIconTint = global::mederly.Droid.Resource.Attribute.itemIconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.itemMaxLines = global::mederly.Droid.Resource.Attribute.itemMaxLines; + global::Xamarin.Forms.Platform.Resource.Attribute.itemPadding = global::mederly.Droid.Resource.Attribute.itemPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.itemRippleColor = global::mederly.Droid.Resource.Attribute.itemRippleColor; + global::Xamarin.Forms.Platform.Resource.Attribute.itemShapeAppearance = global::mederly.Droid.Resource.Attribute.itemShapeAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.itemShapeAppearanceOverlay = global::mederly.Droid.Resource.Attribute.itemShapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Attribute.itemShapeFillColor = global::mederly.Droid.Resource.Attribute.itemShapeFillColor; + global::Xamarin.Forms.Platform.Resource.Attribute.itemShapeInsetBottom = global::mederly.Droid.Resource.Attribute.itemShapeInsetBottom; + global::Xamarin.Forms.Platform.Resource.Attribute.itemShapeInsetEnd = global::mederly.Droid.Resource.Attribute.itemShapeInsetEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.itemShapeInsetStart = global::mederly.Droid.Resource.Attribute.itemShapeInsetStart; + global::Xamarin.Forms.Platform.Resource.Attribute.itemShapeInsetTop = global::mederly.Droid.Resource.Attribute.itemShapeInsetTop; + global::Xamarin.Forms.Platform.Resource.Attribute.itemSpacing = global::mederly.Droid.Resource.Attribute.itemSpacing; + global::Xamarin.Forms.Platform.Resource.Attribute.itemStrokeColor = global::mederly.Droid.Resource.Attribute.itemStrokeColor; + global::Xamarin.Forms.Platform.Resource.Attribute.itemStrokeWidth = global::mederly.Droid.Resource.Attribute.itemStrokeWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.itemTextAppearance = global::mederly.Droid.Resource.Attribute.itemTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.itemTextAppearanceActive = global::mederly.Droid.Resource.Attribute.itemTextAppearanceActive; + global::Xamarin.Forms.Platform.Resource.Attribute.itemTextAppearanceInactive = global::mederly.Droid.Resource.Attribute.itemTextAppearanceInactive; + global::Xamarin.Forms.Platform.Resource.Attribute.itemTextColor = global::mederly.Droid.Resource.Attribute.itemTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.keylines = global::mederly.Droid.Resource.Attribute.keylines; + global::Xamarin.Forms.Platform.Resource.Attribute.labelBehavior = global::mederly.Droid.Resource.Attribute.labelBehavior; + global::Xamarin.Forms.Platform.Resource.Attribute.labelStyle = global::mederly.Droid.Resource.Attribute.labelStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.labelVisibilityMode = global::mederly.Droid.Resource.Attribute.labelVisibilityMode; + global::Xamarin.Forms.Platform.Resource.Attribute.lastBaselineToBottomHeight = global::mederly.Droid.Resource.Attribute.lastBaselineToBottomHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.layout = global::mederly.Droid.Resource.Attribute.layout; + global::Xamarin.Forms.Platform.Resource.Attribute.layoutManager = global::mederly.Droid.Resource.Attribute.layoutManager; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_anchor = global::mederly.Droid.Resource.Attribute.layout_anchor; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_anchorGravity = global::mederly.Droid.Resource.Attribute.layout_anchorGravity; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_behavior = global::mederly.Droid.Resource.Attribute.layout_behavior; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_collapseMode = global::mederly.Droid.Resource.Attribute.layout_collapseMode; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_collapseParallaxMultiplier = global::mederly.Droid.Resource.Attribute.layout_collapseParallaxMultiplier; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_dodgeInsetEdges = global::mederly.Droid.Resource.Attribute.layout_dodgeInsetEdges; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_insetEdge = global::mederly.Droid.Resource.Attribute.layout_insetEdge; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_keyline = global::mederly.Droid.Resource.Attribute.layout_keyline; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_scrollFlags = global::mederly.Droid.Resource.Attribute.layout_scrollFlags; + global::Xamarin.Forms.Platform.Resource.Attribute.layout_scrollInterpolator = global::mederly.Droid.Resource.Attribute.layout_scrollInterpolator; + global::Xamarin.Forms.Platform.Resource.Attribute.liftOnScroll = global::mederly.Droid.Resource.Attribute.liftOnScroll; + global::Xamarin.Forms.Platform.Resource.Attribute.liftOnScrollTargetViewId = global::mederly.Droid.Resource.Attribute.liftOnScrollTargetViewId; + global::Xamarin.Forms.Platform.Resource.Attribute.lineHeight = global::mederly.Droid.Resource.Attribute.lineHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.lineSpacing = global::mederly.Droid.Resource.Attribute.lineSpacing; + global::Xamarin.Forms.Platform.Resource.Attribute.listChoiceBackgroundIndicator = global::mederly.Droid.Resource.Attribute.listChoiceBackgroundIndicator; + global::Xamarin.Forms.Platform.Resource.Attribute.listChoiceIndicatorMultipleAnimated = global::mederly.Droid.Resource.Attribute.listChoiceIndicatorMultipleAnimated; + global::Xamarin.Forms.Platform.Resource.Attribute.listChoiceIndicatorSingleAnimated = global::mederly.Droid.Resource.Attribute.listChoiceIndicatorSingleAnimated; + global::Xamarin.Forms.Platform.Resource.Attribute.listDividerAlertDialog = global::mederly.Droid.Resource.Attribute.listDividerAlertDialog; + global::Xamarin.Forms.Platform.Resource.Attribute.listItemLayout = global::mederly.Droid.Resource.Attribute.listItemLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.listLayout = global::mederly.Droid.Resource.Attribute.listLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.listMenuViewStyle = global::mederly.Droid.Resource.Attribute.listMenuViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.listPopupWindowStyle = global::mederly.Droid.Resource.Attribute.listPopupWindowStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.listPreferredItemHeight = global::mederly.Droid.Resource.Attribute.listPreferredItemHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.listPreferredItemHeightLarge = global::mederly.Droid.Resource.Attribute.listPreferredItemHeightLarge; + global::Xamarin.Forms.Platform.Resource.Attribute.listPreferredItemHeightSmall = global::mederly.Droid.Resource.Attribute.listPreferredItemHeightSmall; + global::Xamarin.Forms.Platform.Resource.Attribute.listPreferredItemPaddingEnd = global::mederly.Droid.Resource.Attribute.listPreferredItemPaddingEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.listPreferredItemPaddingLeft = global::mederly.Droid.Resource.Attribute.listPreferredItemPaddingLeft; + global::Xamarin.Forms.Platform.Resource.Attribute.listPreferredItemPaddingRight = global::mederly.Droid.Resource.Attribute.listPreferredItemPaddingRight; + global::Xamarin.Forms.Platform.Resource.Attribute.listPreferredItemPaddingStart = global::mederly.Droid.Resource.Attribute.listPreferredItemPaddingStart; + global::Xamarin.Forms.Platform.Resource.Attribute.logo = global::mederly.Droid.Resource.Attribute.logo; + global::Xamarin.Forms.Platform.Resource.Attribute.logoDescription = global::mederly.Droid.Resource.Attribute.logoDescription; + global::Xamarin.Forms.Platform.Resource.Attribute.materialAlertDialogBodyTextStyle = global::mederly.Droid.Resource.Attribute.materialAlertDialogBodyTextStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialAlertDialogTheme = global::mederly.Droid.Resource.Attribute.materialAlertDialogTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.materialAlertDialogTitleIconStyle = global::mederly.Droid.Resource.Attribute.materialAlertDialogTitleIconStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialAlertDialogTitlePanelStyle = global::mederly.Droid.Resource.Attribute.materialAlertDialogTitlePanelStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialAlertDialogTitleTextStyle = global::mederly.Droid.Resource.Attribute.materialAlertDialogTitleTextStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialButtonOutlinedStyle = global::mederly.Droid.Resource.Attribute.materialButtonOutlinedStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialButtonStyle = global::mederly.Droid.Resource.Attribute.materialButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialButtonToggleGroupStyle = global::mederly.Droid.Resource.Attribute.materialButtonToggleGroupStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarDay = global::mederly.Droid.Resource.Attribute.materialCalendarDay; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarFullscreenTheme = global::mederly.Droid.Resource.Attribute.materialCalendarFullscreenTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarHeaderConfirmButton = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderConfirmButton; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarHeaderDivider = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderDivider; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarHeaderLayout = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarHeaderSelection = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderSelection; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarHeaderTitle = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderTitle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarHeaderToggleButton = global::mederly.Droid.Resource.Attribute.materialCalendarHeaderToggleButton; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarStyle = global::mederly.Droid.Resource.Attribute.materialCalendarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCalendarTheme = global::mederly.Droid.Resource.Attribute.materialCalendarTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.materialCardViewStyle = global::mederly.Droid.Resource.Attribute.materialCardViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.materialThemeOverlay = global::mederly.Droid.Resource.Attribute.materialThemeOverlay; + global::Xamarin.Forms.Platform.Resource.Attribute.maxActionInlineWidth = global::mederly.Droid.Resource.Attribute.maxActionInlineWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.maxButtonHeight = global::mederly.Droid.Resource.Attribute.maxButtonHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.maxCharacterCount = global::mederly.Droid.Resource.Attribute.maxCharacterCount; + global::Xamarin.Forms.Platform.Resource.Attribute.maxImageSize = global::mederly.Droid.Resource.Attribute.maxImageSize; + global::Xamarin.Forms.Platform.Resource.Attribute.maxLines = global::mederly.Droid.Resource.Attribute.maxLines; + global::Xamarin.Forms.Platform.Resource.Attribute.measureWithLargestChild = global::mederly.Droid.Resource.Attribute.measureWithLargestChild; + global::Xamarin.Forms.Platform.Resource.Attribute.menu = global::mederly.Droid.Resource.Attribute.menu; + global::Xamarin.Forms.Platform.Resource.Attribute.minTouchTargetSize = global::mederly.Droid.Resource.Attribute.minTouchTargetSize; + global::Xamarin.Forms.Platform.Resource.Attribute.multiChoiceItemLayout = global::mederly.Droid.Resource.Attribute.multiChoiceItemLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.navigationContentDescription = global::mederly.Droid.Resource.Attribute.navigationContentDescription; + global::Xamarin.Forms.Platform.Resource.Attribute.navigationIcon = global::mederly.Droid.Resource.Attribute.navigationIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.navigationMode = global::mederly.Droid.Resource.Attribute.navigationMode; + global::Xamarin.Forms.Platform.Resource.Attribute.navigationViewStyle = global::mederly.Droid.Resource.Attribute.navigationViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.number = global::mederly.Droid.Resource.Attribute.number; + global::Xamarin.Forms.Platform.Resource.Attribute.numericModifiers = global::mederly.Droid.Resource.Attribute.numericModifiers; + global::Xamarin.Forms.Platform.Resource.Attribute.overlapAnchor = global::mederly.Droid.Resource.Attribute.overlapAnchor; + global::Xamarin.Forms.Platform.Resource.Attribute.paddingBottomNoButtons = global::mederly.Droid.Resource.Attribute.paddingBottomNoButtons; + global::Xamarin.Forms.Platform.Resource.Attribute.paddingBottomSystemWindowInsets = global::mederly.Droid.Resource.Attribute.paddingBottomSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Attribute.paddingEnd = global::mederly.Droid.Resource.Attribute.paddingEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.paddingLeftSystemWindowInsets = global::mederly.Droid.Resource.Attribute.paddingLeftSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Attribute.paddingRightSystemWindowInsets = global::mederly.Droid.Resource.Attribute.paddingRightSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Attribute.paddingStart = global::mederly.Droid.Resource.Attribute.paddingStart; + global::Xamarin.Forms.Platform.Resource.Attribute.paddingTopNoTitle = global::mederly.Droid.Resource.Attribute.paddingTopNoTitle; + global::Xamarin.Forms.Platform.Resource.Attribute.panelBackground = global::mederly.Droid.Resource.Attribute.panelBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.panelMenuListTheme = global::mederly.Droid.Resource.Attribute.panelMenuListTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.panelMenuListWidth = global::mederly.Droid.Resource.Attribute.panelMenuListWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.passwordToggleContentDescription = global::mederly.Droid.Resource.Attribute.passwordToggleContentDescription; + global::Xamarin.Forms.Platform.Resource.Attribute.passwordToggleDrawable = global::mederly.Droid.Resource.Attribute.passwordToggleDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.passwordToggleEnabled = global::mederly.Droid.Resource.Attribute.passwordToggleEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.passwordToggleTint = global::mederly.Droid.Resource.Attribute.passwordToggleTint; + global::Xamarin.Forms.Platform.Resource.Attribute.passwordToggleTintMode = global::mederly.Droid.Resource.Attribute.passwordToggleTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.placeholderText = global::mederly.Droid.Resource.Attribute.placeholderText; + global::Xamarin.Forms.Platform.Resource.Attribute.placeholderTextAppearance = global::mederly.Droid.Resource.Attribute.placeholderTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.placeholderTextColor = global::mederly.Droid.Resource.Attribute.placeholderTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.popupMenuBackground = global::mederly.Droid.Resource.Attribute.popupMenuBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.popupMenuStyle = global::mederly.Droid.Resource.Attribute.popupMenuStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.popupTheme = global::mederly.Droid.Resource.Attribute.popupTheme; + global::Xamarin.Forms.Platform.Resource.Attribute.popupWindowStyle = global::mederly.Droid.Resource.Attribute.popupWindowStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.prefixText = global::mederly.Droid.Resource.Attribute.prefixText; + global::Xamarin.Forms.Platform.Resource.Attribute.prefixTextAppearance = global::mederly.Droid.Resource.Attribute.prefixTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.prefixTextColor = global::mederly.Droid.Resource.Attribute.prefixTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.preserveIconSpacing = global::mederly.Droid.Resource.Attribute.preserveIconSpacing; + global::Xamarin.Forms.Platform.Resource.Attribute.pressedTranslationZ = global::mederly.Droid.Resource.Attribute.pressedTranslationZ; + global::Xamarin.Forms.Platform.Resource.Attribute.progressBarPadding = global::mederly.Droid.Resource.Attribute.progressBarPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.progressBarStyle = global::mederly.Droid.Resource.Attribute.progressBarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.queryBackground = global::mederly.Droid.Resource.Attribute.queryBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.queryHint = global::mederly.Droid.Resource.Attribute.queryHint; + global::Xamarin.Forms.Platform.Resource.Attribute.radioButtonStyle = global::mederly.Droid.Resource.Attribute.radioButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.rangeFillColor = global::mederly.Droid.Resource.Attribute.rangeFillColor; + global::Xamarin.Forms.Platform.Resource.Attribute.ratingBarStyle = global::mederly.Droid.Resource.Attribute.ratingBarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.ratingBarStyleIndicator = global::mederly.Droid.Resource.Attribute.ratingBarStyleIndicator; + global::Xamarin.Forms.Platform.Resource.Attribute.ratingBarStyleSmall = global::mederly.Droid.Resource.Attribute.ratingBarStyleSmall; + global::Xamarin.Forms.Platform.Resource.Attribute.recyclerViewStyle = global::mederly.Droid.Resource.Attribute.recyclerViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.reverseLayout = global::mederly.Droid.Resource.Attribute.reverseLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.rippleColor = global::mederly.Droid.Resource.Attribute.rippleColor; + global::Xamarin.Forms.Platform.Resource.Attribute.scrimAnimationDuration = global::mederly.Droid.Resource.Attribute.scrimAnimationDuration; + global::Xamarin.Forms.Platform.Resource.Attribute.scrimBackground = global::mederly.Droid.Resource.Attribute.scrimBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.scrimVisibleHeightTrigger = global::mederly.Droid.Resource.Attribute.scrimVisibleHeightTrigger; + global::Xamarin.Forms.Platform.Resource.Attribute.scrollViewStyle = global::mederly.Droid.Resource.Attribute.scrollViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.searchHintIcon = global::mederly.Droid.Resource.Attribute.searchHintIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.searchIcon = global::mederly.Droid.Resource.Attribute.searchIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.searchViewStyle = global::mederly.Droid.Resource.Attribute.searchViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.seekBarStyle = global::mederly.Droid.Resource.Attribute.seekBarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.selectableItemBackground = global::mederly.Droid.Resource.Attribute.selectableItemBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.selectableItemBackgroundBorderless = global::mederly.Droid.Resource.Attribute.selectableItemBackgroundBorderless; + global::Xamarin.Forms.Platform.Resource.Attribute.selectionRequired = global::mederly.Droid.Resource.Attribute.selectionRequired; + global::Xamarin.Forms.Platform.Resource.Attribute.shapeAppearance = global::mederly.Droid.Resource.Attribute.shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.shapeAppearanceLargeComponent = global::mederly.Droid.Resource.Attribute.shapeAppearanceLargeComponent; + global::Xamarin.Forms.Platform.Resource.Attribute.shapeAppearanceMediumComponent = global::mederly.Droid.Resource.Attribute.shapeAppearanceMediumComponent; + global::Xamarin.Forms.Platform.Resource.Attribute.shapeAppearanceOverlay = global::mederly.Droid.Resource.Attribute.shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Attribute.shapeAppearanceSmallComponent = global::mederly.Droid.Resource.Attribute.shapeAppearanceSmallComponent; + global::Xamarin.Forms.Platform.Resource.Attribute.showAsAction = global::mederly.Droid.Resource.Attribute.showAsAction; + global::Xamarin.Forms.Platform.Resource.Attribute.showDividers = global::mederly.Droid.Resource.Attribute.showDividers; + global::Xamarin.Forms.Platform.Resource.Attribute.showMotionSpec = global::mederly.Droid.Resource.Attribute.showMotionSpec; + global::Xamarin.Forms.Platform.Resource.Attribute.showText = global::mederly.Droid.Resource.Attribute.showText; + global::Xamarin.Forms.Platform.Resource.Attribute.showTitle = global::mederly.Droid.Resource.Attribute.showTitle; + global::Xamarin.Forms.Platform.Resource.Attribute.shrinkMotionSpec = global::mederly.Droid.Resource.Attribute.shrinkMotionSpec; + global::Xamarin.Forms.Platform.Resource.Attribute.singleChoiceItemLayout = global::mederly.Droid.Resource.Attribute.singleChoiceItemLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.singleLine = global::mederly.Droid.Resource.Attribute.singleLine; + global::Xamarin.Forms.Platform.Resource.Attribute.singleSelection = global::mederly.Droid.Resource.Attribute.singleSelection; + global::Xamarin.Forms.Platform.Resource.Attribute.sliderStyle = global::mederly.Droid.Resource.Attribute.sliderStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.snackbarButtonStyle = global::mederly.Droid.Resource.Attribute.snackbarButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.snackbarStyle = global::mederly.Droid.Resource.Attribute.snackbarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.snackbarTextViewStyle = global::mederly.Droid.Resource.Attribute.snackbarTextViewStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.spanCount = global::mederly.Droid.Resource.Attribute.spanCount; + global::Xamarin.Forms.Platform.Resource.Attribute.spinBars = global::mederly.Droid.Resource.Attribute.spinBars; + global::Xamarin.Forms.Platform.Resource.Attribute.spinnerDropDownItemStyle = global::mederly.Droid.Resource.Attribute.spinnerDropDownItemStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.spinnerStyle = global::mederly.Droid.Resource.Attribute.spinnerStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.splitTrack = global::mederly.Droid.Resource.Attribute.splitTrack; + global::Xamarin.Forms.Platform.Resource.Attribute.srcCompat = global::mederly.Droid.Resource.Attribute.srcCompat; + global::Xamarin.Forms.Platform.Resource.Attribute.stackFromEnd = global::mederly.Droid.Resource.Attribute.stackFromEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.startIconCheckable = global::mederly.Droid.Resource.Attribute.startIconCheckable; + global::Xamarin.Forms.Platform.Resource.Attribute.startIconContentDescription = global::mederly.Droid.Resource.Attribute.startIconContentDescription; + global::Xamarin.Forms.Platform.Resource.Attribute.startIconDrawable = global::mederly.Droid.Resource.Attribute.startIconDrawable; + global::Xamarin.Forms.Platform.Resource.Attribute.startIconTint = global::mederly.Droid.Resource.Attribute.startIconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.startIconTintMode = global::mederly.Droid.Resource.Attribute.startIconTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.state_above_anchor = global::mederly.Droid.Resource.Attribute.state_above_anchor; + global::Xamarin.Forms.Platform.Resource.Attribute.state_collapsed = global::mederly.Droid.Resource.Attribute.state_collapsed; + global::Xamarin.Forms.Platform.Resource.Attribute.state_collapsible = global::mederly.Droid.Resource.Attribute.state_collapsible; + global::Xamarin.Forms.Platform.Resource.Attribute.state_dragged = global::mederly.Droid.Resource.Attribute.state_dragged; + global::Xamarin.Forms.Platform.Resource.Attribute.state_liftable = global::mederly.Droid.Resource.Attribute.state_liftable; + global::Xamarin.Forms.Platform.Resource.Attribute.state_lifted = global::mederly.Droid.Resource.Attribute.state_lifted; + global::Xamarin.Forms.Platform.Resource.Attribute.statusBarBackground = global::mederly.Droid.Resource.Attribute.statusBarBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.statusBarForeground = global::mederly.Droid.Resource.Attribute.statusBarForeground; + global::Xamarin.Forms.Platform.Resource.Attribute.statusBarScrim = global::mederly.Droid.Resource.Attribute.statusBarScrim; + global::Xamarin.Forms.Platform.Resource.Attribute.strokeColor = global::mederly.Droid.Resource.Attribute.strokeColor; + global::Xamarin.Forms.Platform.Resource.Attribute.strokeWidth = global::mederly.Droid.Resource.Attribute.strokeWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.subMenuArrow = global::mederly.Droid.Resource.Attribute.subMenuArrow; + global::Xamarin.Forms.Platform.Resource.Attribute.submitBackground = global::mederly.Droid.Resource.Attribute.submitBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.subtitle = global::mederly.Droid.Resource.Attribute.subtitle; + global::Xamarin.Forms.Platform.Resource.Attribute.subtitleTextAppearance = global::mederly.Droid.Resource.Attribute.subtitleTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.subtitleTextColor = global::mederly.Droid.Resource.Attribute.subtitleTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.subtitleTextStyle = global::mederly.Droid.Resource.Attribute.subtitleTextStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.suffixText = global::mederly.Droid.Resource.Attribute.suffixText; + global::Xamarin.Forms.Platform.Resource.Attribute.suffixTextAppearance = global::mederly.Droid.Resource.Attribute.suffixTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.suffixTextColor = global::mederly.Droid.Resource.Attribute.suffixTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.suggestionRowLayout = global::mederly.Droid.Resource.Attribute.suggestionRowLayout; + global::Xamarin.Forms.Platform.Resource.Attribute.swipeRefreshLayoutProgressSpinnerBackgroundColor = global::mederly.Droid.Resource.Attribute.swipeRefreshLayoutProgressSpinnerBackgroundColor; + global::Xamarin.Forms.Platform.Resource.Attribute.switchMinWidth = global::mederly.Droid.Resource.Attribute.switchMinWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.switchPadding = global::mederly.Droid.Resource.Attribute.switchPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.switchStyle = global::mederly.Droid.Resource.Attribute.switchStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.switchTextAppearance = global::mederly.Droid.Resource.Attribute.switchTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.tabBackground = global::mederly.Droid.Resource.Attribute.tabBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.tabContentStart = global::mederly.Droid.Resource.Attribute.tabContentStart; + global::Xamarin.Forms.Platform.Resource.Attribute.tabGravity = global::mederly.Droid.Resource.Attribute.tabGravity; + global::Xamarin.Forms.Platform.Resource.Attribute.tabIconTint = global::mederly.Droid.Resource.Attribute.tabIconTint; + global::Xamarin.Forms.Platform.Resource.Attribute.tabIconTintMode = global::mederly.Droid.Resource.Attribute.tabIconTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.tabIndicator = global::mederly.Droid.Resource.Attribute.tabIndicator; + global::Xamarin.Forms.Platform.Resource.Attribute.tabIndicatorAnimationDuration = global::mederly.Droid.Resource.Attribute.tabIndicatorAnimationDuration; + global::Xamarin.Forms.Platform.Resource.Attribute.tabIndicatorColor = global::mederly.Droid.Resource.Attribute.tabIndicatorColor; + global::Xamarin.Forms.Platform.Resource.Attribute.tabIndicatorFullWidth = global::mederly.Droid.Resource.Attribute.tabIndicatorFullWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.tabIndicatorGravity = global::mederly.Droid.Resource.Attribute.tabIndicatorGravity; + global::Xamarin.Forms.Platform.Resource.Attribute.tabIndicatorHeight = global::mederly.Droid.Resource.Attribute.tabIndicatorHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.tabInlineLabel = global::mederly.Droid.Resource.Attribute.tabInlineLabel; + global::Xamarin.Forms.Platform.Resource.Attribute.tabMaxWidth = global::mederly.Droid.Resource.Attribute.tabMaxWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.tabMinWidth = global::mederly.Droid.Resource.Attribute.tabMinWidth; + global::Xamarin.Forms.Platform.Resource.Attribute.tabMode = global::mederly.Droid.Resource.Attribute.tabMode; + global::Xamarin.Forms.Platform.Resource.Attribute.tabPadding = global::mederly.Droid.Resource.Attribute.tabPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.tabPaddingBottom = global::mederly.Droid.Resource.Attribute.tabPaddingBottom; + global::Xamarin.Forms.Platform.Resource.Attribute.tabPaddingEnd = global::mederly.Droid.Resource.Attribute.tabPaddingEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.tabPaddingStart = global::mederly.Droid.Resource.Attribute.tabPaddingStart; + global::Xamarin.Forms.Platform.Resource.Attribute.tabPaddingTop = global::mederly.Droid.Resource.Attribute.tabPaddingTop; + global::Xamarin.Forms.Platform.Resource.Attribute.tabRippleColor = global::mederly.Droid.Resource.Attribute.tabRippleColor; + global::Xamarin.Forms.Platform.Resource.Attribute.tabSelectedTextColor = global::mederly.Droid.Resource.Attribute.tabSelectedTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.tabStyle = global::mederly.Droid.Resource.Attribute.tabStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.tabTextAppearance = global::mederly.Droid.Resource.Attribute.tabTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.tabTextColor = global::mederly.Droid.Resource.Attribute.tabTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.tabUnboundedRipple = global::mederly.Droid.Resource.Attribute.tabUnboundedRipple; + global::Xamarin.Forms.Platform.Resource.Attribute.textAllCaps = global::mederly.Droid.Resource.Attribute.textAllCaps; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceBody1 = global::mederly.Droid.Resource.Attribute.textAppearanceBody1; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceBody2 = global::mederly.Droid.Resource.Attribute.textAppearanceBody2; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceButton = global::mederly.Droid.Resource.Attribute.textAppearanceButton; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceCaption = global::mederly.Droid.Resource.Attribute.textAppearanceCaption; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceHeadline1 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline1; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceHeadline2 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline2; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceHeadline3 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline3; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceHeadline4 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline4; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceHeadline5 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline5; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceHeadline6 = global::mederly.Droid.Resource.Attribute.textAppearanceHeadline6; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceLargePopupMenu = global::mederly.Droid.Resource.Attribute.textAppearanceLargePopupMenu; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceLineHeightEnabled = global::mederly.Droid.Resource.Attribute.textAppearanceLineHeightEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceListItem = global::mederly.Droid.Resource.Attribute.textAppearanceListItem; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceListItemSecondary = global::mederly.Droid.Resource.Attribute.textAppearanceListItemSecondary; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceListItemSmall = global::mederly.Droid.Resource.Attribute.textAppearanceListItemSmall; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceOverline = global::mederly.Droid.Resource.Attribute.textAppearanceOverline; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearancePopupMenuHeader = global::mederly.Droid.Resource.Attribute.textAppearancePopupMenuHeader; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceSearchResultSubtitle = global::mederly.Droid.Resource.Attribute.textAppearanceSearchResultSubtitle; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceSearchResultTitle = global::mederly.Droid.Resource.Attribute.textAppearanceSearchResultTitle; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceSmallPopupMenu = global::mederly.Droid.Resource.Attribute.textAppearanceSmallPopupMenu; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceSubtitle1 = global::mederly.Droid.Resource.Attribute.textAppearanceSubtitle1; + global::Xamarin.Forms.Platform.Resource.Attribute.textAppearanceSubtitle2 = global::mederly.Droid.Resource.Attribute.textAppearanceSubtitle2; + global::Xamarin.Forms.Platform.Resource.Attribute.textColorAlertDialogListItem = global::mederly.Droid.Resource.Attribute.textColorAlertDialogListItem; + global::Xamarin.Forms.Platform.Resource.Attribute.textColorSearchUrl = global::mederly.Droid.Resource.Attribute.textColorSearchUrl; + global::Xamarin.Forms.Platform.Resource.Attribute.textEndPadding = global::mederly.Droid.Resource.Attribute.textEndPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.textInputLayoutFocusedRectEnabled = global::mederly.Droid.Resource.Attribute.textInputLayoutFocusedRectEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.textInputStyle = global::mederly.Droid.Resource.Attribute.textInputStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.textLocale = global::mederly.Droid.Resource.Attribute.textLocale; + global::Xamarin.Forms.Platform.Resource.Attribute.textStartPadding = global::mederly.Droid.Resource.Attribute.textStartPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.theme = global::mederly.Droid.Resource.Attribute.theme; + global::Xamarin.Forms.Platform.Resource.Attribute.themeLineHeight = global::mederly.Droid.Resource.Attribute.themeLineHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.thickness = global::mederly.Droid.Resource.Attribute.thickness; + global::Xamarin.Forms.Platform.Resource.Attribute.thumbColor = global::mederly.Droid.Resource.Attribute.thumbColor; + global::Xamarin.Forms.Platform.Resource.Attribute.thumbElevation = global::mederly.Droid.Resource.Attribute.thumbElevation; + global::Xamarin.Forms.Platform.Resource.Attribute.thumbRadius = global::mederly.Droid.Resource.Attribute.thumbRadius; + global::Xamarin.Forms.Platform.Resource.Attribute.thumbTextPadding = global::mederly.Droid.Resource.Attribute.thumbTextPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.thumbTint = global::mederly.Droid.Resource.Attribute.thumbTint; + global::Xamarin.Forms.Platform.Resource.Attribute.thumbTintMode = global::mederly.Droid.Resource.Attribute.thumbTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.tickColor = global::mederly.Droid.Resource.Attribute.tickColor; + global::Xamarin.Forms.Platform.Resource.Attribute.tickColorActive = global::mederly.Droid.Resource.Attribute.tickColorActive; + global::Xamarin.Forms.Platform.Resource.Attribute.tickColorInactive = global::mederly.Droid.Resource.Attribute.tickColorInactive; + global::Xamarin.Forms.Platform.Resource.Attribute.tickMark = global::mederly.Droid.Resource.Attribute.tickMark; + global::Xamarin.Forms.Platform.Resource.Attribute.tickMarkTint = global::mederly.Droid.Resource.Attribute.tickMarkTint; + global::Xamarin.Forms.Platform.Resource.Attribute.tickMarkTintMode = global::mederly.Droid.Resource.Attribute.tickMarkTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.tint = global::mederly.Droid.Resource.Attribute.tint; + global::Xamarin.Forms.Platform.Resource.Attribute.tintMode = global::mederly.Droid.Resource.Attribute.tintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.title = global::mederly.Droid.Resource.Attribute.title; + global::Xamarin.Forms.Platform.Resource.Attribute.titleEnabled = global::mederly.Droid.Resource.Attribute.titleEnabled; + global::Xamarin.Forms.Platform.Resource.Attribute.titleMargin = global::mederly.Droid.Resource.Attribute.titleMargin; + global::Xamarin.Forms.Platform.Resource.Attribute.titleMarginBottom = global::mederly.Droid.Resource.Attribute.titleMarginBottom; + global::Xamarin.Forms.Platform.Resource.Attribute.titleMarginEnd = global::mederly.Droid.Resource.Attribute.titleMarginEnd; + global::Xamarin.Forms.Platform.Resource.Attribute.titleMargins = global::mederly.Droid.Resource.Attribute.titleMargins; + global::Xamarin.Forms.Platform.Resource.Attribute.titleMarginStart = global::mederly.Droid.Resource.Attribute.titleMarginStart; + global::Xamarin.Forms.Platform.Resource.Attribute.titleMarginTop = global::mederly.Droid.Resource.Attribute.titleMarginTop; + global::Xamarin.Forms.Platform.Resource.Attribute.titleTextAppearance = global::mederly.Droid.Resource.Attribute.titleTextAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.titleTextColor = global::mederly.Droid.Resource.Attribute.titleTextColor; + global::Xamarin.Forms.Platform.Resource.Attribute.titleTextStyle = global::mederly.Droid.Resource.Attribute.titleTextStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.toolbarId = global::mederly.Droid.Resource.Attribute.toolbarId; + global::Xamarin.Forms.Platform.Resource.Attribute.toolbarNavigationButtonStyle = global::mederly.Droid.Resource.Attribute.toolbarNavigationButtonStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.toolbarStyle = global::mederly.Droid.Resource.Attribute.toolbarStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.tooltipForegroundColor = global::mederly.Droid.Resource.Attribute.tooltipForegroundColor; + global::Xamarin.Forms.Platform.Resource.Attribute.tooltipFrameBackground = global::mederly.Droid.Resource.Attribute.tooltipFrameBackground; + global::Xamarin.Forms.Platform.Resource.Attribute.tooltipStyle = global::mederly.Droid.Resource.Attribute.tooltipStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.tooltipText = global::mederly.Droid.Resource.Attribute.tooltipText; + global::Xamarin.Forms.Platform.Resource.Attribute.track = global::mederly.Droid.Resource.Attribute.track; + global::Xamarin.Forms.Platform.Resource.Attribute.trackColor = global::mederly.Droid.Resource.Attribute.trackColor; + global::Xamarin.Forms.Platform.Resource.Attribute.trackColorActive = global::mederly.Droid.Resource.Attribute.trackColorActive; + global::Xamarin.Forms.Platform.Resource.Attribute.trackColorInactive = global::mederly.Droid.Resource.Attribute.trackColorInactive; + global::Xamarin.Forms.Platform.Resource.Attribute.trackHeight = global::mederly.Droid.Resource.Attribute.trackHeight; + global::Xamarin.Forms.Platform.Resource.Attribute.trackTint = global::mederly.Droid.Resource.Attribute.trackTint; + global::Xamarin.Forms.Platform.Resource.Attribute.trackTintMode = global::mederly.Droid.Resource.Attribute.trackTintMode; + global::Xamarin.Forms.Platform.Resource.Attribute.transitionShapeAppearance = global::mederly.Droid.Resource.Attribute.transitionShapeAppearance; + global::Xamarin.Forms.Platform.Resource.Attribute.ttcIndex = global::mederly.Droid.Resource.Attribute.ttcIndex; + global::Xamarin.Forms.Platform.Resource.Attribute.useCompatPadding = global::mederly.Droid.Resource.Attribute.useCompatPadding; + global::Xamarin.Forms.Platform.Resource.Attribute.useMaterialThemeColors = global::mederly.Droid.Resource.Attribute.useMaterialThemeColors; + global::Xamarin.Forms.Platform.Resource.Attribute.values = global::mederly.Droid.Resource.Attribute.values; + global::Xamarin.Forms.Platform.Resource.Attribute.verticalOffset = global::mederly.Droid.Resource.Attribute.verticalOffset; + global::Xamarin.Forms.Platform.Resource.Attribute.viewInflaterClass = global::mederly.Droid.Resource.Attribute.viewInflaterClass; + global::Xamarin.Forms.Platform.Resource.Attribute.voiceIcon = global::mederly.Droid.Resource.Attribute.voiceIcon; + global::Xamarin.Forms.Platform.Resource.Attribute.windowActionBar = global::mederly.Droid.Resource.Attribute.windowActionBar; + global::Xamarin.Forms.Platform.Resource.Attribute.windowActionBarOverlay = global::mederly.Droid.Resource.Attribute.windowActionBarOverlay; + global::Xamarin.Forms.Platform.Resource.Attribute.windowActionModeOverlay = global::mederly.Droid.Resource.Attribute.windowActionModeOverlay; + global::Xamarin.Forms.Platform.Resource.Attribute.windowFixedHeightMajor = global::mederly.Droid.Resource.Attribute.windowFixedHeightMajor; + global::Xamarin.Forms.Platform.Resource.Attribute.windowFixedHeightMinor = global::mederly.Droid.Resource.Attribute.windowFixedHeightMinor; + global::Xamarin.Forms.Platform.Resource.Attribute.windowFixedWidthMajor = global::mederly.Droid.Resource.Attribute.windowFixedWidthMajor; + global::Xamarin.Forms.Platform.Resource.Attribute.windowFixedWidthMinor = global::mederly.Droid.Resource.Attribute.windowFixedWidthMinor; + global::Xamarin.Forms.Platform.Resource.Attribute.windowMinWidthMajor = global::mederly.Droid.Resource.Attribute.windowMinWidthMajor; + global::Xamarin.Forms.Platform.Resource.Attribute.windowMinWidthMinor = global::mederly.Droid.Resource.Attribute.windowMinWidthMinor; + global::Xamarin.Forms.Platform.Resource.Attribute.windowNoTitle = global::mederly.Droid.Resource.Attribute.windowNoTitle; + global::Xamarin.Forms.Platform.Resource.Attribute.yearSelectedStyle = global::mederly.Droid.Resource.Attribute.yearSelectedStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.yearStyle = global::mederly.Droid.Resource.Attribute.yearStyle; + global::Xamarin.Forms.Platform.Resource.Attribute.yearTodayStyle = global::mederly.Droid.Resource.Attribute.yearTodayStyle; + global::Xamarin.Forms.Platform.Resource.Boolean.abc_action_bar_embed_tabs = global::mederly.Droid.Resource.Boolean.abc_action_bar_embed_tabs; + global::Xamarin.Forms.Platform.Resource.Boolean.abc_allow_stacked_button_bar = global::mederly.Droid.Resource.Boolean.abc_allow_stacked_button_bar; + global::Xamarin.Forms.Platform.Resource.Boolean.abc_config_actionMenuItemAllCaps = global::mederly.Droid.Resource.Boolean.abc_config_actionMenuItemAllCaps; + global::Xamarin.Forms.Platform.Resource.Boolean.mtrl_btn_textappearance_all_caps = global::mederly.Droid.Resource.Boolean.mtrl_btn_textappearance_all_caps; + global::Xamarin.Forms.Platform.Resource.Color.abc_background_cache_hint_selector_material_dark = global::mederly.Droid.Resource.Color.abc_background_cache_hint_selector_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.abc_background_cache_hint_selector_material_light = global::mederly.Droid.Resource.Color.abc_background_cache_hint_selector_material_light; + global::Xamarin.Forms.Platform.Resource.Color.abc_btn_colored_borderless_text_material = global::mederly.Droid.Resource.Color.abc_btn_colored_borderless_text_material; + global::Xamarin.Forms.Platform.Resource.Color.abc_btn_colored_text_material = global::mederly.Droid.Resource.Color.abc_btn_colored_text_material; + global::Xamarin.Forms.Platform.Resource.Color.abc_color_highlight_material = global::mederly.Droid.Resource.Color.abc_color_highlight_material; + global::Xamarin.Forms.Platform.Resource.Color.abc_decor_view_status_guard = global::mederly.Droid.Resource.Color.abc_decor_view_status_guard; + global::Xamarin.Forms.Platform.Resource.Color.abc_decor_view_status_guard_light = global::mederly.Droid.Resource.Color.abc_decor_view_status_guard_light; + global::Xamarin.Forms.Platform.Resource.Color.abc_hint_foreground_material_dark = global::mederly.Droid.Resource.Color.abc_hint_foreground_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.abc_hint_foreground_material_light = global::mederly.Droid.Resource.Color.abc_hint_foreground_material_light; + global::Xamarin.Forms.Platform.Resource.Color.abc_primary_text_disable_only_material_dark = global::mederly.Droid.Resource.Color.abc_primary_text_disable_only_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.abc_primary_text_disable_only_material_light = global::mederly.Droid.Resource.Color.abc_primary_text_disable_only_material_light; + global::Xamarin.Forms.Platform.Resource.Color.abc_primary_text_material_dark = global::mederly.Droid.Resource.Color.abc_primary_text_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.abc_primary_text_material_light = global::mederly.Droid.Resource.Color.abc_primary_text_material_light; + global::Xamarin.Forms.Platform.Resource.Color.abc_search_url_text = global::mederly.Droid.Resource.Color.abc_search_url_text; + global::Xamarin.Forms.Platform.Resource.Color.abc_search_url_text_normal = global::mederly.Droid.Resource.Color.abc_search_url_text_normal; + global::Xamarin.Forms.Platform.Resource.Color.abc_search_url_text_pressed = global::mederly.Droid.Resource.Color.abc_search_url_text_pressed; + global::Xamarin.Forms.Platform.Resource.Color.abc_search_url_text_selected = global::mederly.Droid.Resource.Color.abc_search_url_text_selected; + global::Xamarin.Forms.Platform.Resource.Color.abc_secondary_text_material_dark = global::mederly.Droid.Resource.Color.abc_secondary_text_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.abc_secondary_text_material_light = global::mederly.Droid.Resource.Color.abc_secondary_text_material_light; + global::Xamarin.Forms.Platform.Resource.Color.abc_tint_btn_checkable = global::mederly.Droid.Resource.Color.abc_tint_btn_checkable; + global::Xamarin.Forms.Platform.Resource.Color.abc_tint_default = global::mederly.Droid.Resource.Color.abc_tint_default; + global::Xamarin.Forms.Platform.Resource.Color.abc_tint_edittext = global::mederly.Droid.Resource.Color.abc_tint_edittext; + global::Xamarin.Forms.Platform.Resource.Color.abc_tint_seek_thumb = global::mederly.Droid.Resource.Color.abc_tint_seek_thumb; + global::Xamarin.Forms.Platform.Resource.Color.abc_tint_spinner = global::mederly.Droid.Resource.Color.abc_tint_spinner; + global::Xamarin.Forms.Platform.Resource.Color.abc_tint_switch_track = global::mederly.Droid.Resource.Color.abc_tint_switch_track; + global::Xamarin.Forms.Platform.Resource.Color.accent_material_dark = global::mederly.Droid.Resource.Color.accent_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.accent_material_light = global::mederly.Droid.Resource.Color.accent_material_light; + global::Xamarin.Forms.Platform.Resource.Color.androidx_core_ripple_material_light = global::mederly.Droid.Resource.Color.androidx_core_ripple_material_light; + global::Xamarin.Forms.Platform.Resource.Color.androidx_core_secondary_text_default_material_light = global::mederly.Droid.Resource.Color.androidx_core_secondary_text_default_material_light; + global::Xamarin.Forms.Platform.Resource.Color.background_floating_material_dark = global::mederly.Droid.Resource.Color.background_floating_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.background_floating_material_light = global::mederly.Droid.Resource.Color.background_floating_material_light; + global::Xamarin.Forms.Platform.Resource.Color.background_material_dark = global::mederly.Droid.Resource.Color.background_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.background_material_light = global::mederly.Droid.Resource.Color.background_material_light; + global::Xamarin.Forms.Platform.Resource.Color.bright_foreground_disabled_material_dark = global::mederly.Droid.Resource.Color.bright_foreground_disabled_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.bright_foreground_disabled_material_light = global::mederly.Droid.Resource.Color.bright_foreground_disabled_material_light; + global::Xamarin.Forms.Platform.Resource.Color.bright_foreground_inverse_material_dark = global::mederly.Droid.Resource.Color.bright_foreground_inverse_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.bright_foreground_inverse_material_light = global::mederly.Droid.Resource.Color.bright_foreground_inverse_material_light; + global::Xamarin.Forms.Platform.Resource.Color.bright_foreground_material_dark = global::mederly.Droid.Resource.Color.bright_foreground_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.bright_foreground_material_light = global::mederly.Droid.Resource.Color.bright_foreground_material_light; + global::Xamarin.Forms.Platform.Resource.Color.button_material_dark = global::mederly.Droid.Resource.Color.button_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.button_material_light = global::mederly.Droid.Resource.Color.button_material_light; + global::Xamarin.Forms.Platform.Resource.Color.cardview_dark_background = global::mederly.Droid.Resource.Color.cardview_dark_background; + global::Xamarin.Forms.Platform.Resource.Color.cardview_light_background = global::mederly.Droid.Resource.Color.cardview_light_background; + global::Xamarin.Forms.Platform.Resource.Color.cardview_shadow_end_color = global::mederly.Droid.Resource.Color.cardview_shadow_end_color; + global::Xamarin.Forms.Platform.Resource.Color.cardview_shadow_start_color = global::mederly.Droid.Resource.Color.cardview_shadow_start_color; + global::Xamarin.Forms.Platform.Resource.Color.checkbox_themeable_attribute_color = global::mederly.Droid.Resource.Color.checkbox_themeable_attribute_color; + global::Xamarin.Forms.Platform.Resource.Color.design_bottom_navigation_shadow_color = global::mederly.Droid.Resource.Color.design_bottom_navigation_shadow_color; + global::Xamarin.Forms.Platform.Resource.Color.design_box_stroke_color = global::mederly.Droid.Resource.Color.design_box_stroke_color; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_background = global::mederly.Droid.Resource.Color.design_dark_default_color_background; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_error = global::mederly.Droid.Resource.Color.design_dark_default_color_error; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_on_background = global::mederly.Droid.Resource.Color.design_dark_default_color_on_background; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_on_error = global::mederly.Droid.Resource.Color.design_dark_default_color_on_error; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_on_primary = global::mederly.Droid.Resource.Color.design_dark_default_color_on_primary; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_on_secondary = global::mederly.Droid.Resource.Color.design_dark_default_color_on_secondary; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_on_surface = global::mederly.Droid.Resource.Color.design_dark_default_color_on_surface; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_primary = global::mederly.Droid.Resource.Color.design_dark_default_color_primary; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_primary_dark = global::mederly.Droid.Resource.Color.design_dark_default_color_primary_dark; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_primary_variant = global::mederly.Droid.Resource.Color.design_dark_default_color_primary_variant; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_secondary = global::mederly.Droid.Resource.Color.design_dark_default_color_secondary; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_secondary_variant = global::mederly.Droid.Resource.Color.design_dark_default_color_secondary_variant; + global::Xamarin.Forms.Platform.Resource.Color.design_dark_default_color_surface = global::mederly.Droid.Resource.Color.design_dark_default_color_surface; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_background = global::mederly.Droid.Resource.Color.design_default_color_background; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_error = global::mederly.Droid.Resource.Color.design_default_color_error; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_on_background = global::mederly.Droid.Resource.Color.design_default_color_on_background; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_on_error = global::mederly.Droid.Resource.Color.design_default_color_on_error; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_on_primary = global::mederly.Droid.Resource.Color.design_default_color_on_primary; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_on_secondary = global::mederly.Droid.Resource.Color.design_default_color_on_secondary; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_on_surface = global::mederly.Droid.Resource.Color.design_default_color_on_surface; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_primary = global::mederly.Droid.Resource.Color.design_default_color_primary; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_primary_dark = global::mederly.Droid.Resource.Color.design_default_color_primary_dark; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_primary_variant = global::mederly.Droid.Resource.Color.design_default_color_primary_variant; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_secondary = global::mederly.Droid.Resource.Color.design_default_color_secondary; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_secondary_variant = global::mederly.Droid.Resource.Color.design_default_color_secondary_variant; + global::Xamarin.Forms.Platform.Resource.Color.design_default_color_surface = global::mederly.Droid.Resource.Color.design_default_color_surface; + global::Xamarin.Forms.Platform.Resource.Color.design_error = global::mederly.Droid.Resource.Color.design_error; + global::Xamarin.Forms.Platform.Resource.Color.design_fab_shadow_end_color = global::mederly.Droid.Resource.Color.design_fab_shadow_end_color; + global::Xamarin.Forms.Platform.Resource.Color.design_fab_shadow_mid_color = global::mederly.Droid.Resource.Color.design_fab_shadow_mid_color; + global::Xamarin.Forms.Platform.Resource.Color.design_fab_shadow_start_color = global::mederly.Droid.Resource.Color.design_fab_shadow_start_color; + global::Xamarin.Forms.Platform.Resource.Color.design_fab_stroke_end_inner_color = global::mederly.Droid.Resource.Color.design_fab_stroke_end_inner_color; + global::Xamarin.Forms.Platform.Resource.Color.design_fab_stroke_end_outer_color = global::mederly.Droid.Resource.Color.design_fab_stroke_end_outer_color; + global::Xamarin.Forms.Platform.Resource.Color.design_fab_stroke_top_inner_color = global::mederly.Droid.Resource.Color.design_fab_stroke_top_inner_color; + global::Xamarin.Forms.Platform.Resource.Color.design_fab_stroke_top_outer_color = global::mederly.Droid.Resource.Color.design_fab_stroke_top_outer_color; + global::Xamarin.Forms.Platform.Resource.Color.design_icon_tint = global::mederly.Droid.Resource.Color.design_icon_tint; + global::Xamarin.Forms.Platform.Resource.Color.design_snackbar_background_color = global::mederly.Droid.Resource.Color.design_snackbar_background_color; + global::Xamarin.Forms.Platform.Resource.Color.dim_foreground_disabled_material_dark = global::mederly.Droid.Resource.Color.dim_foreground_disabled_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.dim_foreground_disabled_material_light = global::mederly.Droid.Resource.Color.dim_foreground_disabled_material_light; + global::Xamarin.Forms.Platform.Resource.Color.dim_foreground_material_dark = global::mederly.Droid.Resource.Color.dim_foreground_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.dim_foreground_material_light = global::mederly.Droid.Resource.Color.dim_foreground_material_light; + global::Xamarin.Forms.Platform.Resource.Color.error_color_material_dark = global::mederly.Droid.Resource.Color.error_color_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.error_color_material_light = global::mederly.Droid.Resource.Color.error_color_material_light; + global::Xamarin.Forms.Platform.Resource.Color.foreground_material_dark = global::mederly.Droid.Resource.Color.foreground_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.foreground_material_light = global::mederly.Droid.Resource.Color.foreground_material_light; + global::Xamarin.Forms.Platform.Resource.Color.highlighted_text_material_dark = global::mederly.Droid.Resource.Color.highlighted_text_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.highlighted_text_material_light = global::mederly.Droid.Resource.Color.highlighted_text_material_light; + global::Xamarin.Forms.Platform.Resource.Color.material_blue_grey_800 = global::mederly.Droid.Resource.Color.material_blue_grey_800; + global::Xamarin.Forms.Platform.Resource.Color.material_blue_grey_900 = global::mederly.Droid.Resource.Color.material_blue_grey_900; + global::Xamarin.Forms.Platform.Resource.Color.material_blue_grey_950 = global::mederly.Droid.Resource.Color.material_blue_grey_950; + global::Xamarin.Forms.Platform.Resource.Color.material_deep_teal_200 = global::mederly.Droid.Resource.Color.material_deep_teal_200; + global::Xamarin.Forms.Platform.Resource.Color.material_deep_teal_500 = global::mederly.Droid.Resource.Color.material_deep_teal_500; + global::Xamarin.Forms.Platform.Resource.Color.material_grey_100 = global::mederly.Droid.Resource.Color.material_grey_100; + global::Xamarin.Forms.Platform.Resource.Color.material_grey_300 = global::mederly.Droid.Resource.Color.material_grey_300; + global::Xamarin.Forms.Platform.Resource.Color.material_grey_50 = global::mederly.Droid.Resource.Color.material_grey_50; + global::Xamarin.Forms.Platform.Resource.Color.material_grey_600 = global::mederly.Droid.Resource.Color.material_grey_600; + global::Xamarin.Forms.Platform.Resource.Color.material_grey_800 = global::mederly.Droid.Resource.Color.material_grey_800; + global::Xamarin.Forms.Platform.Resource.Color.material_grey_850 = global::mederly.Droid.Resource.Color.material_grey_850; + global::Xamarin.Forms.Platform.Resource.Color.material_grey_900 = global::mederly.Droid.Resource.Color.material_grey_900; + global::Xamarin.Forms.Platform.Resource.Color.material_on_background_disabled = global::mederly.Droid.Resource.Color.material_on_background_disabled; + global::Xamarin.Forms.Platform.Resource.Color.material_on_background_emphasis_high_type = global::mederly.Droid.Resource.Color.material_on_background_emphasis_high_type; + global::Xamarin.Forms.Platform.Resource.Color.material_on_background_emphasis_medium = global::mederly.Droid.Resource.Color.material_on_background_emphasis_medium; + global::Xamarin.Forms.Platform.Resource.Color.material_on_primary_disabled = global::mederly.Droid.Resource.Color.material_on_primary_disabled; + global::Xamarin.Forms.Platform.Resource.Color.material_on_primary_emphasis_high_type = global::mederly.Droid.Resource.Color.material_on_primary_emphasis_high_type; + global::Xamarin.Forms.Platform.Resource.Color.material_on_primary_emphasis_medium = global::mederly.Droid.Resource.Color.material_on_primary_emphasis_medium; + global::Xamarin.Forms.Platform.Resource.Color.material_on_surface_disabled = global::mederly.Droid.Resource.Color.material_on_surface_disabled; + global::Xamarin.Forms.Platform.Resource.Color.material_on_surface_emphasis_high_type = global::mederly.Droid.Resource.Color.material_on_surface_emphasis_high_type; + global::Xamarin.Forms.Platform.Resource.Color.material_on_surface_emphasis_medium = global::mederly.Droid.Resource.Color.material_on_surface_emphasis_medium; + global::Xamarin.Forms.Platform.Resource.Color.material_on_surface_stroke = global::mederly.Droid.Resource.Color.material_on_surface_stroke; + global::Xamarin.Forms.Platform.Resource.Color.material_slider_active_tick_marks_color = global::mederly.Droid.Resource.Color.material_slider_active_tick_marks_color; + global::Xamarin.Forms.Platform.Resource.Color.material_slider_active_track_color = global::mederly.Droid.Resource.Color.material_slider_active_track_color; + global::Xamarin.Forms.Platform.Resource.Color.material_slider_halo_color = global::mederly.Droid.Resource.Color.material_slider_halo_color; + global::Xamarin.Forms.Platform.Resource.Color.material_slider_inactive_tick_marks_color = global::mederly.Droid.Resource.Color.material_slider_inactive_tick_marks_color; + global::Xamarin.Forms.Platform.Resource.Color.material_slider_inactive_track_color = global::mederly.Droid.Resource.Color.material_slider_inactive_track_color; + global::Xamarin.Forms.Platform.Resource.Color.material_slider_thumb_color = global::mederly.Droid.Resource.Color.material_slider_thumb_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_bottom_nav_colored_item_tint = global::mederly.Droid.Resource.Color.mtrl_bottom_nav_colored_item_tint; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_bottom_nav_colored_ripple_color = global::mederly.Droid.Resource.Color.mtrl_bottom_nav_colored_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_bottom_nav_item_tint = global::mederly.Droid.Resource.Color.mtrl_bottom_nav_item_tint; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_bottom_nav_ripple_color = global::mederly.Droid.Resource.Color.mtrl_bottom_nav_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_btn_bg_color_selector = global::mederly.Droid.Resource.Color.mtrl_btn_bg_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_btn_ripple_color = global::mederly.Droid.Resource.Color.mtrl_btn_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_btn_stroke_color_selector = global::mederly.Droid.Resource.Color.mtrl_btn_stroke_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_btn_text_btn_bg_color_selector = global::mederly.Droid.Resource.Color.mtrl_btn_text_btn_bg_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_btn_text_btn_ripple_color = global::mederly.Droid.Resource.Color.mtrl_btn_text_btn_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_btn_text_color_disabled = global::mederly.Droid.Resource.Color.mtrl_btn_text_color_disabled; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_btn_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_btn_text_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_btn_transparent_bg_color = global::mederly.Droid.Resource.Color.mtrl_btn_transparent_bg_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_calendar_item_stroke_color = global::mederly.Droid.Resource.Color.mtrl_calendar_item_stroke_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_calendar_selected_range = global::mederly.Droid.Resource.Color.mtrl_calendar_selected_range; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_card_view_foreground = global::mederly.Droid.Resource.Color.mtrl_card_view_foreground; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_card_view_ripple = global::mederly.Droid.Resource.Color.mtrl_card_view_ripple; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_chip_background_color = global::mederly.Droid.Resource.Color.mtrl_chip_background_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_chip_close_icon_tint = global::mederly.Droid.Resource.Color.mtrl_chip_close_icon_tint; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_chip_ripple_color = global::mederly.Droid.Resource.Color.mtrl_chip_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_chip_surface_color = global::mederly.Droid.Resource.Color.mtrl_chip_surface_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_chip_text_color = global::mederly.Droid.Resource.Color.mtrl_chip_text_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_choice_chip_background_color = global::mederly.Droid.Resource.Color.mtrl_choice_chip_background_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_choice_chip_ripple_color = global::mederly.Droid.Resource.Color.mtrl_choice_chip_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_choice_chip_text_color = global::mederly.Droid.Resource.Color.mtrl_choice_chip_text_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_error = global::mederly.Droid.Resource.Color.mtrl_error; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_fab_bg_color_selector = global::mederly.Droid.Resource.Color.mtrl_fab_bg_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_fab_icon_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_fab_icon_text_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_fab_ripple_color = global::mederly.Droid.Resource.Color.mtrl_fab_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_filled_background_color = global::mederly.Droid.Resource.Color.mtrl_filled_background_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_filled_icon_tint = global::mederly.Droid.Resource.Color.mtrl_filled_icon_tint; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_filled_stroke_color = global::mederly.Droid.Resource.Color.mtrl_filled_stroke_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_indicator_text_color = global::mederly.Droid.Resource.Color.mtrl_indicator_text_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_navigation_item_background_color = global::mederly.Droid.Resource.Color.mtrl_navigation_item_background_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_navigation_item_icon_tint = global::mederly.Droid.Resource.Color.mtrl_navigation_item_icon_tint; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_navigation_item_text_color = global::mederly.Droid.Resource.Color.mtrl_navigation_item_text_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_on_primary_text_btn_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_on_primary_text_btn_text_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_outlined_icon_tint = global::mederly.Droid.Resource.Color.mtrl_outlined_icon_tint; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_outlined_stroke_color = global::mederly.Droid.Resource.Color.mtrl_outlined_stroke_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_popupmenu_overlay_color = global::mederly.Droid.Resource.Color.mtrl_popupmenu_overlay_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_scrim_color = global::mederly.Droid.Resource.Color.mtrl_scrim_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_tabs_colored_ripple_color = global::mederly.Droid.Resource.Color.mtrl_tabs_colored_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_tabs_icon_color_selector = global::mederly.Droid.Resource.Color.mtrl_tabs_icon_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_tabs_icon_color_selector_colored = global::mederly.Droid.Resource.Color.mtrl_tabs_icon_color_selector_colored; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_tabs_legacy_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_tabs_legacy_text_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_tabs_ripple_color = global::mederly.Droid.Resource.Color.mtrl_tabs_ripple_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_textinput_default_box_stroke_color = global::mederly.Droid.Resource.Color.mtrl_textinput_default_box_stroke_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_textinput_disabled_color = global::mederly.Droid.Resource.Color.mtrl_textinput_disabled_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_textinput_filled_box_default_background_color = global::mederly.Droid.Resource.Color.mtrl_textinput_filled_box_default_background_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_textinput_focused_box_stroke_color = global::mederly.Droid.Resource.Color.mtrl_textinput_focused_box_stroke_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_textinput_hovered_box_stroke_color = global::mederly.Droid.Resource.Color.mtrl_textinput_hovered_box_stroke_color; + global::Xamarin.Forms.Platform.Resource.Color.mtrl_text_btn_text_color_selector = global::mederly.Droid.Resource.Color.mtrl_text_btn_text_color_selector; + global::Xamarin.Forms.Platform.Resource.Color.notification_action_color_filter = global::mederly.Droid.Resource.Color.notification_action_color_filter; + global::Xamarin.Forms.Platform.Resource.Color.notification_icon_bg_color = global::mederly.Droid.Resource.Color.notification_icon_bg_color; + global::Xamarin.Forms.Platform.Resource.Color.notification_material_background_media_default_color = global::mederly.Droid.Resource.Color.notification_material_background_media_default_color; + global::Xamarin.Forms.Platform.Resource.Color.primary_dark_material_dark = global::mederly.Droid.Resource.Color.primary_dark_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.primary_dark_material_light = global::mederly.Droid.Resource.Color.primary_dark_material_light; + global::Xamarin.Forms.Platform.Resource.Color.primary_material_dark = global::mederly.Droid.Resource.Color.primary_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.primary_material_light = global::mederly.Droid.Resource.Color.primary_material_light; + global::Xamarin.Forms.Platform.Resource.Color.primary_text_default_material_dark = global::mederly.Droid.Resource.Color.primary_text_default_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.primary_text_default_material_light = global::mederly.Droid.Resource.Color.primary_text_default_material_light; + global::Xamarin.Forms.Platform.Resource.Color.primary_text_disabled_material_dark = global::mederly.Droid.Resource.Color.primary_text_disabled_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.primary_text_disabled_material_light = global::mederly.Droid.Resource.Color.primary_text_disabled_material_light; + global::Xamarin.Forms.Platform.Resource.Color.radiobutton_themeable_attribute_color = global::mederly.Droid.Resource.Color.radiobutton_themeable_attribute_color; + global::Xamarin.Forms.Platform.Resource.Color.ripple_material_dark = global::mederly.Droid.Resource.Color.ripple_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.ripple_material_light = global::mederly.Droid.Resource.Color.ripple_material_light; + global::Xamarin.Forms.Platform.Resource.Color.secondary_text_default_material_dark = global::mederly.Droid.Resource.Color.secondary_text_default_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.secondary_text_default_material_light = global::mederly.Droid.Resource.Color.secondary_text_default_material_light; + global::Xamarin.Forms.Platform.Resource.Color.secondary_text_disabled_material_dark = global::mederly.Droid.Resource.Color.secondary_text_disabled_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.secondary_text_disabled_material_light = global::mederly.Droid.Resource.Color.secondary_text_disabled_material_light; + global::Xamarin.Forms.Platform.Resource.Color.switch_thumb_disabled_material_dark = global::mederly.Droid.Resource.Color.switch_thumb_disabled_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.switch_thumb_disabled_material_light = global::mederly.Droid.Resource.Color.switch_thumb_disabled_material_light; + global::Xamarin.Forms.Platform.Resource.Color.switch_thumb_material_dark = global::mederly.Droid.Resource.Color.switch_thumb_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.switch_thumb_material_light = global::mederly.Droid.Resource.Color.switch_thumb_material_light; + global::Xamarin.Forms.Platform.Resource.Color.switch_thumb_normal_material_dark = global::mederly.Droid.Resource.Color.switch_thumb_normal_material_dark; + global::Xamarin.Forms.Platform.Resource.Color.switch_thumb_normal_material_light = global::mederly.Droid.Resource.Color.switch_thumb_normal_material_light; + global::Xamarin.Forms.Platform.Resource.Color.test_mtrl_calendar_day = global::mederly.Droid.Resource.Color.test_mtrl_calendar_day; + global::Xamarin.Forms.Platform.Resource.Color.test_mtrl_calendar_day_selected = global::mederly.Droid.Resource.Color.test_mtrl_calendar_day_selected; + global::Xamarin.Forms.Platform.Resource.Color.tooltip_background_dark = global::mederly.Droid.Resource.Color.tooltip_background_dark; + global::Xamarin.Forms.Platform.Resource.Color.tooltip_background_light = global::mederly.Droid.Resource.Color.tooltip_background_light; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_content_inset_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_content_inset_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_content_inset_with_nav = global::mederly.Droid.Resource.Dimension.abc_action_bar_content_inset_with_nav; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_default_height_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_default_height_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_default_padding_end_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_default_padding_end_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_default_padding_start_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_default_padding_start_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_elevation_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_elevation_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_icon_vertical_padding_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_icon_vertical_padding_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_overflow_padding_end_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_overflow_padding_end_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_overflow_padding_start_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_overflow_padding_start_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_stacked_max_height = global::mederly.Droid.Resource.Dimension.abc_action_bar_stacked_max_height; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_stacked_tab_max_width = global::mederly.Droid.Resource.Dimension.abc_action_bar_stacked_tab_max_width; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_subtitle_bottom_margin_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_subtitle_bottom_margin_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_bar_subtitle_top_margin_material = global::mederly.Droid.Resource.Dimension.abc_action_bar_subtitle_top_margin_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_button_min_height_material = global::mederly.Droid.Resource.Dimension.abc_action_button_min_height_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_button_min_width_material = global::mederly.Droid.Resource.Dimension.abc_action_button_min_width_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_action_button_min_width_overflow_material = global::mederly.Droid.Resource.Dimension.abc_action_button_min_width_overflow_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_alert_dialog_button_bar_height = global::mederly.Droid.Resource.Dimension.abc_alert_dialog_button_bar_height; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_alert_dialog_button_dimen = global::mederly.Droid.Resource.Dimension.abc_alert_dialog_button_dimen; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_button_inset_horizontal_material = global::mederly.Droid.Resource.Dimension.abc_button_inset_horizontal_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_button_inset_vertical_material = global::mederly.Droid.Resource.Dimension.abc_button_inset_vertical_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_button_padding_horizontal_material = global::mederly.Droid.Resource.Dimension.abc_button_padding_horizontal_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_button_padding_vertical_material = global::mederly.Droid.Resource.Dimension.abc_button_padding_vertical_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_cascading_menus_min_smallest_width = global::mederly.Droid.Resource.Dimension.abc_cascading_menus_min_smallest_width; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_config_prefDialogWidth = global::mederly.Droid.Resource.Dimension.abc_config_prefDialogWidth; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_control_corner_material = global::mederly.Droid.Resource.Dimension.abc_control_corner_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_control_inset_material = global::mederly.Droid.Resource.Dimension.abc_control_inset_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_control_padding_material = global::mederly.Droid.Resource.Dimension.abc_control_padding_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_corner_radius_material = global::mederly.Droid.Resource.Dimension.abc_dialog_corner_radius_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_fixed_height_major = global::mederly.Droid.Resource.Dimension.abc_dialog_fixed_height_major; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_fixed_height_minor = global::mederly.Droid.Resource.Dimension.abc_dialog_fixed_height_minor; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_fixed_width_major = global::mederly.Droid.Resource.Dimension.abc_dialog_fixed_width_major; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_fixed_width_minor = global::mederly.Droid.Resource.Dimension.abc_dialog_fixed_width_minor; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_list_padding_bottom_no_buttons = global::mederly.Droid.Resource.Dimension.abc_dialog_list_padding_bottom_no_buttons; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_list_padding_top_no_title = global::mederly.Droid.Resource.Dimension.abc_dialog_list_padding_top_no_title; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_min_width_major = global::mederly.Droid.Resource.Dimension.abc_dialog_min_width_major; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_min_width_minor = global::mederly.Droid.Resource.Dimension.abc_dialog_min_width_minor; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_padding_material = global::mederly.Droid.Resource.Dimension.abc_dialog_padding_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_padding_top_material = global::mederly.Droid.Resource.Dimension.abc_dialog_padding_top_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dialog_title_divider_material = global::mederly.Droid.Resource.Dimension.abc_dialog_title_divider_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_disabled_alpha_material_dark = global::mederly.Droid.Resource.Dimension.abc_disabled_alpha_material_dark; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_disabled_alpha_material_light = global::mederly.Droid.Resource.Dimension.abc_disabled_alpha_material_light; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dropdownitem_icon_width = global::mederly.Droid.Resource.Dimension.abc_dropdownitem_icon_width; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dropdownitem_text_padding_left = global::mederly.Droid.Resource.Dimension.abc_dropdownitem_text_padding_left; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_dropdownitem_text_padding_right = global::mederly.Droid.Resource.Dimension.abc_dropdownitem_text_padding_right; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_edit_text_inset_bottom_material = global::mederly.Droid.Resource.Dimension.abc_edit_text_inset_bottom_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_edit_text_inset_horizontal_material = global::mederly.Droid.Resource.Dimension.abc_edit_text_inset_horizontal_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_edit_text_inset_top_material = global::mederly.Droid.Resource.Dimension.abc_edit_text_inset_top_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_floating_window_z = global::mederly.Droid.Resource.Dimension.abc_floating_window_z; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_list_item_height_large_material = global::mederly.Droid.Resource.Dimension.abc_list_item_height_large_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_list_item_height_material = global::mederly.Droid.Resource.Dimension.abc_list_item_height_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_list_item_height_small_material = global::mederly.Droid.Resource.Dimension.abc_list_item_height_small_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_list_item_padding_horizontal_material = global::mederly.Droid.Resource.Dimension.abc_list_item_padding_horizontal_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_panel_menu_list_width = global::mederly.Droid.Resource.Dimension.abc_panel_menu_list_width; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_progress_bar_height_material = global::mederly.Droid.Resource.Dimension.abc_progress_bar_height_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_search_view_preferred_height = global::mederly.Droid.Resource.Dimension.abc_search_view_preferred_height; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_search_view_preferred_width = global::mederly.Droid.Resource.Dimension.abc_search_view_preferred_width; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_seekbar_track_background_height_material = global::mederly.Droid.Resource.Dimension.abc_seekbar_track_background_height_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_seekbar_track_progress_height_material = global::mederly.Droid.Resource.Dimension.abc_seekbar_track_progress_height_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_select_dialog_padding_start_material = global::mederly.Droid.Resource.Dimension.abc_select_dialog_padding_start_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_switch_padding = global::mederly.Droid.Resource.Dimension.abc_switch_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_body_1_material = global::mederly.Droid.Resource.Dimension.abc_text_size_body_1_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_body_2_material = global::mederly.Droid.Resource.Dimension.abc_text_size_body_2_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_button_material = global::mederly.Droid.Resource.Dimension.abc_text_size_button_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_caption_material = global::mederly.Droid.Resource.Dimension.abc_text_size_caption_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_display_1_material = global::mederly.Droid.Resource.Dimension.abc_text_size_display_1_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_display_2_material = global::mederly.Droid.Resource.Dimension.abc_text_size_display_2_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_display_3_material = global::mederly.Droid.Resource.Dimension.abc_text_size_display_3_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_display_4_material = global::mederly.Droid.Resource.Dimension.abc_text_size_display_4_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_headline_material = global::mederly.Droid.Resource.Dimension.abc_text_size_headline_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_large_material = global::mederly.Droid.Resource.Dimension.abc_text_size_large_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_medium_material = global::mederly.Droid.Resource.Dimension.abc_text_size_medium_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_menu_header_material = global::mederly.Droid.Resource.Dimension.abc_text_size_menu_header_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_menu_material = global::mederly.Droid.Resource.Dimension.abc_text_size_menu_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_small_material = global::mederly.Droid.Resource.Dimension.abc_text_size_small_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_subhead_material = global::mederly.Droid.Resource.Dimension.abc_text_size_subhead_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_subtitle_material_toolbar = global::mederly.Droid.Resource.Dimension.abc_text_size_subtitle_material_toolbar; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_title_material = global::mederly.Droid.Resource.Dimension.abc_text_size_title_material; + global::Xamarin.Forms.Platform.Resource.Dimension.abc_text_size_title_material_toolbar = global::mederly.Droid.Resource.Dimension.abc_text_size_title_material_toolbar; + global::Xamarin.Forms.Platform.Resource.Dimension.action_bar_size = global::mederly.Droid.Resource.Dimension.action_bar_size; + global::Xamarin.Forms.Platform.Resource.Dimension.appcompat_dialog_background_inset = global::mederly.Droid.Resource.Dimension.appcompat_dialog_background_inset; + global::Xamarin.Forms.Platform.Resource.Dimension.cardview_compat_inset_shadow = global::mederly.Droid.Resource.Dimension.cardview_compat_inset_shadow; + global::Xamarin.Forms.Platform.Resource.Dimension.cardview_default_elevation = global::mederly.Droid.Resource.Dimension.cardview_default_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.cardview_default_radius = global::mederly.Droid.Resource.Dimension.cardview_default_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.compat_button_inset_horizontal_material = global::mederly.Droid.Resource.Dimension.compat_button_inset_horizontal_material; + global::Xamarin.Forms.Platform.Resource.Dimension.compat_button_inset_vertical_material = global::mederly.Droid.Resource.Dimension.compat_button_inset_vertical_material; + global::Xamarin.Forms.Platform.Resource.Dimension.compat_button_padding_horizontal_material = global::mederly.Droid.Resource.Dimension.compat_button_padding_horizontal_material; + global::Xamarin.Forms.Platform.Resource.Dimension.compat_button_padding_vertical_material = global::mederly.Droid.Resource.Dimension.compat_button_padding_vertical_material; + global::Xamarin.Forms.Platform.Resource.Dimension.compat_control_corner_material = global::mederly.Droid.Resource.Dimension.compat_control_corner_material; + global::Xamarin.Forms.Platform.Resource.Dimension.compat_notification_large_icon_max_height = global::mederly.Droid.Resource.Dimension.compat_notification_large_icon_max_height; + global::Xamarin.Forms.Platform.Resource.Dimension.compat_notification_large_icon_max_width = global::mederly.Droid.Resource.Dimension.compat_notification_large_icon_max_width; + global::Xamarin.Forms.Platform.Resource.Dimension.default_dimension = global::mederly.Droid.Resource.Dimension.default_dimension; + global::Xamarin.Forms.Platform.Resource.Dimension.def_drawer_elevation = global::mederly.Droid.Resource.Dimension.def_drawer_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.design_appbar_elevation = global::mederly.Droid.Resource.Dimension.design_appbar_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_active_item_max_width = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_active_item_max_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_active_item_min_width = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_active_item_min_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_active_text_size = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_active_text_size; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_elevation = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_height = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_height; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_icon_size = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_icon_size; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_item_max_width = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_item_max_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_item_min_width = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_item_min_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_margin = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_shadow_height = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_shadow_height; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_navigation_text_size = global::mederly.Droid.Resource.Dimension.design_bottom_navigation_text_size; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_sheet_elevation = global::mederly.Droid.Resource.Dimension.design_bottom_sheet_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_sheet_modal_elevation = global::mederly.Droid.Resource.Dimension.design_bottom_sheet_modal_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.design_bottom_sheet_peek_height_min = global::mederly.Droid.Resource.Dimension.design_bottom_sheet_peek_height_min; + global::Xamarin.Forms.Platform.Resource.Dimension.design_fab_border_width = global::mederly.Droid.Resource.Dimension.design_fab_border_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_fab_elevation = global::mederly.Droid.Resource.Dimension.design_fab_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.design_fab_image_size = global::mederly.Droid.Resource.Dimension.design_fab_image_size; + global::Xamarin.Forms.Platform.Resource.Dimension.design_fab_size_mini = global::mederly.Droid.Resource.Dimension.design_fab_size_mini; + global::Xamarin.Forms.Platform.Resource.Dimension.design_fab_size_normal = global::mederly.Droid.Resource.Dimension.design_fab_size_normal; + global::Xamarin.Forms.Platform.Resource.Dimension.design_fab_translation_z_hovered_focused = global::mederly.Droid.Resource.Dimension.design_fab_translation_z_hovered_focused; + global::Xamarin.Forms.Platform.Resource.Dimension.design_fab_translation_z_pressed = global::mederly.Droid.Resource.Dimension.design_fab_translation_z_pressed; + global::Xamarin.Forms.Platform.Resource.Dimension.design_navigation_elevation = global::mederly.Droid.Resource.Dimension.design_navigation_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.design_navigation_icon_padding = global::mederly.Droid.Resource.Dimension.design_navigation_icon_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.design_navigation_icon_size = global::mederly.Droid.Resource.Dimension.design_navigation_icon_size; + global::Xamarin.Forms.Platform.Resource.Dimension.design_navigation_item_horizontal_padding = global::mederly.Droid.Resource.Dimension.design_navigation_item_horizontal_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.design_navigation_item_icon_padding = global::mederly.Droid.Resource.Dimension.design_navigation_item_icon_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.design_navigation_max_width = global::mederly.Droid.Resource.Dimension.design_navigation_max_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_navigation_padding_bottom = global::mederly.Droid.Resource.Dimension.design_navigation_padding_bottom; + global::Xamarin.Forms.Platform.Resource.Dimension.design_navigation_separator_vertical_padding = global::mederly.Droid.Resource.Dimension.design_navigation_separator_vertical_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_action_inline_max_width = global::mederly.Droid.Resource.Dimension.design_snackbar_action_inline_max_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_action_text_color_alpha = global::mederly.Droid.Resource.Dimension.design_snackbar_action_text_color_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_background_corner_radius = global::mederly.Droid.Resource.Dimension.design_snackbar_background_corner_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_elevation = global::mederly.Droid.Resource.Dimension.design_snackbar_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_extra_spacing_horizontal = global::mederly.Droid.Resource.Dimension.design_snackbar_extra_spacing_horizontal; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_max_width = global::mederly.Droid.Resource.Dimension.design_snackbar_max_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_min_width = global::mederly.Droid.Resource.Dimension.design_snackbar_min_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_padding_horizontal = global::mederly.Droid.Resource.Dimension.design_snackbar_padding_horizontal; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_padding_vertical = global::mederly.Droid.Resource.Dimension.design_snackbar_padding_vertical; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_padding_vertical_2lines = global::mederly.Droid.Resource.Dimension.design_snackbar_padding_vertical_2lines; + global::Xamarin.Forms.Platform.Resource.Dimension.design_snackbar_text_size = global::mederly.Droid.Resource.Dimension.design_snackbar_text_size; + global::Xamarin.Forms.Platform.Resource.Dimension.design_tab_max_width = global::mederly.Droid.Resource.Dimension.design_tab_max_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_tab_scrollable_min_width = global::mederly.Droid.Resource.Dimension.design_tab_scrollable_min_width; + global::Xamarin.Forms.Platform.Resource.Dimension.design_tab_text_size = global::mederly.Droid.Resource.Dimension.design_tab_text_size; + global::Xamarin.Forms.Platform.Resource.Dimension.design_tab_text_size_2line = global::mederly.Droid.Resource.Dimension.design_tab_text_size_2line; + global::Xamarin.Forms.Platform.Resource.Dimension.design_textinput_caption_translate_y = global::mederly.Droid.Resource.Dimension.design_textinput_caption_translate_y; + global::Xamarin.Forms.Platform.Resource.Dimension.disabled_alpha_material_dark = global::mederly.Droid.Resource.Dimension.disabled_alpha_material_dark; + global::Xamarin.Forms.Platform.Resource.Dimension.disabled_alpha_material_light = global::mederly.Droid.Resource.Dimension.disabled_alpha_material_light; + global::Xamarin.Forms.Platform.Resource.Dimension.fastscroll_default_thickness = global::mederly.Droid.Resource.Dimension.fastscroll_default_thickness; + global::Xamarin.Forms.Platform.Resource.Dimension.fastscroll_margin = global::mederly.Droid.Resource.Dimension.fastscroll_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.fastscroll_minimum_range = global::mederly.Droid.Resource.Dimension.fastscroll_minimum_range; + global::Xamarin.Forms.Platform.Resource.Dimension.highlight_alpha_material_colored = global::mederly.Droid.Resource.Dimension.highlight_alpha_material_colored; + global::Xamarin.Forms.Platform.Resource.Dimension.highlight_alpha_material_dark = global::mederly.Droid.Resource.Dimension.highlight_alpha_material_dark; + global::Xamarin.Forms.Platform.Resource.Dimension.highlight_alpha_material_light = global::mederly.Droid.Resource.Dimension.highlight_alpha_material_light; + global::Xamarin.Forms.Platform.Resource.Dimension.hint_alpha_material_dark = global::mederly.Droid.Resource.Dimension.hint_alpha_material_dark; + global::Xamarin.Forms.Platform.Resource.Dimension.hint_alpha_material_light = global::mederly.Droid.Resource.Dimension.hint_alpha_material_light; + global::Xamarin.Forms.Platform.Resource.Dimension.hint_pressed_alpha_material_dark = global::mederly.Droid.Resource.Dimension.hint_pressed_alpha_material_dark; + global::Xamarin.Forms.Platform.Resource.Dimension.hint_pressed_alpha_material_light = global::mederly.Droid.Resource.Dimension.hint_pressed_alpha_material_light; + global::Xamarin.Forms.Platform.Resource.Dimension.item_touch_helper_max_drag_scroll_per_frame = global::mederly.Droid.Resource.Dimension.item_touch_helper_max_drag_scroll_per_frame; + global::Xamarin.Forms.Platform.Resource.Dimension.item_touch_helper_swipe_escape_max_velocity = global::mederly.Droid.Resource.Dimension.item_touch_helper_swipe_escape_max_velocity; + global::Xamarin.Forms.Platform.Resource.Dimension.item_touch_helper_swipe_escape_velocity = global::mederly.Droid.Resource.Dimension.item_touch_helper_swipe_escape_velocity; + global::Xamarin.Forms.Platform.Resource.Dimension.material_emphasis_disabled = global::mederly.Droid.Resource.Dimension.material_emphasis_disabled; + global::Xamarin.Forms.Platform.Resource.Dimension.material_emphasis_high_type = global::mederly.Droid.Resource.Dimension.material_emphasis_high_type; + global::Xamarin.Forms.Platform.Resource.Dimension.material_emphasis_medium = global::mederly.Droid.Resource.Dimension.material_emphasis_medium; + global::Xamarin.Forms.Platform.Resource.Dimension.material_text_view_test_line_height = global::mederly.Droid.Resource.Dimension.material_text_view_test_line_height; + global::Xamarin.Forms.Platform.Resource.Dimension.material_text_view_test_line_height_override = global::mederly.Droid.Resource.Dimension.material_text_view_test_line_height_override; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_alert_dialog_background_inset_bottom = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_background_inset_bottom; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_alert_dialog_background_inset_end = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_background_inset_end; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_alert_dialog_background_inset_start = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_background_inset_start; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_alert_dialog_background_inset_top = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_background_inset_top; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_alert_dialog_picker_background_inset = global::mederly.Droid.Resource.Dimension.mtrl_alert_dialog_picker_background_inset; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_badge_horizontal_edge_offset = global::mederly.Droid.Resource.Dimension.mtrl_badge_horizontal_edge_offset; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_badge_long_text_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_badge_long_text_horizontal_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_badge_radius = global::mederly.Droid.Resource.Dimension.mtrl_badge_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_badge_text_horizontal_edge_offset = global::mederly.Droid.Resource.Dimension.mtrl_badge_text_horizontal_edge_offset; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_badge_text_size = global::mederly.Droid.Resource.Dimension.mtrl_badge_text_size; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_badge_with_text_radius = global::mederly.Droid.Resource.Dimension.mtrl_badge_with_text_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_bottomappbar_fabOffsetEndMode = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fabOffsetEndMode; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_bottomappbar_fab_bottom_margin = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fab_bottom_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_bottomappbar_fab_cradle_margin = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fab_cradle_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_bottomappbar_fab_cradle_rounded_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fab_cradle_rounded_corner_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_bottomappbar_fab_cradle_vertical_offset = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_fab_cradle_vertical_offset; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_bottomappbar_height = global::mederly.Droid.Resource.Dimension.mtrl_bottomappbar_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_btn_corner_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_dialog_btn_min_width = global::mederly.Droid.Resource.Dimension.mtrl_btn_dialog_btn_min_width; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_disabled_elevation = global::mederly.Droid.Resource.Dimension.mtrl_btn_disabled_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_disabled_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_disabled_z; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_elevation = global::mederly.Droid.Resource.Dimension.mtrl_btn_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_focused_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_focused_z; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_hovered_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_hovered_z; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_icon_btn_padding_left = global::mederly.Droid.Resource.Dimension.mtrl_btn_icon_btn_padding_left; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_icon_padding = global::mederly.Droid.Resource.Dimension.mtrl_btn_icon_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_inset = global::mederly.Droid.Resource.Dimension.mtrl_btn_inset; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_letter_spacing = global::mederly.Droid.Resource.Dimension.mtrl_btn_letter_spacing; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_padding_bottom = global::mederly.Droid.Resource.Dimension.mtrl_btn_padding_bottom; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_padding_left = global::mederly.Droid.Resource.Dimension.mtrl_btn_padding_left; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_padding_right = global::mederly.Droid.Resource.Dimension.mtrl_btn_padding_right; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_padding_top = global::mederly.Droid.Resource.Dimension.mtrl_btn_padding_top; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_pressed_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_pressed_z; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_stroke_size = global::mederly.Droid.Resource.Dimension.mtrl_btn_stroke_size; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_text_btn_icon_padding = global::mederly.Droid.Resource.Dimension.mtrl_btn_text_btn_icon_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_text_btn_padding_left = global::mederly.Droid.Resource.Dimension.mtrl_btn_text_btn_padding_left; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_text_btn_padding_right = global::mederly.Droid.Resource.Dimension.mtrl_btn_text_btn_padding_right; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_text_size = global::mederly.Droid.Resource.Dimension.mtrl_btn_text_size; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_btn_z = global::mederly.Droid.Resource.Dimension.mtrl_btn_z; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_action_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_action_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_action_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_action_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_bottom_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_bottom_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_content_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_content_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_days_of_week_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_days_of_week_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_day_corner = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_corner; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_day_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_day_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_horizontal_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_day_today_stroke = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_today_stroke; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_day_vertical_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_vertical_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_day_width = global::mederly.Droid.Resource.Dimension.mtrl_calendar_day_width; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_dialog_background_inset = global::mederly.Droid.Resource.Dimension.mtrl_calendar_dialog_background_inset; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_content_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_content_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_content_padding_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_content_padding_fullscreen; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_divider_thickness = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_divider_thickness; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_height_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_height_fullscreen; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_selection_line_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_selection_line_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_text_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_text_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_toggle_margin_bottom = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_toggle_margin_bottom; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_header_toggle_margin_top = global::mederly.Droid.Resource.Dimension.mtrl_calendar_header_toggle_margin_top; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_landscape_header_width = global::mederly.Droid.Resource.Dimension.mtrl_calendar_landscape_header_width; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_maximum_default_fullscreen_minor_axis = global::mederly.Droid.Resource.Dimension.mtrl_calendar_maximum_default_fullscreen_minor_axis; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_month_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_month_horizontal_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_month_vertical_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_month_vertical_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_navigation_bottom_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_navigation_bottom_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_navigation_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_navigation_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_navigation_top_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_navigation_top_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_pre_l_text_clip_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_pre_l_text_clip_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_selection_baseline_to_top_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_selection_baseline_to_top_fullscreen; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom = global::mederly.Droid.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom_fullscreen; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_top = global::mederly.Droid.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_top; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_text_input_padding_top = global::mederly.Droid.Resource.Dimension.mtrl_calendar_text_input_padding_top; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_title_baseline_to_top = global::mederly.Droid.Resource.Dimension.mtrl_calendar_title_baseline_to_top; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_title_baseline_to_top_fullscreen = global::mederly.Droid.Resource.Dimension.mtrl_calendar_title_baseline_to_top_fullscreen; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_year_corner = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_corner; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_year_height = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_year_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_horizontal_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_year_vertical_padding = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_vertical_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_calendar_year_width = global::mederly.Droid.Resource.Dimension.mtrl_calendar_year_width; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_card_checked_icon_margin = global::mederly.Droid.Resource.Dimension.mtrl_card_checked_icon_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_card_checked_icon_size = global::mederly.Droid.Resource.Dimension.mtrl_card_checked_icon_size; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_card_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_card_corner_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_card_dragged_z = global::mederly.Droid.Resource.Dimension.mtrl_card_dragged_z; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_card_elevation = global::mederly.Droid.Resource.Dimension.mtrl_card_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_card_spacing = global::mederly.Droid.Resource.Dimension.mtrl_card_spacing; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_chip_pressed_translation_z = global::mederly.Droid.Resource.Dimension.mtrl_chip_pressed_translation_z; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_chip_text_size = global::mederly.Droid.Resource.Dimension.mtrl_chip_text_size; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_edittext_rectangle_top_offset = global::mederly.Droid.Resource.Dimension.mtrl_edittext_rectangle_top_offset; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_elevation = global::mederly.Droid.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_offset = global::mederly.Droid.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_offset; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_padding = global::mederly.Droid.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_bottom_padding = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_bottom_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_corner_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_disabled_elevation = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_disabled_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_disabled_translation_z = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_disabled_translation_z; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_elevation = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_end_padding = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_end_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_end_padding_icon = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_end_padding_icon; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_icon_size = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_icon_size; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_icon_text_spacing = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_icon_text_spacing; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_min_height = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_min_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_min_width = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_min_width; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_start_padding = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_start_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_start_padding_icon = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_start_padding_icon; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_top_padding = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_top_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_translation_z_base = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_translation_z_base; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_translation_z_hovered_focused = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_translation_z_hovered_focused; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_extended_fab_translation_z_pressed = global::mederly.Droid.Resource.Dimension.mtrl_extended_fab_translation_z_pressed; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_fab_elevation = global::mederly.Droid.Resource.Dimension.mtrl_fab_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_fab_min_touch_target = global::mederly.Droid.Resource.Dimension.mtrl_fab_min_touch_target; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_fab_translation_z_hovered_focused = global::mederly.Droid.Resource.Dimension.mtrl_fab_translation_z_hovered_focused; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_fab_translation_z_pressed = global::mederly.Droid.Resource.Dimension.mtrl_fab_translation_z_pressed; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_high_ripple_default_alpha = global::mederly.Droid.Resource.Dimension.mtrl_high_ripple_default_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_high_ripple_focused_alpha = global::mederly.Droid.Resource.Dimension.mtrl_high_ripple_focused_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_high_ripple_hovered_alpha = global::mederly.Droid.Resource.Dimension.mtrl_high_ripple_hovered_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_high_ripple_pressed_alpha = global::mederly.Droid.Resource.Dimension.mtrl_high_ripple_pressed_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_large_touch_target = global::mederly.Droid.Resource.Dimension.mtrl_large_touch_target; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_low_ripple_default_alpha = global::mederly.Droid.Resource.Dimension.mtrl_low_ripple_default_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_low_ripple_focused_alpha = global::mederly.Droid.Resource.Dimension.mtrl_low_ripple_focused_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_low_ripple_hovered_alpha = global::mederly.Droid.Resource.Dimension.mtrl_low_ripple_hovered_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_low_ripple_pressed_alpha = global::mederly.Droid.Resource.Dimension.mtrl_low_ripple_pressed_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_min_touch_target_size = global::mederly.Droid.Resource.Dimension.mtrl_min_touch_target_size; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_navigation_elevation = global::mederly.Droid.Resource.Dimension.mtrl_navigation_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_navigation_item_horizontal_padding = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_horizontal_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_navigation_item_icon_padding = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_icon_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_navigation_item_icon_size = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_icon_size; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_navigation_item_shape_horizontal_margin = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_shape_horizontal_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_navigation_item_shape_vertical_margin = global::mederly.Droid.Resource.Dimension.mtrl_navigation_item_shape_vertical_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_shape_corner_size_large_component = global::mederly.Droid.Resource.Dimension.mtrl_shape_corner_size_large_component; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_shape_corner_size_medium_component = global::mederly.Droid.Resource.Dimension.mtrl_shape_corner_size_medium_component; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_shape_corner_size_small_component = global::mederly.Droid.Resource.Dimension.mtrl_shape_corner_size_small_component; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_halo_radius = global::mederly.Droid.Resource.Dimension.mtrl_slider_halo_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_label_padding = global::mederly.Droid.Resource.Dimension.mtrl_slider_label_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_label_radius = global::mederly.Droid.Resource.Dimension.mtrl_slider_label_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_label_square_side = global::mederly.Droid.Resource.Dimension.mtrl_slider_label_square_side; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_thumb_elevation = global::mederly.Droid.Resource.Dimension.mtrl_slider_thumb_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_thumb_radius = global::mederly.Droid.Resource.Dimension.mtrl_slider_thumb_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_track_height = global::mederly.Droid.Resource.Dimension.mtrl_slider_track_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_track_side_padding = global::mederly.Droid.Resource.Dimension.mtrl_slider_track_side_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_track_top = global::mederly.Droid.Resource.Dimension.mtrl_slider_track_top; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_slider_widget_height = global::mederly.Droid.Resource.Dimension.mtrl_slider_widget_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_snackbar_action_text_color_alpha = global::mederly.Droid.Resource.Dimension.mtrl_snackbar_action_text_color_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_snackbar_background_corner_radius = global::mederly.Droid.Resource.Dimension.mtrl_snackbar_background_corner_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_snackbar_background_overlay_color_alpha = global::mederly.Droid.Resource.Dimension.mtrl_snackbar_background_overlay_color_alpha; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_snackbar_margin = global::mederly.Droid.Resource.Dimension.mtrl_snackbar_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_switch_thumb_elevation = global::mederly.Droid.Resource.Dimension.mtrl_switch_thumb_elevation; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_box_corner_radius_medium = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_corner_radius_medium; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_box_corner_radius_small = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_corner_radius_small; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_box_label_cutout_padding = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_label_cutout_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_box_stroke_width_default = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_stroke_width_default; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_box_stroke_width_focused = global::mederly.Droid.Resource.Dimension.mtrl_textinput_box_stroke_width_focused; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_counter_margin_start = global::mederly.Droid.Resource.Dimension.mtrl_textinput_counter_margin_start; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_end_icon_margin_start = global::mederly.Droid.Resource.Dimension.mtrl_textinput_end_icon_margin_start; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_outline_box_expanded_padding = global::mederly.Droid.Resource.Dimension.mtrl_textinput_outline_box_expanded_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_textinput_start_icon_margin_end = global::mederly.Droid.Resource.Dimension.mtrl_textinput_start_icon_margin_end; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_toolbar_default_height = global::mederly.Droid.Resource.Dimension.mtrl_toolbar_default_height; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_tooltip_arrowSize = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_arrowSize; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_tooltip_cornerSize = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_cornerSize; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_tooltip_minHeight = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_minHeight; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_tooltip_minWidth = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_minWidth; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_tooltip_padding = global::mederly.Droid.Resource.Dimension.mtrl_tooltip_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.mtrl_transition_shared_axis_slide_distance = global::mederly.Droid.Resource.Dimension.mtrl_transition_shared_axis_slide_distance; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_action_icon_size = global::mederly.Droid.Resource.Dimension.notification_action_icon_size; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_action_text_size = global::mederly.Droid.Resource.Dimension.notification_action_text_size; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_big_circle_margin = global::mederly.Droid.Resource.Dimension.notification_big_circle_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_content_margin_start = global::mederly.Droid.Resource.Dimension.notification_content_margin_start; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_large_icon_height = global::mederly.Droid.Resource.Dimension.notification_large_icon_height; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_large_icon_width = global::mederly.Droid.Resource.Dimension.notification_large_icon_width; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_main_column_padding_top = global::mederly.Droid.Resource.Dimension.notification_main_column_padding_top; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_media_narrow_margin = global::mederly.Droid.Resource.Dimension.notification_media_narrow_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_right_icon_size = global::mederly.Droid.Resource.Dimension.notification_right_icon_size; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_right_side_padding_top = global::mederly.Droid.Resource.Dimension.notification_right_side_padding_top; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_small_icon_background_padding = global::mederly.Droid.Resource.Dimension.notification_small_icon_background_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_small_icon_size_as_large = global::mederly.Droid.Resource.Dimension.notification_small_icon_size_as_large; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_subtext_size = global::mederly.Droid.Resource.Dimension.notification_subtext_size; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_top_pad = global::mederly.Droid.Resource.Dimension.notification_top_pad; + global::Xamarin.Forms.Platform.Resource.Dimension.notification_top_pad_large_text = global::mederly.Droid.Resource.Dimension.notification_top_pad_large_text; + global::Xamarin.Forms.Platform.Resource.Dimension.test_mtrl_calendar_day_cornerSize = global::mederly.Droid.Resource.Dimension.test_mtrl_calendar_day_cornerSize; + global::Xamarin.Forms.Platform.Resource.Dimension.tooltip_corner_radius = global::mederly.Droid.Resource.Dimension.tooltip_corner_radius; + global::Xamarin.Forms.Platform.Resource.Dimension.tooltip_horizontal_padding = global::mederly.Droid.Resource.Dimension.tooltip_horizontal_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.tooltip_margin = global::mederly.Droid.Resource.Dimension.tooltip_margin; + global::Xamarin.Forms.Platform.Resource.Dimension.tooltip_precise_anchor_extra_offset = global::mederly.Droid.Resource.Dimension.tooltip_precise_anchor_extra_offset; + global::Xamarin.Forms.Platform.Resource.Dimension.tooltip_precise_anchor_threshold = global::mederly.Droid.Resource.Dimension.tooltip_precise_anchor_threshold; + global::Xamarin.Forms.Platform.Resource.Dimension.tooltip_vertical_padding = global::mederly.Droid.Resource.Dimension.tooltip_vertical_padding; + global::Xamarin.Forms.Platform.Resource.Dimension.tooltip_y_offset_non_touch = global::mederly.Droid.Resource.Dimension.tooltip_y_offset_non_touch; + global::Xamarin.Forms.Platform.Resource.Dimension.tooltip_y_offset_touch = global::mederly.Droid.Resource.Dimension.tooltip_y_offset_touch; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ab_share_pack_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ab_share_pack_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_action_bar_item_background_material = global::mederly.Droid.Resource.Drawable.abc_action_bar_item_background_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_borderless_material = global::mederly.Droid.Resource.Drawable.abc_btn_borderless_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_check_material = global::mederly.Droid.Resource.Drawable.abc_btn_check_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_check_material_anim = global::mederly.Droid.Resource.Drawable.abc_btn_check_material_anim; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_check_to_on_mtrl_000 = global::mederly.Droid.Resource.Drawable.abc_btn_check_to_on_mtrl_000; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_check_to_on_mtrl_015 = global::mederly.Droid.Resource.Drawable.abc_btn_check_to_on_mtrl_015; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_colored_material = global::mederly.Droid.Resource.Drawable.abc_btn_colored_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_default_mtrl_shape = global::mederly.Droid.Resource.Drawable.abc_btn_default_mtrl_shape; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_radio_material = global::mederly.Droid.Resource.Drawable.abc_btn_radio_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_radio_material_anim = global::mederly.Droid.Resource.Drawable.abc_btn_radio_material_anim; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_radio_to_on_mtrl_000 = global::mederly.Droid.Resource.Drawable.abc_btn_radio_to_on_mtrl_000; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_radio_to_on_mtrl_015 = global::mederly.Droid.Resource.Drawable.abc_btn_radio_to_on_mtrl_015; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_switch_to_on_mtrl_00001 = global::mederly.Droid.Resource.Drawable.abc_btn_switch_to_on_mtrl_00001; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_btn_switch_to_on_mtrl_00012 = global::mederly.Droid.Resource.Drawable.abc_btn_switch_to_on_mtrl_00012; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_cab_background_internal_bg = global::mederly.Droid.Resource.Drawable.abc_cab_background_internal_bg; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_cab_background_top_material = global::mederly.Droid.Resource.Drawable.abc_cab_background_top_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_cab_background_top_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_cab_background_top_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_control_background_material = global::mederly.Droid.Resource.Drawable.abc_control_background_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_dialog_material_background = global::mederly.Droid.Resource.Drawable.abc_dialog_material_background; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_edit_text_material = global::mederly.Droid.Resource.Drawable.abc_edit_text_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_ab_back_material = global::mederly.Droid.Resource.Drawable.abc_ic_ab_back_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_arrow_drop_right_black_24dp = global::mederly.Droid.Resource.Drawable.abc_ic_arrow_drop_right_black_24dp; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_clear_material = global::mederly.Droid.Resource.Drawable.abc_ic_clear_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_commit_search_api_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_commit_search_api_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_go_search_api_material = global::mederly.Droid.Resource.Drawable.abc_ic_go_search_api_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_menu_copy_mtrl_am_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_copy_mtrl_am_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_menu_cut_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_cut_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_menu_overflow_material = global::mederly.Droid.Resource.Drawable.abc_ic_menu_overflow_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_menu_paste_mtrl_am_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_paste_mtrl_am_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_menu_selectall_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_selectall_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_menu_share_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_ic_menu_share_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_search_api_material = global::mederly.Droid.Resource.Drawable.abc_ic_search_api_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_star_black_16dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_black_16dp; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_star_black_36dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_black_36dp; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_star_black_48dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_black_48dp; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_star_half_black_16dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_half_black_16dp; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_star_half_black_36dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_half_black_36dp; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_star_half_black_48dp = global::mederly.Droid.Resource.Drawable.abc_ic_star_half_black_48dp; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ic_voice_search_api_material = global::mederly.Droid.Resource.Drawable.abc_ic_voice_search_api_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_item_background_holo_dark = global::mederly.Droid.Resource.Drawable.abc_item_background_holo_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_item_background_holo_light = global::mederly.Droid.Resource.Drawable.abc_item_background_holo_light; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_divider_material = global::mederly.Droid.Resource.Drawable.abc_list_divider_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_divider_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_list_divider_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_focused_holo = global::mederly.Droid.Resource.Drawable.abc_list_focused_holo; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_longpressed_holo = global::mederly.Droid.Resource.Drawable.abc_list_longpressed_holo; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_pressed_holo_dark = global::mederly.Droid.Resource.Drawable.abc_list_pressed_holo_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_pressed_holo_light = global::mederly.Droid.Resource.Drawable.abc_list_pressed_holo_light; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_selector_background_transition_holo_dark = global::mederly.Droid.Resource.Drawable.abc_list_selector_background_transition_holo_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_selector_background_transition_holo_light = global::mederly.Droid.Resource.Drawable.abc_list_selector_background_transition_holo_light; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_selector_disabled_holo_dark = global::mederly.Droid.Resource.Drawable.abc_list_selector_disabled_holo_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_selector_disabled_holo_light = global::mederly.Droid.Resource.Drawable.abc_list_selector_disabled_holo_light; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_selector_holo_dark = global::mederly.Droid.Resource.Drawable.abc_list_selector_holo_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_list_selector_holo_light = global::mederly.Droid.Resource.Drawable.abc_list_selector_holo_light; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_menu_hardkey_panel_mtrl_mult = global::mederly.Droid.Resource.Drawable.abc_menu_hardkey_panel_mtrl_mult; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_popup_background_mtrl_mult = global::mederly.Droid.Resource.Drawable.abc_popup_background_mtrl_mult; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ratingbar_indicator_material = global::mederly.Droid.Resource.Drawable.abc_ratingbar_indicator_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ratingbar_material = global::mederly.Droid.Resource.Drawable.abc_ratingbar_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_ratingbar_small_material = global::mederly.Droid.Resource.Drawable.abc_ratingbar_small_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_scrubber_control_off_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_scrubber_control_off_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_000 = global::mederly.Droid.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_000; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_005 = global::mederly.Droid.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_005; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_scrubber_primary_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_scrubber_primary_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_scrubber_track_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_scrubber_track_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_seekbar_thumb_material = global::mederly.Droid.Resource.Drawable.abc_seekbar_thumb_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_seekbar_tick_mark_material = global::mederly.Droid.Resource.Drawable.abc_seekbar_tick_mark_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_seekbar_track_material = global::mederly.Droid.Resource.Drawable.abc_seekbar_track_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_spinner_mtrl_am_alpha = global::mederly.Droid.Resource.Drawable.abc_spinner_mtrl_am_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_spinner_textfield_background_material = global::mederly.Droid.Resource.Drawable.abc_spinner_textfield_background_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_switch_thumb_material = global::mederly.Droid.Resource.Drawable.abc_switch_thumb_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_switch_track_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_switch_track_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_tab_indicator_material = global::mederly.Droid.Resource.Drawable.abc_tab_indicator_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_tab_indicator_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_tab_indicator_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_textfield_activated_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_textfield_activated_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_textfield_default_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_textfield_default_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_textfield_search_activated_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_textfield_search_activated_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_textfield_search_default_mtrl_alpha = global::mederly.Droid.Resource.Drawable.abc_textfield_search_default_mtrl_alpha; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_textfield_search_material = global::mederly.Droid.Resource.Drawable.abc_textfield_search_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_text_cursor_material = global::mederly.Droid.Resource.Drawable.abc_text_cursor_material; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_text_select_handle_left_mtrl_dark = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_left_mtrl_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_text_select_handle_left_mtrl_light = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_left_mtrl_light; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_text_select_handle_middle_mtrl_dark = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_middle_mtrl_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_text_select_handle_middle_mtrl_light = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_middle_mtrl_light; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_text_select_handle_right_mtrl_dark = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_right_mtrl_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_text_select_handle_right_mtrl_light = global::mederly.Droid.Resource.Drawable.abc_text_select_handle_right_mtrl_light; + global::Xamarin.Forms.Platform.Resource.Drawable.abc_vector_test = global::mederly.Droid.Resource.Drawable.abc_vector_test; + global::Xamarin.Forms.Platform.Resource.Drawable.avd_hide_password = global::mederly.Droid.Resource.Drawable.avd_hide_password; + global::Xamarin.Forms.Platform.Resource.Drawable.avd_show_password = global::mederly.Droid.Resource.Drawable.avd_show_password; + global::Xamarin.Forms.Platform.Resource.Drawable.btn_checkbox_checked_mtrl = global::mederly.Droid.Resource.Drawable.btn_checkbox_checked_mtrl; + global::Xamarin.Forms.Platform.Resource.Drawable.btn_checkbox_checked_to_unchecked_mtrl_animation = global::mederly.Droid.Resource.Drawable.btn_checkbox_checked_to_unchecked_mtrl_animation; + global::Xamarin.Forms.Platform.Resource.Drawable.btn_checkbox_unchecked_mtrl = global::mederly.Droid.Resource.Drawable.btn_checkbox_unchecked_mtrl; + global::Xamarin.Forms.Platform.Resource.Drawable.btn_checkbox_unchecked_to_checked_mtrl_animation = global::mederly.Droid.Resource.Drawable.btn_checkbox_unchecked_to_checked_mtrl_animation; + global::Xamarin.Forms.Platform.Resource.Drawable.btn_radio_off_mtrl = global::mederly.Droid.Resource.Drawable.btn_radio_off_mtrl; + global::Xamarin.Forms.Platform.Resource.Drawable.btn_radio_off_to_on_mtrl_animation = global::mederly.Droid.Resource.Drawable.btn_radio_off_to_on_mtrl_animation; + global::Xamarin.Forms.Platform.Resource.Drawable.btn_radio_on_mtrl = global::mederly.Droid.Resource.Drawable.btn_radio_on_mtrl; + global::Xamarin.Forms.Platform.Resource.Drawable.btn_radio_on_to_off_mtrl_animation = global::mederly.Droid.Resource.Drawable.btn_radio_on_to_off_mtrl_animation; + global::Xamarin.Forms.Platform.Resource.Drawable.design_bottom_navigation_item_background = global::mederly.Droid.Resource.Drawable.design_bottom_navigation_item_background; + global::Xamarin.Forms.Platform.Resource.Drawable.design_fab_background = global::mederly.Droid.Resource.Drawable.design_fab_background; + global::Xamarin.Forms.Platform.Resource.Drawable.design_ic_visibility = global::mederly.Droid.Resource.Drawable.design_ic_visibility; + global::Xamarin.Forms.Platform.Resource.Drawable.design_ic_visibility_off = global::mederly.Droid.Resource.Drawable.design_ic_visibility_off; + global::Xamarin.Forms.Platform.Resource.Drawable.design_password_eye = global::mederly.Droid.Resource.Drawable.design_password_eye; + global::Xamarin.Forms.Platform.Resource.Drawable.design_snackbar_background = global::mederly.Droid.Resource.Drawable.design_snackbar_background; + global::Xamarin.Forms.Platform.Resource.Drawable.ic_mtrl_checked_circle = global::mederly.Droid.Resource.Drawable.ic_mtrl_checked_circle; + global::Xamarin.Forms.Platform.Resource.Drawable.ic_mtrl_chip_checked_black = global::mederly.Droid.Resource.Drawable.ic_mtrl_chip_checked_black; + global::Xamarin.Forms.Platform.Resource.Drawable.ic_mtrl_chip_checked_circle = global::mederly.Droid.Resource.Drawable.ic_mtrl_chip_checked_circle; + global::Xamarin.Forms.Platform.Resource.Drawable.ic_mtrl_chip_close_circle = global::mederly.Droid.Resource.Drawable.ic_mtrl_chip_close_circle; + global::Xamarin.Forms.Platform.Resource.Drawable.material_ic_calendar_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_calendar_black_24dp; + global::Xamarin.Forms.Platform.Resource.Drawable.material_ic_clear_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_clear_black_24dp; + global::Xamarin.Forms.Platform.Resource.Drawable.material_ic_edit_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_edit_black_24dp; + global::Xamarin.Forms.Platform.Resource.Drawable.material_ic_keyboard_arrow_left_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_keyboard_arrow_left_black_24dp; + global::Xamarin.Forms.Platform.Resource.Drawable.material_ic_keyboard_arrow_right_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_keyboard_arrow_right_black_24dp; + global::Xamarin.Forms.Platform.Resource.Drawable.material_ic_menu_arrow_down_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_menu_arrow_down_black_24dp; + global::Xamarin.Forms.Platform.Resource.Drawable.material_ic_menu_arrow_up_black_24dp = global::mederly.Droid.Resource.Drawable.material_ic_menu_arrow_up_black_24dp; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_dialog_background = global::mederly.Droid.Resource.Drawable.mtrl_dialog_background; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_dropdown_arrow = global::mederly.Droid.Resource.Drawable.mtrl_dropdown_arrow; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_ic_arrow_drop_down = global::mederly.Droid.Resource.Drawable.mtrl_ic_arrow_drop_down; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_ic_arrow_drop_up = global::mederly.Droid.Resource.Drawable.mtrl_ic_arrow_drop_up; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_ic_cancel = global::mederly.Droid.Resource.Drawable.mtrl_ic_cancel; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_ic_error = global::mederly.Droid.Resource.Drawable.mtrl_ic_error; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_popupmenu_background = global::mederly.Droid.Resource.Drawable.mtrl_popupmenu_background; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_popupmenu_background_dark = global::mederly.Droid.Resource.Drawable.mtrl_popupmenu_background_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.mtrl_tabs_default_indicator = global::mederly.Droid.Resource.Drawable.mtrl_tabs_default_indicator; + global::Xamarin.Forms.Platform.Resource.Drawable.navigation_empty_icon = global::mederly.Droid.Resource.Drawable.navigation_empty_icon; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_action_background = global::mederly.Droid.Resource.Drawable.notification_action_background; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_bg = global::mederly.Droid.Resource.Drawable.notification_bg; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_bg_low = global::mederly.Droid.Resource.Drawable.notification_bg_low; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_bg_low_normal = global::mederly.Droid.Resource.Drawable.notification_bg_low_normal; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_bg_low_pressed = global::mederly.Droid.Resource.Drawable.notification_bg_low_pressed; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_bg_normal = global::mederly.Droid.Resource.Drawable.notification_bg_normal; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_bg_normal_pressed = global::mederly.Droid.Resource.Drawable.notification_bg_normal_pressed; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_icon_background = global::mederly.Droid.Resource.Drawable.notification_icon_background; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_template_icon_bg = global::mederly.Droid.Resource.Drawable.notification_template_icon_bg; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_template_icon_low_bg = global::mederly.Droid.Resource.Drawable.notification_template_icon_low_bg; + global::Xamarin.Forms.Platform.Resource.Drawable.notification_tile_bg = global::mederly.Droid.Resource.Drawable.notification_tile_bg; + global::Xamarin.Forms.Platform.Resource.Drawable.notify_panel_notification_icon_bg = global::mederly.Droid.Resource.Drawable.notify_panel_notification_icon_bg; + global::Xamarin.Forms.Platform.Resource.Drawable.test_custom_background = global::mederly.Droid.Resource.Drawable.test_custom_background; + global::Xamarin.Forms.Platform.Resource.Drawable.tooltip_frame_dark = global::mederly.Droid.Resource.Drawable.tooltip_frame_dark; + global::Xamarin.Forms.Platform.Resource.Drawable.tooltip_frame_light = global::mederly.Droid.Resource.Drawable.tooltip_frame_light; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_action_clickable_span = global::mederly.Droid.Resource.Id.accessibility_action_clickable_span; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_0 = global::mederly.Droid.Resource.Id.accessibility_custom_action_0; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_1 = global::mederly.Droid.Resource.Id.accessibility_custom_action_1; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_10 = global::mederly.Droid.Resource.Id.accessibility_custom_action_10; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_11 = global::mederly.Droid.Resource.Id.accessibility_custom_action_11; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_12 = global::mederly.Droid.Resource.Id.accessibility_custom_action_12; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_13 = global::mederly.Droid.Resource.Id.accessibility_custom_action_13; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_14 = global::mederly.Droid.Resource.Id.accessibility_custom_action_14; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_15 = global::mederly.Droid.Resource.Id.accessibility_custom_action_15; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_16 = global::mederly.Droid.Resource.Id.accessibility_custom_action_16; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_17 = global::mederly.Droid.Resource.Id.accessibility_custom_action_17; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_18 = global::mederly.Droid.Resource.Id.accessibility_custom_action_18; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_19 = global::mederly.Droid.Resource.Id.accessibility_custom_action_19; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_2 = global::mederly.Droid.Resource.Id.accessibility_custom_action_2; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_20 = global::mederly.Droid.Resource.Id.accessibility_custom_action_20; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_21 = global::mederly.Droid.Resource.Id.accessibility_custom_action_21; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_22 = global::mederly.Droid.Resource.Id.accessibility_custom_action_22; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_23 = global::mederly.Droid.Resource.Id.accessibility_custom_action_23; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_24 = global::mederly.Droid.Resource.Id.accessibility_custom_action_24; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_25 = global::mederly.Droid.Resource.Id.accessibility_custom_action_25; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_26 = global::mederly.Droid.Resource.Id.accessibility_custom_action_26; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_27 = global::mederly.Droid.Resource.Id.accessibility_custom_action_27; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_28 = global::mederly.Droid.Resource.Id.accessibility_custom_action_28; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_29 = global::mederly.Droid.Resource.Id.accessibility_custom_action_29; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_3 = global::mederly.Droid.Resource.Id.accessibility_custom_action_3; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_30 = global::mederly.Droid.Resource.Id.accessibility_custom_action_30; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_31 = global::mederly.Droid.Resource.Id.accessibility_custom_action_31; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_4 = global::mederly.Droid.Resource.Id.accessibility_custom_action_4; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_5 = global::mederly.Droid.Resource.Id.accessibility_custom_action_5; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_6 = global::mederly.Droid.Resource.Id.accessibility_custom_action_6; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_7 = global::mederly.Droid.Resource.Id.accessibility_custom_action_7; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_8 = global::mederly.Droid.Resource.Id.accessibility_custom_action_8; + global::Xamarin.Forms.Platform.Resource.Id.accessibility_custom_action_9 = global::mederly.Droid.Resource.Id.accessibility_custom_action_9; + global::Xamarin.Forms.Platform.Resource.Id.action0 = global::mederly.Droid.Resource.Id.action0; + global::Xamarin.Forms.Platform.Resource.Id.actions = global::mederly.Droid.Resource.Id.actions; + global::Xamarin.Forms.Platform.Resource.Id.action_bar = global::mederly.Droid.Resource.Id.action_bar; + global::Xamarin.Forms.Platform.Resource.Id.action_bar_activity_content = global::mederly.Droid.Resource.Id.action_bar_activity_content; + global::Xamarin.Forms.Platform.Resource.Id.action_bar_container = global::mederly.Droid.Resource.Id.action_bar_container; + global::Xamarin.Forms.Platform.Resource.Id.action_bar_root = global::mederly.Droid.Resource.Id.action_bar_root; + global::Xamarin.Forms.Platform.Resource.Id.action_bar_spinner = global::mederly.Droid.Resource.Id.action_bar_spinner; + global::Xamarin.Forms.Platform.Resource.Id.action_bar_subtitle = global::mederly.Droid.Resource.Id.action_bar_subtitle; + global::Xamarin.Forms.Platform.Resource.Id.action_bar_title = global::mederly.Droid.Resource.Id.action_bar_title; + global::Xamarin.Forms.Platform.Resource.Id.action_container = global::mederly.Droid.Resource.Id.action_container; + global::Xamarin.Forms.Platform.Resource.Id.action_context_bar = global::mederly.Droid.Resource.Id.action_context_bar; + global::Xamarin.Forms.Platform.Resource.Id.action_divider = global::mederly.Droid.Resource.Id.action_divider; + global::Xamarin.Forms.Platform.Resource.Id.action_image = global::mederly.Droid.Resource.Id.action_image; + global::Xamarin.Forms.Platform.Resource.Id.action_menu_divider = global::mederly.Droid.Resource.Id.action_menu_divider; + global::Xamarin.Forms.Platform.Resource.Id.action_menu_presenter = global::mederly.Droid.Resource.Id.action_menu_presenter; + global::Xamarin.Forms.Platform.Resource.Id.action_mode_bar = global::mederly.Droid.Resource.Id.action_mode_bar; + global::Xamarin.Forms.Platform.Resource.Id.action_mode_bar_stub = global::mederly.Droid.Resource.Id.action_mode_bar_stub; + global::Xamarin.Forms.Platform.Resource.Id.action_mode_close_button = global::mederly.Droid.Resource.Id.action_mode_close_button; + global::Xamarin.Forms.Platform.Resource.Id.action_text = global::mederly.Droid.Resource.Id.action_text; + global::Xamarin.Forms.Platform.Resource.Id.activity_chooser_view_content = global::mederly.Droid.Resource.Id.activity_chooser_view_content; + global::Xamarin.Forms.Platform.Resource.Id.add = global::mederly.Droid.Resource.Id.add; + global::Xamarin.Forms.Platform.Resource.Id.alertTitle = global::mederly.Droid.Resource.Id.alertTitle; + global::Xamarin.Forms.Platform.Resource.Id.all = global::mederly.Droid.Resource.Id.all; + global::Xamarin.Forms.Platform.Resource.Id.ALT = global::mederly.Droid.Resource.Id.ALT; + global::Xamarin.Forms.Platform.Resource.Id.always = global::mederly.Droid.Resource.Id.always; + global::Xamarin.Forms.Platform.Resource.Id.async = global::mederly.Droid.Resource.Id.async; + global::Xamarin.Forms.Platform.Resource.Id.auto = global::mederly.Droid.Resource.Id.auto; + global::Xamarin.Forms.Platform.Resource.Id.beginning = global::mederly.Droid.Resource.Id.beginning; + global::Xamarin.Forms.Platform.Resource.Id.blocking = global::mederly.Droid.Resource.Id.blocking; + global::Xamarin.Forms.Platform.Resource.Id.bottom = global::mederly.Droid.Resource.Id.bottom; + global::Xamarin.Forms.Platform.Resource.Id.bottomtab_navarea = global::mederly.Droid.Resource.Id.bottomtab_navarea; + global::Xamarin.Forms.Platform.Resource.Id.bottomtab_tabbar = global::mederly.Droid.Resource.Id.bottomtab_tabbar; + global::Xamarin.Forms.Platform.Resource.Id.BOTTOM_END = global::mederly.Droid.Resource.Id.BOTTOM_END; + global::Xamarin.Forms.Platform.Resource.Id.BOTTOM_START = global::mederly.Droid.Resource.Id.BOTTOM_START; + global::Xamarin.Forms.Platform.Resource.Id.buttonPanel = global::mederly.Droid.Resource.Id.buttonPanel; + global::Xamarin.Forms.Platform.Resource.Id.cancel_action = global::mederly.Droid.Resource.Id.cancel_action; + global::Xamarin.Forms.Platform.Resource.Id.cancel_button = global::mederly.Droid.Resource.Id.cancel_button; + global::Xamarin.Forms.Platform.Resource.Id.center = global::mederly.Droid.Resource.Id.center; + global::Xamarin.Forms.Platform.Resource.Id.center_horizontal = global::mederly.Droid.Resource.Id.center_horizontal; + global::Xamarin.Forms.Platform.Resource.Id.center_vertical = global::mederly.Droid.Resource.Id.center_vertical; + global::Xamarin.Forms.Platform.Resource.Id.checkbox = global::mederly.Droid.Resource.Id.checkbox; + global::Xamarin.Forms.Platform.Resource.Id.@checked = global::mederly.Droid.Resource.Id.@checked; + global::Xamarin.Forms.Platform.Resource.Id.chip = global::mederly.Droid.Resource.Id.chip; + global::Xamarin.Forms.Platform.Resource.Id.chip1 = global::mederly.Droid.Resource.Id.chip1; + global::Xamarin.Forms.Platform.Resource.Id.chip2 = global::mederly.Droid.Resource.Id.chip2; + global::Xamarin.Forms.Platform.Resource.Id.chip3 = global::mederly.Droid.Resource.Id.chip3; + global::Xamarin.Forms.Platform.Resource.Id.chip_group = global::mederly.Droid.Resource.Id.chip_group; + global::Xamarin.Forms.Platform.Resource.Id.chronometer = global::mederly.Droid.Resource.Id.chronometer; + global::Xamarin.Forms.Platform.Resource.Id.clear_text = global::mederly.Droid.Resource.Id.clear_text; + global::Xamarin.Forms.Platform.Resource.Id.clip_horizontal = global::mederly.Droid.Resource.Id.clip_horizontal; + global::Xamarin.Forms.Platform.Resource.Id.clip_vertical = global::mederly.Droid.Resource.Id.clip_vertical; + global::Xamarin.Forms.Platform.Resource.Id.collapseActionView = global::mederly.Droid.Resource.Id.collapseActionView; + global::Xamarin.Forms.Platform.Resource.Id.confirm_button = global::mederly.Droid.Resource.Id.confirm_button; + global::Xamarin.Forms.Platform.Resource.Id.container = global::mederly.Droid.Resource.Id.container; + global::Xamarin.Forms.Platform.Resource.Id.content = global::mederly.Droid.Resource.Id.content; + global::Xamarin.Forms.Platform.Resource.Id.contentPanel = global::mederly.Droid.Resource.Id.contentPanel; + global::Xamarin.Forms.Platform.Resource.Id.coordinator = global::mederly.Droid.Resource.Id.coordinator; + global::Xamarin.Forms.Platform.Resource.Id.CTRL = global::mederly.Droid.Resource.Id.CTRL; + global::Xamarin.Forms.Platform.Resource.Id.custom = global::mederly.Droid.Resource.Id.custom; + global::Xamarin.Forms.Platform.Resource.Id.customPanel = global::mederly.Droid.Resource.Id.customPanel; + global::Xamarin.Forms.Platform.Resource.Id.cut = global::mederly.Droid.Resource.Id.cut; + global::Xamarin.Forms.Platform.Resource.Id.date_picker_actions = global::mederly.Droid.Resource.Id.date_picker_actions; + global::Xamarin.Forms.Platform.Resource.Id.decor_content_parent = global::mederly.Droid.Resource.Id.decor_content_parent; + global::Xamarin.Forms.Platform.Resource.Id.default_activity_button = global::mederly.Droid.Resource.Id.default_activity_button; + global::Xamarin.Forms.Platform.Resource.Id.design_bottom_sheet = global::mederly.Droid.Resource.Id.design_bottom_sheet; + global::Xamarin.Forms.Platform.Resource.Id.design_menu_item_action_area = global::mederly.Droid.Resource.Id.design_menu_item_action_area; + global::Xamarin.Forms.Platform.Resource.Id.design_menu_item_action_area_stub = global::mederly.Droid.Resource.Id.design_menu_item_action_area_stub; + global::Xamarin.Forms.Platform.Resource.Id.design_menu_item_text = global::mederly.Droid.Resource.Id.design_menu_item_text; + global::Xamarin.Forms.Platform.Resource.Id.design_navigation_view = global::mederly.Droid.Resource.Id.design_navigation_view; + global::Xamarin.Forms.Platform.Resource.Id.dialog_button = global::mederly.Droid.Resource.Id.dialog_button; + global::Xamarin.Forms.Platform.Resource.Id.disableHome = global::mederly.Droid.Resource.Id.disableHome; + global::Xamarin.Forms.Platform.Resource.Id.dropdown_menu = global::mederly.Droid.Resource.Id.dropdown_menu; + global::Xamarin.Forms.Platform.Resource.Id.edit_query = global::mederly.Droid.Resource.Id.edit_query; + global::Xamarin.Forms.Platform.Resource.Id.end = global::mederly.Droid.Resource.Id.end; + global::Xamarin.Forms.Platform.Resource.Id.end_padder = global::mederly.Droid.Resource.Id.end_padder; + global::Xamarin.Forms.Platform.Resource.Id.enterAlways = global::mederly.Droid.Resource.Id.enterAlways; + global::Xamarin.Forms.Platform.Resource.Id.enterAlwaysCollapsed = global::mederly.Droid.Resource.Id.enterAlwaysCollapsed; + global::Xamarin.Forms.Platform.Resource.Id.exitUntilCollapsed = global::mederly.Droid.Resource.Id.exitUntilCollapsed; + global::Xamarin.Forms.Platform.Resource.Id.expanded_menu = global::mederly.Droid.Resource.Id.expanded_menu; + global::Xamarin.Forms.Platform.Resource.Id.expand_activities_button = global::mederly.Droid.Resource.Id.expand_activities_button; + global::Xamarin.Forms.Platform.Resource.Id.fade = global::mederly.Droid.Resource.Id.fade; + global::Xamarin.Forms.Platform.Resource.Id.fill = global::mederly.Droid.Resource.Id.fill; + global::Xamarin.Forms.Platform.Resource.Id.filled = global::mederly.Droid.Resource.Id.filled; + global::Xamarin.Forms.Platform.Resource.Id.fill_horizontal = global::mederly.Droid.Resource.Id.fill_horizontal; + global::Xamarin.Forms.Platform.Resource.Id.fill_vertical = global::mederly.Droid.Resource.Id.fill_vertical; + global::Xamarin.Forms.Platform.Resource.Id.fitToContents = global::mederly.Droid.Resource.Id.fitToContents; + global::Xamarin.Forms.Platform.Resource.Id.@fixed = global::mederly.Droid.Resource.Id.@fixed; + global::Xamarin.Forms.Platform.Resource.Id.floating = global::mederly.Droid.Resource.Id.floating; + global::Xamarin.Forms.Platform.Resource.Id.flyoutcontent_appbar = global::mederly.Droid.Resource.Id.flyoutcontent_appbar; + global::Xamarin.Forms.Platform.Resource.Id.forever = global::mederly.Droid.Resource.Id.forever; + global::Xamarin.Forms.Platform.Resource.Id.fragment_container_view_tag = global::mederly.Droid.Resource.Id.fragment_container_view_tag; + global::Xamarin.Forms.Platform.Resource.Id.FUNCTION = global::mederly.Droid.Resource.Id.FUNCTION; + global::Xamarin.Forms.Platform.Resource.Id.ghost_view = global::mederly.Droid.Resource.Id.ghost_view; + global::Xamarin.Forms.Platform.Resource.Id.ghost_view_holder = global::mederly.Droid.Resource.Id.ghost_view_holder; + global::Xamarin.Forms.Platform.Resource.Id.gone = global::mederly.Droid.Resource.Id.gone; + global::Xamarin.Forms.Platform.Resource.Id.group_divider = global::mederly.Droid.Resource.Id.group_divider; + global::Xamarin.Forms.Platform.Resource.Id.hideable = global::mederly.Droid.Resource.Id.hideable; + global::Xamarin.Forms.Platform.Resource.Id.home = global::mederly.Droid.Resource.Id.home; + global::Xamarin.Forms.Platform.Resource.Id.homeAsUp = global::mederly.Droid.Resource.Id.homeAsUp; + global::Xamarin.Forms.Platform.Resource.Id.icon = global::mederly.Droid.Resource.Id.icon; + global::Xamarin.Forms.Platform.Resource.Id.icon_group = global::mederly.Droid.Resource.Id.icon_group; + global::Xamarin.Forms.Platform.Resource.Id.ifRoom = global::mederly.Droid.Resource.Id.ifRoom; + global::Xamarin.Forms.Platform.Resource.Id.image = global::mederly.Droid.Resource.Id.image; + global::Xamarin.Forms.Platform.Resource.Id.info = global::mederly.Droid.Resource.Id.info; + global::Xamarin.Forms.Platform.Resource.Id.italic = global::mederly.Droid.Resource.Id.italic; + global::Xamarin.Forms.Platform.Resource.Id.item_touch_helper_previous_elevation = global::mederly.Droid.Resource.Id.item_touch_helper_previous_elevation; + global::Xamarin.Forms.Platform.Resource.Id.labeled = global::mederly.Droid.Resource.Id.labeled; + global::Xamarin.Forms.Platform.Resource.Id.largeLabel = global::mederly.Droid.Resource.Id.largeLabel; + global::Xamarin.Forms.Platform.Resource.Id.left = global::mederly.Droid.Resource.Id.left; + global::Xamarin.Forms.Platform.Resource.Id.line1 = global::mederly.Droid.Resource.Id.line1; + global::Xamarin.Forms.Platform.Resource.Id.line3 = global::mederly.Droid.Resource.Id.line3; + global::Xamarin.Forms.Platform.Resource.Id.listMode = global::mederly.Droid.Resource.Id.listMode; + global::Xamarin.Forms.Platform.Resource.Id.list_item = global::mederly.Droid.Resource.Id.list_item; + global::Xamarin.Forms.Platform.Resource.Id.main_appbar = global::mederly.Droid.Resource.Id.main_appbar; + global::Xamarin.Forms.Platform.Resource.Id.main_tablayout = global::mederly.Droid.Resource.Id.main_tablayout; + global::Xamarin.Forms.Platform.Resource.Id.main_toolbar = global::mederly.Droid.Resource.Id.main_toolbar; + global::Xamarin.Forms.Platform.Resource.Id.main_viewpager = global::mederly.Droid.Resource.Id.main_viewpager; + global::Xamarin.Forms.Platform.Resource.Id.masked = global::mederly.Droid.Resource.Id.masked; + global::Xamarin.Forms.Platform.Resource.Id.media_actions = global::mederly.Droid.Resource.Id.media_actions; + global::Xamarin.Forms.Platform.Resource.Id.media_controller_compat_view_tag = global::mederly.Droid.Resource.Id.media_controller_compat_view_tag; + global::Xamarin.Forms.Platform.Resource.Id.message = global::mederly.Droid.Resource.Id.message; + global::Xamarin.Forms.Platform.Resource.Id.META = global::mederly.Droid.Resource.Id.META; + global::Xamarin.Forms.Platform.Resource.Id.middle = global::mederly.Droid.Resource.Id.middle; + global::Xamarin.Forms.Platform.Resource.Id.mini = global::mederly.Droid.Resource.Id.mini; + global::Xamarin.Forms.Platform.Resource.Id.month_grid = global::mederly.Droid.Resource.Id.month_grid; + global::Xamarin.Forms.Platform.Resource.Id.month_navigation_bar = global::mederly.Droid.Resource.Id.month_navigation_bar; + global::Xamarin.Forms.Platform.Resource.Id.month_navigation_fragment_toggle = global::mederly.Droid.Resource.Id.month_navigation_fragment_toggle; + global::Xamarin.Forms.Platform.Resource.Id.month_navigation_next = global::mederly.Droid.Resource.Id.month_navigation_next; + global::Xamarin.Forms.Platform.Resource.Id.month_navigation_previous = global::mederly.Droid.Resource.Id.month_navigation_previous; + global::Xamarin.Forms.Platform.Resource.Id.month_title = global::mederly.Droid.Resource.Id.month_title; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_calendar_days_of_week = global::mederly.Droid.Resource.Id.mtrl_calendar_days_of_week; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_calendar_day_selector_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_day_selector_frame; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_calendar_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_frame; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_calendar_main_pane = global::mederly.Droid.Resource.Id.mtrl_calendar_main_pane; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_calendar_months = global::mederly.Droid.Resource.Id.mtrl_calendar_months; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_calendar_selection_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_selection_frame; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_calendar_text_input_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_text_input_frame; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_calendar_year_selector_frame = global::mederly.Droid.Resource.Id.mtrl_calendar_year_selector_frame; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_card_checked_layer_id = global::mederly.Droid.Resource.Id.mtrl_card_checked_layer_id; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_child_content_container = global::mederly.Droid.Resource.Id.mtrl_child_content_container; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_internal_children_alpha_tag = global::mederly.Droid.Resource.Id.mtrl_internal_children_alpha_tag; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_motion_snapshot_view = global::mederly.Droid.Resource.Id.mtrl_motion_snapshot_view; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_fullscreen = global::mederly.Droid.Resource.Id.mtrl_picker_fullscreen; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_header = global::mederly.Droid.Resource.Id.mtrl_picker_header; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_header_selection_text = global::mederly.Droid.Resource.Id.mtrl_picker_header_selection_text; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_header_title_and_selection = global::mederly.Droid.Resource.Id.mtrl_picker_header_title_and_selection; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_header_toggle = global::mederly.Droid.Resource.Id.mtrl_picker_header_toggle; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_text_input_date = global::mederly.Droid.Resource.Id.mtrl_picker_text_input_date; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_text_input_range_end = global::mederly.Droid.Resource.Id.mtrl_picker_text_input_range_end; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_text_input_range_start = global::mederly.Droid.Resource.Id.mtrl_picker_text_input_range_start; + global::Xamarin.Forms.Platform.Resource.Id.mtrl_picker_title_text = global::mederly.Droid.Resource.Id.mtrl_picker_title_text; + global::Xamarin.Forms.Platform.Resource.Id.multiply = global::mederly.Droid.Resource.Id.multiply; + global::Xamarin.Forms.Platform.Resource.Id.navigation_header_container = global::mederly.Droid.Resource.Id.navigation_header_container; + global::Xamarin.Forms.Platform.Resource.Id.never = global::mederly.Droid.Resource.Id.never; + global::Xamarin.Forms.Platform.Resource.Id.none = global::mederly.Droid.Resource.Id.none; + global::Xamarin.Forms.Platform.Resource.Id.normal = global::mederly.Droid.Resource.Id.normal; + global::Xamarin.Forms.Platform.Resource.Id.noScroll = global::mederly.Droid.Resource.Id.noScroll; + global::Xamarin.Forms.Platform.Resource.Id.notification_background = global::mederly.Droid.Resource.Id.notification_background; + global::Xamarin.Forms.Platform.Resource.Id.notification_main_column = global::mederly.Droid.Resource.Id.notification_main_column; + global::Xamarin.Forms.Platform.Resource.Id.notification_main_column_container = global::mederly.Droid.Resource.Id.notification_main_column_container; + global::Xamarin.Forms.Platform.Resource.Id.off = global::mederly.Droid.Resource.Id.off; + global::Xamarin.Forms.Platform.Resource.Id.on = global::mederly.Droid.Resource.Id.on; + global::Xamarin.Forms.Platform.Resource.Id.outline = global::mederly.Droid.Resource.Id.outline; + global::Xamarin.Forms.Platform.Resource.Id.parallax = global::mederly.Droid.Resource.Id.parallax; + global::Xamarin.Forms.Platform.Resource.Id.parentPanel = global::mederly.Droid.Resource.Id.parentPanel; + global::Xamarin.Forms.Platform.Resource.Id.parent_matrix = global::mederly.Droid.Resource.Id.parent_matrix; + global::Xamarin.Forms.Platform.Resource.Id.password_toggle = global::mederly.Droid.Resource.Id.password_toggle; + global::Xamarin.Forms.Platform.Resource.Id.peekHeight = global::mederly.Droid.Resource.Id.peekHeight; + global::Xamarin.Forms.Platform.Resource.Id.pin = global::mederly.Droid.Resource.Id.pin; + global::Xamarin.Forms.Platform.Resource.Id.progress_circular = global::mederly.Droid.Resource.Id.progress_circular; + global::Xamarin.Forms.Platform.Resource.Id.progress_horizontal = global::mederly.Droid.Resource.Id.progress_horizontal; + global::Xamarin.Forms.Platform.Resource.Id.radio = global::mederly.Droid.Resource.Id.radio; + global::Xamarin.Forms.Platform.Resource.Id.right = global::mederly.Droid.Resource.Id.right; + global::Xamarin.Forms.Platform.Resource.Id.right_icon = global::mederly.Droid.Resource.Id.right_icon; + global::Xamarin.Forms.Platform.Resource.Id.right_side = global::mederly.Droid.Resource.Id.right_side; + global::Xamarin.Forms.Platform.Resource.Id.rounded = global::mederly.Droid.Resource.Id.rounded; + global::Xamarin.Forms.Platform.Resource.Id.row_index_key = global::mederly.Droid.Resource.Id.row_index_key; + global::Xamarin.Forms.Platform.Resource.Id.save_non_transition_alpha = global::mederly.Droid.Resource.Id.save_non_transition_alpha; + global::Xamarin.Forms.Platform.Resource.Id.save_overlay_view = global::mederly.Droid.Resource.Id.save_overlay_view; + global::Xamarin.Forms.Platform.Resource.Id.scale = global::mederly.Droid.Resource.Id.scale; + global::Xamarin.Forms.Platform.Resource.Id.screen = global::mederly.Droid.Resource.Id.screen; + global::Xamarin.Forms.Platform.Resource.Id.scroll = global::mederly.Droid.Resource.Id.scroll; + global::Xamarin.Forms.Platform.Resource.Id.scrollable = global::mederly.Droid.Resource.Id.scrollable; + global::Xamarin.Forms.Platform.Resource.Id.scrollIndicatorDown = global::mederly.Droid.Resource.Id.scrollIndicatorDown; + global::Xamarin.Forms.Platform.Resource.Id.scrollIndicatorUp = global::mederly.Droid.Resource.Id.scrollIndicatorUp; + global::Xamarin.Forms.Platform.Resource.Id.scrollView = global::mederly.Droid.Resource.Id.scrollView; + global::Xamarin.Forms.Platform.Resource.Id.search_badge = global::mederly.Droid.Resource.Id.search_badge; + global::Xamarin.Forms.Platform.Resource.Id.search_bar = global::mederly.Droid.Resource.Id.search_bar; + global::Xamarin.Forms.Platform.Resource.Id.search_button = global::mederly.Droid.Resource.Id.search_button; + global::Xamarin.Forms.Platform.Resource.Id.search_close_btn = global::mederly.Droid.Resource.Id.search_close_btn; + global::Xamarin.Forms.Platform.Resource.Id.search_edit_frame = global::mederly.Droid.Resource.Id.search_edit_frame; + global::Xamarin.Forms.Platform.Resource.Id.search_go_btn = global::mederly.Droid.Resource.Id.search_go_btn; + global::Xamarin.Forms.Platform.Resource.Id.search_mag_icon = global::mederly.Droid.Resource.Id.search_mag_icon; + global::Xamarin.Forms.Platform.Resource.Id.search_plate = global::mederly.Droid.Resource.Id.search_plate; + global::Xamarin.Forms.Platform.Resource.Id.search_src_text = global::mederly.Droid.Resource.Id.search_src_text; + global::Xamarin.Forms.Platform.Resource.Id.search_voice_btn = global::mederly.Droid.Resource.Id.search_voice_btn; + global::Xamarin.Forms.Platform.Resource.Id.selected = global::mederly.Droid.Resource.Id.selected; + global::Xamarin.Forms.Platform.Resource.Id.select_dialog_listview = global::mederly.Droid.Resource.Id.select_dialog_listview; + global::Xamarin.Forms.Platform.Resource.Id.shellcontent_appbar = global::mederly.Droid.Resource.Id.shellcontent_appbar; + global::Xamarin.Forms.Platform.Resource.Id.shellcontent_toolbar = global::mederly.Droid.Resource.Id.shellcontent_toolbar; + global::Xamarin.Forms.Platform.Resource.Id.SHIFT = global::mederly.Droid.Resource.Id.SHIFT; + global::Xamarin.Forms.Platform.Resource.Id.shortcut = global::mederly.Droid.Resource.Id.shortcut; + global::Xamarin.Forms.Platform.Resource.Id.showCustom = global::mederly.Droid.Resource.Id.showCustom; + global::Xamarin.Forms.Platform.Resource.Id.showHome = global::mederly.Droid.Resource.Id.showHome; + global::Xamarin.Forms.Platform.Resource.Id.showTitle = global::mederly.Droid.Resource.Id.showTitle; + global::Xamarin.Forms.Platform.Resource.Id.skipCollapsed = global::mederly.Droid.Resource.Id.skipCollapsed; + global::Xamarin.Forms.Platform.Resource.Id.slide = global::mederly.Droid.Resource.Id.slide; + global::Xamarin.Forms.Platform.Resource.Id.sliding_tabs = global::mederly.Droid.Resource.Id.sliding_tabs; + global::Xamarin.Forms.Platform.Resource.Id.smallLabel = global::mederly.Droid.Resource.Id.smallLabel; + global::Xamarin.Forms.Platform.Resource.Id.snackbar_action = global::mederly.Droid.Resource.Id.snackbar_action; + global::Xamarin.Forms.Platform.Resource.Id.snackbar_text = global::mederly.Droid.Resource.Id.snackbar_text; + global::Xamarin.Forms.Platform.Resource.Id.snap = global::mederly.Droid.Resource.Id.snap; + global::Xamarin.Forms.Platform.Resource.Id.snapMargins = global::mederly.Droid.Resource.Id.snapMargins; + global::Xamarin.Forms.Platform.Resource.Id.spacer = global::mederly.Droid.Resource.Id.spacer; + global::Xamarin.Forms.Platform.Resource.Id.split_action_bar = global::mederly.Droid.Resource.Id.split_action_bar; + global::Xamarin.Forms.Platform.Resource.Id.src_atop = global::mederly.Droid.Resource.Id.src_atop; + global::Xamarin.Forms.Platform.Resource.Id.src_in = global::mederly.Droid.Resource.Id.src_in; + global::Xamarin.Forms.Platform.Resource.Id.src_over = global::mederly.Droid.Resource.Id.src_over; + global::Xamarin.Forms.Platform.Resource.Id.start = global::mederly.Droid.Resource.Id.start; + global::Xamarin.Forms.Platform.Resource.Id.status_bar_latest_event_content = global::mederly.Droid.Resource.Id.status_bar_latest_event_content; + global::Xamarin.Forms.Platform.Resource.Id.stretch = global::mederly.Droid.Resource.Id.stretch; + global::Xamarin.Forms.Platform.Resource.Id.submenuarrow = global::mederly.Droid.Resource.Id.submenuarrow; + global::Xamarin.Forms.Platform.Resource.Id.submit_area = global::mederly.Droid.Resource.Id.submit_area; + global::Xamarin.Forms.Platform.Resource.Id.SYM = global::mederly.Droid.Resource.Id.SYM; + global::Xamarin.Forms.Platform.Resource.Id.tabMode = global::mederly.Droid.Resource.Id.tabMode; + global::Xamarin.Forms.Platform.Resource.Id.tag_accessibility_actions = global::mederly.Droid.Resource.Id.tag_accessibility_actions; + global::Xamarin.Forms.Platform.Resource.Id.tag_accessibility_clickable_spans = global::mederly.Droid.Resource.Id.tag_accessibility_clickable_spans; + global::Xamarin.Forms.Platform.Resource.Id.tag_accessibility_heading = global::mederly.Droid.Resource.Id.tag_accessibility_heading; + global::Xamarin.Forms.Platform.Resource.Id.tag_accessibility_pane_title = global::mederly.Droid.Resource.Id.tag_accessibility_pane_title; + global::Xamarin.Forms.Platform.Resource.Id.tag_screen_reader_focusable = global::mederly.Droid.Resource.Id.tag_screen_reader_focusable; + global::Xamarin.Forms.Platform.Resource.Id.tag_transition_group = global::mederly.Droid.Resource.Id.tag_transition_group; + global::Xamarin.Forms.Platform.Resource.Id.tag_unhandled_key_event_manager = global::mederly.Droid.Resource.Id.tag_unhandled_key_event_manager; + global::Xamarin.Forms.Platform.Resource.Id.tag_unhandled_key_listeners = global::mederly.Droid.Resource.Id.tag_unhandled_key_listeners; + global::Xamarin.Forms.Platform.Resource.Id.test_checkbox_android_button_tint = global::mederly.Droid.Resource.Id.test_checkbox_android_button_tint; + global::Xamarin.Forms.Platform.Resource.Id.test_checkbox_app_button_tint = global::mederly.Droid.Resource.Id.test_checkbox_app_button_tint; + global::Xamarin.Forms.Platform.Resource.Id.test_radiobutton_android_button_tint = global::mederly.Droid.Resource.Id.test_radiobutton_android_button_tint; + global::Xamarin.Forms.Platform.Resource.Id.test_radiobutton_app_button_tint = global::mederly.Droid.Resource.Id.test_radiobutton_app_button_tint; + global::Xamarin.Forms.Platform.Resource.Id.text = global::mederly.Droid.Resource.Id.text; + global::Xamarin.Forms.Platform.Resource.Id.text2 = global::mederly.Droid.Resource.Id.text2; + global::Xamarin.Forms.Platform.Resource.Id.textEnd = global::mederly.Droid.Resource.Id.textEnd; + global::Xamarin.Forms.Platform.Resource.Id.textinput_counter = global::mederly.Droid.Resource.Id.textinput_counter; + global::Xamarin.Forms.Platform.Resource.Id.textinput_error = global::mederly.Droid.Resource.Id.textinput_error; + global::Xamarin.Forms.Platform.Resource.Id.textinput_helper_text = global::mederly.Droid.Resource.Id.textinput_helper_text; + global::Xamarin.Forms.Platform.Resource.Id.textinput_placeholder = global::mederly.Droid.Resource.Id.textinput_placeholder; + global::Xamarin.Forms.Platform.Resource.Id.textinput_prefix_text = global::mederly.Droid.Resource.Id.textinput_prefix_text; + global::Xamarin.Forms.Platform.Resource.Id.textinput_suffix_text = global::mederly.Droid.Resource.Id.textinput_suffix_text; + global::Xamarin.Forms.Platform.Resource.Id.textSpacerNoButtons = global::mederly.Droid.Resource.Id.textSpacerNoButtons; + global::Xamarin.Forms.Platform.Resource.Id.textSpacerNoTitle = global::mederly.Droid.Resource.Id.textSpacerNoTitle; + global::Xamarin.Forms.Platform.Resource.Id.textStart = global::mederly.Droid.Resource.Id.textStart; + global::Xamarin.Forms.Platform.Resource.Id.text_input_end_icon = global::mederly.Droid.Resource.Id.text_input_end_icon; + global::Xamarin.Forms.Platform.Resource.Id.text_input_start_icon = global::mederly.Droid.Resource.Id.text_input_start_icon; + global::Xamarin.Forms.Platform.Resource.Id.time = global::mederly.Droid.Resource.Id.time; + global::Xamarin.Forms.Platform.Resource.Id.title = global::mederly.Droid.Resource.Id.title; + global::Xamarin.Forms.Platform.Resource.Id.titleDividerNoCustom = global::mederly.Droid.Resource.Id.titleDividerNoCustom; + global::Xamarin.Forms.Platform.Resource.Id.title_template = global::mederly.Droid.Resource.Id.title_template; + global::Xamarin.Forms.Platform.Resource.Id.toolbar = global::mederly.Droid.Resource.Id.toolbar; + global::Xamarin.Forms.Platform.Resource.Id.top = global::mederly.Droid.Resource.Id.top; + global::Xamarin.Forms.Platform.Resource.Id.topPanel = global::mederly.Droid.Resource.Id.topPanel; + global::Xamarin.Forms.Platform.Resource.Id.TOP_END = global::mederly.Droid.Resource.Id.TOP_END; + global::Xamarin.Forms.Platform.Resource.Id.TOP_START = global::mederly.Droid.Resource.Id.TOP_START; + global::Xamarin.Forms.Platform.Resource.Id.touch_outside = global::mederly.Droid.Resource.Id.touch_outside; + global::Xamarin.Forms.Platform.Resource.Id.transition_current_scene = global::mederly.Droid.Resource.Id.transition_current_scene; + global::Xamarin.Forms.Platform.Resource.Id.transition_layout_save = global::mederly.Droid.Resource.Id.transition_layout_save; + global::Xamarin.Forms.Platform.Resource.Id.transition_position = global::mederly.Droid.Resource.Id.transition_position; + global::Xamarin.Forms.Platform.Resource.Id.transition_scene_layoutid_cache = global::mederly.Droid.Resource.Id.transition_scene_layoutid_cache; + global::Xamarin.Forms.Platform.Resource.Id.transition_transform = global::mederly.Droid.Resource.Id.transition_transform; + global::Xamarin.Forms.Platform.Resource.Id.@unchecked = global::mederly.Droid.Resource.Id.@unchecked; + global::Xamarin.Forms.Platform.Resource.Id.uniform = global::mederly.Droid.Resource.Id.uniform; + global::Xamarin.Forms.Platform.Resource.Id.unlabeled = global::mederly.Droid.Resource.Id.unlabeled; + global::Xamarin.Forms.Platform.Resource.Id.up = global::mederly.Droid.Resource.Id.up; + global::Xamarin.Forms.Platform.Resource.Id.useLogo = global::mederly.Droid.Resource.Id.useLogo; + global::Xamarin.Forms.Platform.Resource.Id.view_offset_helper = global::mederly.Droid.Resource.Id.view_offset_helper; + global::Xamarin.Forms.Platform.Resource.Id.view_tree_saved_state_registry_owner = global::mederly.Droid.Resource.Id.view_tree_saved_state_registry_owner; + global::Xamarin.Forms.Platform.Resource.Id.visible = global::mederly.Droid.Resource.Id.visible; + global::Xamarin.Forms.Platform.Resource.Id.visible_removing_fragment_view_tag = global::mederly.Droid.Resource.Id.visible_removing_fragment_view_tag; + global::Xamarin.Forms.Platform.Resource.Id.withinBounds = global::mederly.Droid.Resource.Id.withinBounds; + global::Xamarin.Forms.Platform.Resource.Id.withText = global::mederly.Droid.Resource.Id.withText; + global::Xamarin.Forms.Platform.Resource.Id.wrap_content = global::mederly.Droid.Resource.Id.wrap_content; + global::Xamarin.Forms.Platform.Resource.Id.zero_corner_chip = global::mederly.Droid.Resource.Id.zero_corner_chip; + global::Xamarin.Forms.Platform.Resource.Integer.abc_config_activityDefaultDur = global::mederly.Droid.Resource.Integer.abc_config_activityDefaultDur; + global::Xamarin.Forms.Platform.Resource.Integer.abc_config_activityShortDur = global::mederly.Droid.Resource.Integer.abc_config_activityShortDur; + global::Xamarin.Forms.Platform.Resource.Integer.app_bar_elevation_anim_duration = global::mederly.Droid.Resource.Integer.app_bar_elevation_anim_duration; + global::Xamarin.Forms.Platform.Resource.Integer.bottom_sheet_slide_duration = global::mederly.Droid.Resource.Integer.bottom_sheet_slide_duration; + global::Xamarin.Forms.Platform.Resource.Integer.cancel_button_image_alpha = global::mederly.Droid.Resource.Integer.cancel_button_image_alpha; + global::Xamarin.Forms.Platform.Resource.Integer.config_tooltipAnimTime = global::mederly.Droid.Resource.Integer.config_tooltipAnimTime; + global::Xamarin.Forms.Platform.Resource.Integer.design_snackbar_text_max_lines = global::mederly.Droid.Resource.Integer.design_snackbar_text_max_lines; + global::Xamarin.Forms.Platform.Resource.Integer.design_tab_indicator_anim_duration_ms = global::mederly.Droid.Resource.Integer.design_tab_indicator_anim_duration_ms; + global::Xamarin.Forms.Platform.Resource.Integer.hide_password_duration = global::mederly.Droid.Resource.Integer.hide_password_duration; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_badge_max_character_count = global::mederly.Droid.Resource.Integer.mtrl_badge_max_character_count; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_btn_anim_delay_ms = global::mederly.Droid.Resource.Integer.mtrl_btn_anim_delay_ms; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_btn_anim_duration_ms = global::mederly.Droid.Resource.Integer.mtrl_btn_anim_duration_ms; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_calendar_header_orientation = global::mederly.Droid.Resource.Integer.mtrl_calendar_header_orientation; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_calendar_selection_text_lines = global::mederly.Droid.Resource.Integer.mtrl_calendar_selection_text_lines; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_calendar_year_selector_span = global::mederly.Droid.Resource.Integer.mtrl_calendar_year_selector_span; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_card_anim_delay_ms = global::mederly.Droid.Resource.Integer.mtrl_card_anim_delay_ms; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_card_anim_duration_ms = global::mederly.Droid.Resource.Integer.mtrl_card_anim_duration_ms; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_chip_anim_duration = global::mederly.Droid.Resource.Integer.mtrl_chip_anim_duration; + global::Xamarin.Forms.Platform.Resource.Integer.mtrl_tab_indicator_anim_duration_ms = global::mederly.Droid.Resource.Integer.mtrl_tab_indicator_anim_duration_ms; + global::Xamarin.Forms.Platform.Resource.Integer.show_password_duration = global::mederly.Droid.Resource.Integer.show_password_duration; + global::Xamarin.Forms.Platform.Resource.Integer.status_bar_notification_info_maxnum = global::mederly.Droid.Resource.Integer.status_bar_notification_info_maxnum; + global::Xamarin.Forms.Platform.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_0 = global::mederly.Droid.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_0; + global::Xamarin.Forms.Platform.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_1 = global::mederly.Droid.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_1; + global::Xamarin.Forms.Platform.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_0 = global::mederly.Droid.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_0; + global::Xamarin.Forms.Platform.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_1 = global::mederly.Droid.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_1; + global::Xamarin.Forms.Platform.Resource.Interpolator.btn_radio_to_off_mtrl_animation_interpolator_0 = global::mederly.Droid.Resource.Interpolator.btn_radio_to_off_mtrl_animation_interpolator_0; + global::Xamarin.Forms.Platform.Resource.Interpolator.btn_radio_to_on_mtrl_animation_interpolator_0 = global::mederly.Droid.Resource.Interpolator.btn_radio_to_on_mtrl_animation_interpolator_0; + global::Xamarin.Forms.Platform.Resource.Interpolator.fast_out_slow_in = global::mederly.Droid.Resource.Interpolator.fast_out_slow_in; + global::Xamarin.Forms.Platform.Resource.Interpolator.mtrl_fast_out_linear_in = global::mederly.Droid.Resource.Interpolator.mtrl_fast_out_linear_in; + global::Xamarin.Forms.Platform.Resource.Interpolator.mtrl_fast_out_slow_in = global::mederly.Droid.Resource.Interpolator.mtrl_fast_out_slow_in; + global::Xamarin.Forms.Platform.Resource.Interpolator.mtrl_linear = global::mederly.Droid.Resource.Interpolator.mtrl_linear; + global::Xamarin.Forms.Platform.Resource.Interpolator.mtrl_linear_out_slow_in = global::mederly.Droid.Resource.Interpolator.mtrl_linear_out_slow_in; + global::Xamarin.Forms.Platform.Resource.Layout.abc_action_bar_title_item = global::mederly.Droid.Resource.Layout.abc_action_bar_title_item; + global::Xamarin.Forms.Platform.Resource.Layout.abc_action_bar_up_container = global::mederly.Droid.Resource.Layout.abc_action_bar_up_container; + global::Xamarin.Forms.Platform.Resource.Layout.abc_action_menu_item_layout = global::mederly.Droid.Resource.Layout.abc_action_menu_item_layout; + global::Xamarin.Forms.Platform.Resource.Layout.abc_action_menu_layout = global::mederly.Droid.Resource.Layout.abc_action_menu_layout; + global::Xamarin.Forms.Platform.Resource.Layout.abc_action_mode_bar = global::mederly.Droid.Resource.Layout.abc_action_mode_bar; + global::Xamarin.Forms.Platform.Resource.Layout.abc_action_mode_close_item_material = global::mederly.Droid.Resource.Layout.abc_action_mode_close_item_material; + global::Xamarin.Forms.Platform.Resource.Layout.abc_activity_chooser_view = global::mederly.Droid.Resource.Layout.abc_activity_chooser_view; + global::Xamarin.Forms.Platform.Resource.Layout.abc_activity_chooser_view_list_item = global::mederly.Droid.Resource.Layout.abc_activity_chooser_view_list_item; + global::Xamarin.Forms.Platform.Resource.Layout.abc_alert_dialog_button_bar_material = global::mederly.Droid.Resource.Layout.abc_alert_dialog_button_bar_material; + global::Xamarin.Forms.Platform.Resource.Layout.abc_alert_dialog_material = global::mederly.Droid.Resource.Layout.abc_alert_dialog_material; + global::Xamarin.Forms.Platform.Resource.Layout.abc_alert_dialog_title_material = global::mederly.Droid.Resource.Layout.abc_alert_dialog_title_material; + global::Xamarin.Forms.Platform.Resource.Layout.abc_cascading_menu_item_layout = global::mederly.Droid.Resource.Layout.abc_cascading_menu_item_layout; + global::Xamarin.Forms.Platform.Resource.Layout.abc_dialog_title_material = global::mederly.Droid.Resource.Layout.abc_dialog_title_material; + global::Xamarin.Forms.Platform.Resource.Layout.abc_expanded_menu_layout = global::mederly.Droid.Resource.Layout.abc_expanded_menu_layout; + global::Xamarin.Forms.Platform.Resource.Layout.abc_list_menu_item_checkbox = global::mederly.Droid.Resource.Layout.abc_list_menu_item_checkbox; + global::Xamarin.Forms.Platform.Resource.Layout.abc_list_menu_item_icon = global::mederly.Droid.Resource.Layout.abc_list_menu_item_icon; + global::Xamarin.Forms.Platform.Resource.Layout.abc_list_menu_item_layout = global::mederly.Droid.Resource.Layout.abc_list_menu_item_layout; + global::Xamarin.Forms.Platform.Resource.Layout.abc_list_menu_item_radio = global::mederly.Droid.Resource.Layout.abc_list_menu_item_radio; + global::Xamarin.Forms.Platform.Resource.Layout.abc_popup_menu_header_item_layout = global::mederly.Droid.Resource.Layout.abc_popup_menu_header_item_layout; + global::Xamarin.Forms.Platform.Resource.Layout.abc_popup_menu_item_layout = global::mederly.Droid.Resource.Layout.abc_popup_menu_item_layout; + global::Xamarin.Forms.Platform.Resource.Layout.abc_screen_content_include = global::mederly.Droid.Resource.Layout.abc_screen_content_include; + global::Xamarin.Forms.Platform.Resource.Layout.abc_screen_simple = global::mederly.Droid.Resource.Layout.abc_screen_simple; + global::Xamarin.Forms.Platform.Resource.Layout.abc_screen_simple_overlay_action_mode = global::mederly.Droid.Resource.Layout.abc_screen_simple_overlay_action_mode; + global::Xamarin.Forms.Platform.Resource.Layout.abc_screen_toolbar = global::mederly.Droid.Resource.Layout.abc_screen_toolbar; + global::Xamarin.Forms.Platform.Resource.Layout.abc_search_dropdown_item_icons_2line = global::mederly.Droid.Resource.Layout.abc_search_dropdown_item_icons_2line; + global::Xamarin.Forms.Platform.Resource.Layout.abc_search_view = global::mederly.Droid.Resource.Layout.abc_search_view; + global::Xamarin.Forms.Platform.Resource.Layout.abc_select_dialog_material = global::mederly.Droid.Resource.Layout.abc_select_dialog_material; + global::Xamarin.Forms.Platform.Resource.Layout.abc_tooltip = global::mederly.Droid.Resource.Layout.abc_tooltip; + global::Xamarin.Forms.Platform.Resource.Layout.BottomTabLayout = global::mederly.Droid.Resource.Layout.BottomTabLayout; + global::Xamarin.Forms.Platform.Resource.Layout.custom_dialog = global::mederly.Droid.Resource.Layout.custom_dialog; + global::Xamarin.Forms.Platform.Resource.Layout.design_bottom_navigation_item = global::mederly.Droid.Resource.Layout.design_bottom_navigation_item; + global::Xamarin.Forms.Platform.Resource.Layout.design_bottom_sheet_dialog = global::mederly.Droid.Resource.Layout.design_bottom_sheet_dialog; + global::Xamarin.Forms.Platform.Resource.Layout.design_layout_snackbar = global::mederly.Droid.Resource.Layout.design_layout_snackbar; + global::Xamarin.Forms.Platform.Resource.Layout.design_layout_snackbar_include = global::mederly.Droid.Resource.Layout.design_layout_snackbar_include; + global::Xamarin.Forms.Platform.Resource.Layout.design_layout_tab_icon = global::mederly.Droid.Resource.Layout.design_layout_tab_icon; + global::Xamarin.Forms.Platform.Resource.Layout.design_layout_tab_text = global::mederly.Droid.Resource.Layout.design_layout_tab_text; + global::Xamarin.Forms.Platform.Resource.Layout.design_menu_item_action_area = global::mederly.Droid.Resource.Layout.design_menu_item_action_area; + global::Xamarin.Forms.Platform.Resource.Layout.design_navigation_item = global::mederly.Droid.Resource.Layout.design_navigation_item; + global::Xamarin.Forms.Platform.Resource.Layout.design_navigation_item_header = global::mederly.Droid.Resource.Layout.design_navigation_item_header; + global::Xamarin.Forms.Platform.Resource.Layout.design_navigation_item_separator = global::mederly.Droid.Resource.Layout.design_navigation_item_separator; + global::Xamarin.Forms.Platform.Resource.Layout.design_navigation_item_subheader = global::mederly.Droid.Resource.Layout.design_navigation_item_subheader; + global::Xamarin.Forms.Platform.Resource.Layout.design_navigation_menu = global::mederly.Droid.Resource.Layout.design_navigation_menu; + global::Xamarin.Forms.Platform.Resource.Layout.design_navigation_menu_item = global::mederly.Droid.Resource.Layout.design_navigation_menu_item; + global::Xamarin.Forms.Platform.Resource.Layout.design_text_input_end_icon = global::mederly.Droid.Resource.Layout.design_text_input_end_icon; + global::Xamarin.Forms.Platform.Resource.Layout.design_text_input_start_icon = global::mederly.Droid.Resource.Layout.design_text_input_start_icon; + global::Xamarin.Forms.Platform.Resource.Layout.FallbackTabbarDoNotUse = global::mederly.Droid.Resource.Layout.FallbackTabbarDoNotUse; + global::Xamarin.Forms.Platform.Resource.Layout.FallbackToolbarDoNotUse = global::mederly.Droid.Resource.Layout.FallbackToolbarDoNotUse; + global::Xamarin.Forms.Platform.Resource.Layout.FlyoutContent = global::mederly.Droid.Resource.Layout.FlyoutContent; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_alert_dialog = global::mederly.Droid.Resource.Layout.mtrl_alert_dialog; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_alert_dialog_actions = global::mederly.Droid.Resource.Layout.mtrl_alert_dialog_actions; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_alert_dialog_title = global::mederly.Droid.Resource.Layout.mtrl_alert_dialog_title; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_alert_select_dialog_item = global::mederly.Droid.Resource.Layout.mtrl_alert_select_dialog_item; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_alert_select_dialog_multichoice = global::mederly.Droid.Resource.Layout.mtrl_alert_select_dialog_multichoice; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_alert_select_dialog_singlechoice = global::mederly.Droid.Resource.Layout.mtrl_alert_select_dialog_singlechoice; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_day = global::mederly.Droid.Resource.Layout.mtrl_calendar_day; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_days_of_week = global::mederly.Droid.Resource.Layout.mtrl_calendar_days_of_week; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_day_of_week = global::mederly.Droid.Resource.Layout.mtrl_calendar_day_of_week; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_horizontal = global::mederly.Droid.Resource.Layout.mtrl_calendar_horizontal; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_month = global::mederly.Droid.Resource.Layout.mtrl_calendar_month; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_months = global::mederly.Droid.Resource.Layout.mtrl_calendar_months; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_month_labeled = global::mederly.Droid.Resource.Layout.mtrl_calendar_month_labeled; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_month_navigation = global::mederly.Droid.Resource.Layout.mtrl_calendar_month_navigation; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_vertical = global::mederly.Droid.Resource.Layout.mtrl_calendar_vertical; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_calendar_year = global::mederly.Droid.Resource.Layout.mtrl_calendar_year; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_layout_snackbar = global::mederly.Droid.Resource.Layout.mtrl_layout_snackbar; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_layout_snackbar_include = global::mederly.Droid.Resource.Layout.mtrl_layout_snackbar_include; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_actions = global::mederly.Droid.Resource.Layout.mtrl_picker_actions; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_dialog = global::mederly.Droid.Resource.Layout.mtrl_picker_dialog; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_fullscreen = global::mederly.Droid.Resource.Layout.mtrl_picker_fullscreen; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_header_dialog = global::mederly.Droid.Resource.Layout.mtrl_picker_header_dialog; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_header_fullscreen = global::mederly.Droid.Resource.Layout.mtrl_picker_header_fullscreen; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_header_selection_text = global::mederly.Droid.Resource.Layout.mtrl_picker_header_selection_text; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_header_title_text = global::mederly.Droid.Resource.Layout.mtrl_picker_header_title_text; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_header_toggle = global::mederly.Droid.Resource.Layout.mtrl_picker_header_toggle; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_text_input_date = global::mederly.Droid.Resource.Layout.mtrl_picker_text_input_date; + global::Xamarin.Forms.Platform.Resource.Layout.mtrl_picker_text_input_date_range = global::mederly.Droid.Resource.Layout.mtrl_picker_text_input_date_range; + global::Xamarin.Forms.Platform.Resource.Layout.notification_action = global::mederly.Droid.Resource.Layout.notification_action; + global::Xamarin.Forms.Platform.Resource.Layout.notification_action_tombstone = global::mederly.Droid.Resource.Layout.notification_action_tombstone; + global::Xamarin.Forms.Platform.Resource.Layout.notification_media_action = global::mederly.Droid.Resource.Layout.notification_media_action; + global::Xamarin.Forms.Platform.Resource.Layout.notification_media_cancel_action = global::mederly.Droid.Resource.Layout.notification_media_cancel_action; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_big_media = global::mederly.Droid.Resource.Layout.notification_template_big_media; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_big_media_custom = global::mederly.Droid.Resource.Layout.notification_template_big_media_custom; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_big_media_narrow = global::mederly.Droid.Resource.Layout.notification_template_big_media_narrow; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_big_media_narrow_custom = global::mederly.Droid.Resource.Layout.notification_template_big_media_narrow_custom; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_custom_big = global::mederly.Droid.Resource.Layout.notification_template_custom_big; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_icon_group = global::mederly.Droid.Resource.Layout.notification_template_icon_group; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_lines_media = global::mederly.Droid.Resource.Layout.notification_template_lines_media; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_media = global::mederly.Droid.Resource.Layout.notification_template_media; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_media_custom = global::mederly.Droid.Resource.Layout.notification_template_media_custom; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_part_chronometer = global::mederly.Droid.Resource.Layout.notification_template_part_chronometer; + global::Xamarin.Forms.Platform.Resource.Layout.notification_template_part_time = global::mederly.Droid.Resource.Layout.notification_template_part_time; + global::Xamarin.Forms.Platform.Resource.Layout.RootLayout = global::mederly.Droid.Resource.Layout.RootLayout; + global::Xamarin.Forms.Platform.Resource.Layout.select_dialog_item_material = global::mederly.Droid.Resource.Layout.select_dialog_item_material; + global::Xamarin.Forms.Platform.Resource.Layout.select_dialog_multichoice_material = global::mederly.Droid.Resource.Layout.select_dialog_multichoice_material; + global::Xamarin.Forms.Platform.Resource.Layout.select_dialog_singlechoice_material = global::mederly.Droid.Resource.Layout.select_dialog_singlechoice_material; + global::Xamarin.Forms.Platform.Resource.Layout.ShellContent = global::mederly.Droid.Resource.Layout.ShellContent; + global::Xamarin.Forms.Platform.Resource.Layout.support_simple_spinner_dropdown_item = global::mederly.Droid.Resource.Layout.support_simple_spinner_dropdown_item; + global::Xamarin.Forms.Platform.Resource.Layout.Tabbar = global::mederly.Droid.Resource.Layout.Tabbar; + global::Xamarin.Forms.Platform.Resource.Layout.test_action_chip = global::mederly.Droid.Resource.Layout.test_action_chip; + global::Xamarin.Forms.Platform.Resource.Layout.test_chip_zero_corner_radius = global::mederly.Droid.Resource.Layout.test_chip_zero_corner_radius; + global::Xamarin.Forms.Platform.Resource.Layout.test_design_checkbox = global::mederly.Droid.Resource.Layout.test_design_checkbox; + global::Xamarin.Forms.Platform.Resource.Layout.test_design_radiobutton = global::mederly.Droid.Resource.Layout.test_design_radiobutton; + global::Xamarin.Forms.Platform.Resource.Layout.test_reflow_chipgroup = global::mederly.Droid.Resource.Layout.test_reflow_chipgroup; + global::Xamarin.Forms.Platform.Resource.Layout.test_toolbar = global::mederly.Droid.Resource.Layout.test_toolbar; + global::Xamarin.Forms.Platform.Resource.Layout.test_toolbar_custom_background = global::mederly.Droid.Resource.Layout.test_toolbar_custom_background; + global::Xamarin.Forms.Platform.Resource.Layout.test_toolbar_elevation = global::mederly.Droid.Resource.Layout.test_toolbar_elevation; + global::Xamarin.Forms.Platform.Resource.Layout.test_toolbar_surface = global::mederly.Droid.Resource.Layout.test_toolbar_surface; + global::Xamarin.Forms.Platform.Resource.Layout.text_view_without_line_height = global::mederly.Droid.Resource.Layout.text_view_without_line_height; + global::Xamarin.Forms.Platform.Resource.Layout.text_view_with_line_height_from_appearance = global::mederly.Droid.Resource.Layout.text_view_with_line_height_from_appearance; + global::Xamarin.Forms.Platform.Resource.Layout.text_view_with_line_height_from_layout = global::mederly.Droid.Resource.Layout.text_view_with_line_height_from_layout; + global::Xamarin.Forms.Platform.Resource.Layout.text_view_with_line_height_from_style = global::mederly.Droid.Resource.Layout.text_view_with_line_height_from_style; + global::Xamarin.Forms.Platform.Resource.Layout.text_view_with_theme_line_height = global::mederly.Droid.Resource.Layout.text_view_with_theme_line_height; + global::Xamarin.Forms.Platform.Resource.Layout.Toolbar = global::mederly.Droid.Resource.Layout.Toolbar; + global::Xamarin.Forms.Platform.Resource.Plurals.mtrl_badge_content_description = global::mederly.Droid.Resource.Plurals.mtrl_badge_content_description; + global::Xamarin.Forms.Platform.Resource.String.abc_action_bar_home_description = global::mederly.Droid.Resource.String.abc_action_bar_home_description; + global::Xamarin.Forms.Platform.Resource.String.abc_action_bar_up_description = global::mederly.Droid.Resource.String.abc_action_bar_up_description; + global::Xamarin.Forms.Platform.Resource.String.abc_action_menu_overflow_description = global::mederly.Droid.Resource.String.abc_action_menu_overflow_description; + global::Xamarin.Forms.Platform.Resource.String.abc_action_mode_done = global::mederly.Droid.Resource.String.abc_action_mode_done; + global::Xamarin.Forms.Platform.Resource.String.abc_activitychooserview_choose_application = global::mederly.Droid.Resource.String.abc_activitychooserview_choose_application; + global::Xamarin.Forms.Platform.Resource.String.abc_activity_chooser_view_see_all = global::mederly.Droid.Resource.String.abc_activity_chooser_view_see_all; + global::Xamarin.Forms.Platform.Resource.String.abc_capital_off = global::mederly.Droid.Resource.String.abc_capital_off; + global::Xamarin.Forms.Platform.Resource.String.abc_capital_on = global::mederly.Droid.Resource.String.abc_capital_on; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_alt_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_alt_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_ctrl_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_ctrl_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_delete_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_delete_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_enter_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_enter_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_function_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_function_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_meta_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_meta_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_shift_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_shift_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_space_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_space_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_menu_sym_shortcut_label = global::mederly.Droid.Resource.String.abc_menu_sym_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_prepend_shortcut_label = global::mederly.Droid.Resource.String.abc_prepend_shortcut_label; + global::Xamarin.Forms.Platform.Resource.String.abc_searchview_description_clear = global::mederly.Droid.Resource.String.abc_searchview_description_clear; + global::Xamarin.Forms.Platform.Resource.String.abc_searchview_description_query = global::mederly.Droid.Resource.String.abc_searchview_description_query; + global::Xamarin.Forms.Platform.Resource.String.abc_searchview_description_search = global::mederly.Droid.Resource.String.abc_searchview_description_search; + global::Xamarin.Forms.Platform.Resource.String.abc_searchview_description_submit = global::mederly.Droid.Resource.String.abc_searchview_description_submit; + global::Xamarin.Forms.Platform.Resource.String.abc_searchview_description_voice = global::mederly.Droid.Resource.String.abc_searchview_description_voice; + global::Xamarin.Forms.Platform.Resource.String.abc_search_hint = global::mederly.Droid.Resource.String.abc_search_hint; + global::Xamarin.Forms.Platform.Resource.String.abc_shareactionprovider_share_with = global::mederly.Droid.Resource.String.abc_shareactionprovider_share_with; + global::Xamarin.Forms.Platform.Resource.String.abc_shareactionprovider_share_with_application = global::mederly.Droid.Resource.String.abc_shareactionprovider_share_with_application; + global::Xamarin.Forms.Platform.Resource.String.abc_toolbar_collapse_description = global::mederly.Droid.Resource.String.abc_toolbar_collapse_description; + global::Xamarin.Forms.Platform.Resource.String.appbar_scrolling_view_behavior = global::mederly.Droid.Resource.String.appbar_scrolling_view_behavior; + global::Xamarin.Forms.Platform.Resource.String.bottom_sheet_behavior = global::mederly.Droid.Resource.String.bottom_sheet_behavior; + global::Xamarin.Forms.Platform.Resource.String.character_counter_content_description = global::mederly.Droid.Resource.String.character_counter_content_description; + global::Xamarin.Forms.Platform.Resource.String.character_counter_overflowed_content_description = global::mederly.Droid.Resource.String.character_counter_overflowed_content_description; + global::Xamarin.Forms.Platform.Resource.String.character_counter_pattern = global::mederly.Droid.Resource.String.character_counter_pattern; + global::Xamarin.Forms.Platform.Resource.String.chip_text = global::mederly.Droid.Resource.String.chip_text; + global::Xamarin.Forms.Platform.Resource.String.clear_text_end_icon_content_description = global::mederly.Droid.Resource.String.clear_text_end_icon_content_description; + global::Xamarin.Forms.Platform.Resource.String.error_icon_content_description = global::mederly.Droid.Resource.String.error_icon_content_description; + global::Xamarin.Forms.Platform.Resource.String.exposed_dropdown_menu_content_description = global::mederly.Droid.Resource.String.exposed_dropdown_menu_content_description; + global::Xamarin.Forms.Platform.Resource.String.fab_transformation_scrim_behavior = global::mederly.Droid.Resource.String.fab_transformation_scrim_behavior; + global::Xamarin.Forms.Platform.Resource.String.fab_transformation_sheet_behavior = global::mederly.Droid.Resource.String.fab_transformation_sheet_behavior; + global::Xamarin.Forms.Platform.Resource.String.hide_bottom_view_on_scroll_behavior = global::mederly.Droid.Resource.String.hide_bottom_view_on_scroll_behavior; + global::Xamarin.Forms.Platform.Resource.String.icon_content_description = global::mederly.Droid.Resource.String.icon_content_description; + global::Xamarin.Forms.Platform.Resource.String.item_view_role_description = global::mederly.Droid.Resource.String.item_view_role_description; + global::Xamarin.Forms.Platform.Resource.String.material_slider_range_end = global::mederly.Droid.Resource.String.material_slider_range_end; + global::Xamarin.Forms.Platform.Resource.String.material_slider_range_start = global::mederly.Droid.Resource.String.material_slider_range_start; + global::Xamarin.Forms.Platform.Resource.String.mtrl_badge_numberless_content_description = global::mederly.Droid.Resource.String.mtrl_badge_numberless_content_description; + global::Xamarin.Forms.Platform.Resource.String.mtrl_chip_close_icon_content_description = global::mederly.Droid.Resource.String.mtrl_chip_close_icon_content_description; + global::Xamarin.Forms.Platform.Resource.String.mtrl_exceed_max_badge_number_content_description = global::mederly.Droid.Resource.String.mtrl_exceed_max_badge_number_content_description; + global::Xamarin.Forms.Platform.Resource.String.mtrl_exceed_max_badge_number_suffix = global::mederly.Droid.Resource.String.mtrl_exceed_max_badge_number_suffix; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_a11y_next_month = global::mederly.Droid.Resource.String.mtrl_picker_a11y_next_month; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_a11y_prev_month = global::mederly.Droid.Resource.String.mtrl_picker_a11y_prev_month; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_announce_current_selection = global::mederly.Droid.Resource.String.mtrl_picker_announce_current_selection; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_cancel = global::mederly.Droid.Resource.String.mtrl_picker_cancel; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_confirm = global::mederly.Droid.Resource.String.mtrl_picker_confirm; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_date_header_selected = global::mederly.Droid.Resource.String.mtrl_picker_date_header_selected; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_date_header_title = global::mederly.Droid.Resource.String.mtrl_picker_date_header_title; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_date_header_unselected = global::mederly.Droid.Resource.String.mtrl_picker_date_header_unselected; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_day_of_week_column_header = global::mederly.Droid.Resource.String.mtrl_picker_day_of_week_column_header; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_invalid_format = global::mederly.Droid.Resource.String.mtrl_picker_invalid_format; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_invalid_format_example = global::mederly.Droid.Resource.String.mtrl_picker_invalid_format_example; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_invalid_format_use = global::mederly.Droid.Resource.String.mtrl_picker_invalid_format_use; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_invalid_range = global::mederly.Droid.Resource.String.mtrl_picker_invalid_range; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_navigate_to_year_description = global::mederly.Droid.Resource.String.mtrl_picker_navigate_to_year_description; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_out_of_range = global::mederly.Droid.Resource.String.mtrl_picker_out_of_range; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_range_header_only_end_selected = global::mederly.Droid.Resource.String.mtrl_picker_range_header_only_end_selected; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_range_header_only_start_selected = global::mederly.Droid.Resource.String.mtrl_picker_range_header_only_start_selected; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_range_header_selected = global::mederly.Droid.Resource.String.mtrl_picker_range_header_selected; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_range_header_title = global::mederly.Droid.Resource.String.mtrl_picker_range_header_title; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_range_header_unselected = global::mederly.Droid.Resource.String.mtrl_picker_range_header_unselected; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_save = global::mederly.Droid.Resource.String.mtrl_picker_save; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_text_input_date_hint = global::mederly.Droid.Resource.String.mtrl_picker_text_input_date_hint; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_text_input_date_range_end_hint = global::mederly.Droid.Resource.String.mtrl_picker_text_input_date_range_end_hint; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_text_input_date_range_start_hint = global::mederly.Droid.Resource.String.mtrl_picker_text_input_date_range_start_hint; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_text_input_day_abbr = global::mederly.Droid.Resource.String.mtrl_picker_text_input_day_abbr; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_text_input_month_abbr = global::mederly.Droid.Resource.String.mtrl_picker_text_input_month_abbr; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_text_input_year_abbr = global::mederly.Droid.Resource.String.mtrl_picker_text_input_year_abbr; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_toggle_to_calendar_input_mode = global::mederly.Droid.Resource.String.mtrl_picker_toggle_to_calendar_input_mode; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_toggle_to_day_selection = global::mederly.Droid.Resource.String.mtrl_picker_toggle_to_day_selection; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_toggle_to_text_input_mode = global::mederly.Droid.Resource.String.mtrl_picker_toggle_to_text_input_mode; + global::Xamarin.Forms.Platform.Resource.String.mtrl_picker_toggle_to_year_selection = global::mederly.Droid.Resource.String.mtrl_picker_toggle_to_year_selection; + global::Xamarin.Forms.Platform.Resource.String.overflow_tab_title = global::mederly.Droid.Resource.String.overflow_tab_title; + global::Xamarin.Forms.Platform.Resource.String.password_toggle_content_description = global::mederly.Droid.Resource.String.password_toggle_content_description; + global::Xamarin.Forms.Platform.Resource.String.path_password_eye = global::mederly.Droid.Resource.String.path_password_eye; + global::Xamarin.Forms.Platform.Resource.String.path_password_eye_mask_strike_through = global::mederly.Droid.Resource.String.path_password_eye_mask_strike_through; + global::Xamarin.Forms.Platform.Resource.String.path_password_eye_mask_visible = global::mederly.Droid.Resource.String.path_password_eye_mask_visible; + global::Xamarin.Forms.Platform.Resource.String.path_password_strike_through = global::mederly.Droid.Resource.String.path_password_strike_through; + global::Xamarin.Forms.Platform.Resource.String.search_menu_title = global::mederly.Droid.Resource.String.search_menu_title; + global::Xamarin.Forms.Platform.Resource.String.status_bar_notification_info_overflow = global::mederly.Droid.Resource.String.status_bar_notification_info_overflow; + global::Xamarin.Forms.Platform.Resource.Style.AlertDialog_AppCompat = global::mederly.Droid.Resource.Style.AlertDialog_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.AlertDialog_AppCompat_Light = global::mederly.Droid.Resource.Style.AlertDialog_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.AndroidThemeColorAccentYellow = global::mederly.Droid.Resource.Style.AndroidThemeColorAccentYellow; + global::Xamarin.Forms.Platform.Resource.Style.Animation_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Animation_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Animation_AppCompat_DropDownUp = global::mederly.Droid.Resource.Style.Animation_AppCompat_DropDownUp; + global::Xamarin.Forms.Platform.Resource.Style.Animation_AppCompat_Tooltip = global::mederly.Droid.Resource.Style.Animation_AppCompat_Tooltip; + global::Xamarin.Forms.Platform.Resource.Style.Animation_Design_BottomSheetDialog = global::mederly.Droid.Resource.Style.Animation_Design_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.Animation_MaterialComponents_BottomSheetDialog = global::mederly.Droid.Resource.Style.Animation_MaterialComponents_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.AppCompatDialogStyle = global::mederly.Droid.Resource.Style.AppCompatDialogStyle; + global::Xamarin.Forms.Platform.Resource.Style.Base_AlertDialog_AppCompat = global::mederly.Droid.Resource.Style.Base_AlertDialog_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_AlertDialog_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_AlertDialog_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_Animation_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_Animation_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_Animation_AppCompat_DropDownUp = global::mederly.Droid.Resource.Style.Base_Animation_AppCompat_DropDownUp; + global::Xamarin.Forms.Platform.Resource.Style.Base_Animation_AppCompat_Tooltip = global::mederly.Droid.Resource.Style.Base_Animation_AppCompat_Tooltip; + global::Xamarin.Forms.Platform.Resource.Style.Base_CardView = global::mederly.Droid.Resource.Style.Base_CardView; + global::Xamarin.Forms.Platform.Resource.Style.Base_DialogWindowTitleBackground_AppCompat = global::mederly.Droid.Resource.Style.Base_DialogWindowTitleBackground_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_DialogWindowTitle_AppCompat = global::mederly.Droid.Resource.Style.Base_DialogWindowTitle_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Icon = global::mederly.Droid.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Icon; + global::Xamarin.Forms.Platform.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Panel = global::mederly.Droid.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Panel; + global::Xamarin.Forms.Platform.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Text = global::mederly.Droid.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Text; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Body1 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Body1; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Body2 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Body2; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Button = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Button; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Caption = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Caption; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Display1 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Display1; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Display2 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Display2; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Display3 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Display3; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Display4 = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Display4; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Headline = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Headline; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Large = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Large; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Large_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Large_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Medium = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Medium; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Medium_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Medium_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Menu = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Menu; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_SearchResult = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_SearchResult; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Subtitle = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Title; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Small = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Small; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Small_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Small_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Subhead = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Subhead; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Subhead_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Subhead_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Title; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Title_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Title_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Tooltip = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Tooltip; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Menu; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Title; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Colored = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Inverse = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_DropDownItem = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_DropDownItem; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Header; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Large; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Small; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_Switch = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_Switch; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = global::mederly.Droid.Resource.Style.Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_MaterialComponents_Badge = global::mederly.Droid.Resource.Style.Base_TextAppearance_MaterialComponents_Badge; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_MaterialComponents_Button = global::mederly.Droid.Resource.Style.Base_TextAppearance_MaterialComponents_Button; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_MaterialComponents_Headline6 = global::mederly.Droid.Resource.Style.Base_TextAppearance_MaterialComponents_Headline6; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_MaterialComponents_Subtitle2 = global::mederly.Droid.Resource.Style.Base_TextAppearance_MaterialComponents_Subtitle2; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = global::mederly.Droid.Resource.Style.Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = global::mederly.Droid.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Title = global::mederly.Droid.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Title; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_AppCompat = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_AppCompat_ActionBar = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_AppCompat_Dark = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Dark; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_AppCompat_Dark_ActionBar = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Dark_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework; + global::Xamarin.Forms.Platform.Resource.Style.Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::mederly.Droid.Resource.Style.Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_CompactMenu = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_CompactMenu; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_DialogWhenLarge = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Light_DarkActionBar = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_DarkActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Light_Dialog = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Light_DialogWhenLarge = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Light_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Light_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_AppCompat_Light_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Base_Theme_AppCompat_Light_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_CompactMenu = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_CompactMenu; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_DialogWhenLarge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Dialog_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_DialogWhenLarge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Bridge = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::mederly.Droid.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge = global::mederly.Droid.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_ThemeOverlay_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_V21_ThemeOverlay_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V21_Theme_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_Theme_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_V21_Theme_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V21_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_Theme_AppCompat_Light_Dialog = global::mederly.Droid.Resource.Style.Base_V21_Theme_AppCompat_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_Theme_MaterialComponents = global::mederly.Droid.Resource.Style.Base_V21_Theme_MaterialComponents; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_Theme_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Base_V21_Theme_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_Theme_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Base_V21_Theme_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_V21_Theme_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Base_V21_Theme_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V22_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V22_Theme_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_V22_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V22_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_V23_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V23_Theme_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_V23_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V23_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_V26_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V26_Theme_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_V26_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V26_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_V26_Widget_AppCompat_Toolbar = global::mederly.Droid.Resource.Style.Base_V26_Widget_AppCompat_Toolbar; + global::Xamarin.Forms.Platform.Resource.Style.Base_V28_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V28_Theme_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_V28_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V28_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_V7_ThemeOverlay_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_V7_ThemeOverlay_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V7_Theme_AppCompat = global::mederly.Droid.Resource.Style.Base_V7_Theme_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Base_V7_Theme_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Base_V7_Theme_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V7_Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Base_V7_Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Base_V7_Theme_AppCompat_Light_Dialog = global::mederly.Droid.Resource.Style.Base_V7_Theme_AppCompat_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_V7_Widget_AppCompat_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Base_V7_Widget_AppCompat_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Resource.Style.Base_V7_Widget_AppCompat_EditText = global::mederly.Droid.Resource.Style.Base_V7_Widget_AppCompat_EditText; + global::Xamarin.Forms.Platform.Resource.Style.Base_V7_Widget_AppCompat_Toolbar = global::mederly.Droid.Resource.Style.Base_V7_Widget_AppCompat_Toolbar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionBar_Solid = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar_Solid; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionBar_TabBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar_TabBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionBar_TabText = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar_TabText; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionBar_TabView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionBar_TabView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionButton = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionButton; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionButton_CloseMode = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionButton_CloseMode; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionButton_Overflow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionButton_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActionMode = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActionMode; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ActivityChooserView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ActivityChooserView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Button = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ButtonBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ButtonBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ButtonBar_AlertDialog = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ButtonBar_AlertDialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Button_Borderless = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_Borderless; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Button_Borderless_Colored = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_Borderless_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_ButtonBar_AlertDialog; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Button_Colored = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Button_Small = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Button_Small; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_CompoundButton_CheckBox = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_CompoundButton_CheckBox; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_CompoundButton_RadioButton = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_CompoundButton_RadioButton; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_CompoundButton_Switch = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_CompoundButton_Switch; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle_Common = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle_Common; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_DropDownItem_Spinner = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_DropDownItem_Spinner; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_EditText = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_EditText; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ImageButton = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ImageButton; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Light_ActionBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_Solid = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_Solid; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ListMenuView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListMenuView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ListPopupWindow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListPopupWindow; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ListView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ListView_DropDown = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListView_DropDown; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ListView_Menu = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ListView_Menu; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_PopupMenu = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_PopupMenu; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_PopupWindow = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_PopupWindow; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ProgressBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ProgressBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_ProgressBar_Horizontal = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_ProgressBar_Horizontal; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_RatingBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_RatingBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_RatingBar_Indicator = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_RatingBar_Indicator; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_RatingBar_Small = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_RatingBar_Small; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_SearchView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_SearchView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_SearchView_ActionBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_SearchView_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_SeekBar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_SeekBar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_SeekBar_Discrete = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_SeekBar_Discrete; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Spinner = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Spinner; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Spinner_Underlined = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Spinner_Underlined; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_TextView = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_TextView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_TextView_SpinnerItem = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_TextView_SpinnerItem; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Toolbar = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Toolbar; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_AppCompat_Toolbar_Button_Navigation = global::mederly.Droid.Resource.Style.Base_Widget_AppCompat_Toolbar_Button_Navigation; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_Design_TabLayout = global::mederly.Droid.Resource.Style.Base_Widget_Design_TabLayout; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_CheckedTextView = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_CheckedTextView; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_Chip = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_Chip; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_PopupMenu = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_PopupMenu; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ContextMenu = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ContextMenu; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_Slider = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_Slider; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_TextInputEditText = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_TextInputEditText; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_TextInputLayout = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_TextInputLayout; + global::Xamarin.Forms.Platform.Resource.Style.Base_Widget_MaterialComponents_TextView = global::mederly.Droid.Resource.Style.Base_Widget_MaterialComponents_TextView; + global::Xamarin.Forms.Platform.Resource.Style.CardView = global::mederly.Droid.Resource.Style.CardView; + global::Xamarin.Forms.Platform.Resource.Style.CardView_Dark = global::mederly.Droid.Resource.Style.CardView_Dark; + global::Xamarin.Forms.Platform.Resource.Style.CardView_Light = global::mederly.Droid.Resource.Style.CardView_Light; + global::Xamarin.Forms.Platform.Resource.Style.collectionViewTheme = global::mederly.Droid.Resource.Style.collectionViewTheme; + global::Xamarin.Forms.Platform.Resource.Style.EmptyTheme = global::mederly.Droid.Resource.Style.EmptyTheme; + global::Xamarin.Forms.Platform.Resource.Style.MainTheme = global::mederly.Droid.Resource.Style.MainTheme; + global::Xamarin.Forms.Platform.Resource.Style.MainTheme_Base = global::mederly.Droid.Resource.Style.MainTheme_Base; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Body_Text = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Body_Text; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text; + global::Xamarin.Forms.Platform.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked = global::mederly.Droid.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked; + global::Xamarin.Forms.Platform.Resource.Style.Platform_AppCompat = global::mederly.Droid.Resource.Style.Platform_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Platform_AppCompat_Light = global::mederly.Droid.Resource.Style.Platform_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Platform_MaterialComponents = global::mederly.Droid.Resource.Style.Platform_MaterialComponents; + global::Xamarin.Forms.Platform.Resource.Style.Platform_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Platform_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Platform_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Platform_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Resource.Style.Platform_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Platform_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Platform_ThemeOverlay_AppCompat = global::mederly.Droid.Resource.Style.Platform_ThemeOverlay_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Platform_ThemeOverlay_AppCompat_Dark = global::mederly.Droid.Resource.Style.Platform_ThemeOverlay_AppCompat_Dark; + global::Xamarin.Forms.Platform.Resource.Style.Platform_ThemeOverlay_AppCompat_Light = global::mederly.Droid.Resource.Style.Platform_ThemeOverlay_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Platform_V21_AppCompat = global::mederly.Droid.Resource.Style.Platform_V21_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Platform_V21_AppCompat_Light = global::mederly.Droid.Resource.Style.Platform_V21_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Platform_V25_AppCompat = global::mederly.Droid.Resource.Style.Platform_V25_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Platform_V25_AppCompat_Light = global::mederly.Droid.Resource.Style.Platform_V25_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Platform_Widget_AppCompat_Spinner = global::mederly.Droid.Resource.Style.Platform_Widget_AppCompat_Spinner; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_DialogWindowTitle_AppCompat = global::mederly.Droid.Resource.Style.RtlOverlay_DialogWindowTitle_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_ActionBar_TitleItem; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_DialogTitle_Icon = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_DialogTitle_Icon; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Text; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Title; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_SearchView_MagIcon = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_SearchView_MagIcon; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Query = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Query; + global::Xamarin.Forms.Platform.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Text = global::mederly.Droid.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Text; + global::Xamarin.Forms.Platform.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton = global::mederly.Droid.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton; + global::Xamarin.Forms.Platform.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = global::mederly.Droid.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.scrollViewScrollBars = global::mederly.Droid.Resource.Style.scrollViewScrollBars; + global::Xamarin.Forms.Platform.Resource.Style.scrollViewTheme = global::mederly.Droid.Resource.Style.scrollViewTheme; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_BottomLeftDifferentCornerSize = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_BottomLeftDifferentCornerSize; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_BottomRightCut = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_BottomRightCut; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_Cut = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_Cut; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_DifferentCornerSize = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_DifferentCornerSize; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_BottomSheet = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_BottomSheet; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_Chip = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_Chip; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_TopLeftCut = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_TopLeftCut; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearanceOverlay_TopRightDifferentCornerSize = global::mederly.Droid.Resource.Style.ShapeAppearanceOverlay_TopRightDifferentCornerSize; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearance_MaterialComponents = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearance_MaterialComponents_LargeComponent = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_LargeComponent; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearance_MaterialComponents_MediumComponent = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_MediumComponent; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearance_MaterialComponents_SmallComponent = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_SmallComponent; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearance_MaterialComponents_Test = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_Test; + global::Xamarin.Forms.Platform.Resource.Style.ShapeAppearance_MaterialComponents_Tooltip = global::mederly.Droid.Resource.Style.ShapeAppearance_MaterialComponents_Tooltip; + global::Xamarin.Forms.Platform.Resource.Style.TestStyleWithLineHeight = global::mederly.Droid.Resource.Style.TestStyleWithLineHeight; + global::Xamarin.Forms.Platform.Resource.Style.TestStyleWithLineHeightAppearance = global::mederly.Droid.Resource.Style.TestStyleWithLineHeightAppearance; + global::Xamarin.Forms.Platform.Resource.Style.TestStyleWithoutLineHeight = global::mederly.Droid.Resource.Style.TestStyleWithoutLineHeight; + global::Xamarin.Forms.Platform.Resource.Style.TestStyleWithThemeLineHeightAttribute = global::mederly.Droid.Resource.Style.TestStyleWithThemeLineHeightAttribute; + global::Xamarin.Forms.Platform.Resource.Style.TestThemeWithLineHeight = global::mederly.Droid.Resource.Style.TestThemeWithLineHeight; + global::Xamarin.Forms.Platform.Resource.Style.TestThemeWithLineHeightDisabled = global::mederly.Droid.Resource.Style.TestThemeWithLineHeightDisabled; + global::Xamarin.Forms.Platform.Resource.Style.Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = global::mederly.Droid.Resource.Style.Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day; + global::Xamarin.Forms.Platform.Resource.Style.Test_Theme_MaterialComponents_MaterialCalendar = global::mederly.Droid.Resource.Style.Test_Theme_MaterialComponents_MaterialCalendar; + global::Xamarin.Forms.Platform.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar = global::mederly.Droid.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar; + global::Xamarin.Forms.Platform.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day = global::mederly.Droid.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day; + global::Xamarin.Forms.Platform.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected = global::mederly.Droid.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Body1 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Body1; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Body2 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Body2; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Button = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Button; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Caption = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Caption; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Display1 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Display1; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Display2 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Display2; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Display3 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Display3; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Display4 = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Display4; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Headline = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Headline; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Large = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Large; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Large_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Large_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Title; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Large; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Small; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Medium = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Medium; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Medium_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Medium_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Menu = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Menu; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_SearchResult_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_SearchResult_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_SearchResult_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_SearchResult_Title; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Small = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Small; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Small_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Small_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Subhead = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Subhead; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Subhead_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Subhead_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Title; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Title_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Title_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Tooltip = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Tooltip; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Menu = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Menu; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_Button = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Button; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_Button_Borderless_Colored = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Button_Borderless_Colored; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_Button_Colored = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Button_Colored; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_Button_Inverse = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Button_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_DropDownItem = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_DropDownItem; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Header = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Header; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Large = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Large; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Small = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Small; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_Switch = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_Switch; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_AppCompat_Widget_TextView_SpinnerItem = global::mederly.Droid.Resource.Style.TextAppearance_AppCompat_Widget_TextView_SpinnerItem; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Info = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Info; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Info_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Info_Media; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Line2 = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Line2; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Line2_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Line2_Media; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Media; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Time = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Time; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Time_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Time_Media; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Title = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Title; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Compat_Notification_Title_Media = global::mederly.Droid.Resource.Style.TextAppearance_Compat_Notification_Title_Media; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_CollapsingToolbar_Expanded = global::mederly.Droid.Resource.Style.TextAppearance_Design_CollapsingToolbar_Expanded; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Counter = global::mederly.Droid.Resource.Style.TextAppearance_Design_Counter; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Counter_Overflow = global::mederly.Droid.Resource.Style.TextAppearance_Design_Counter_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Error = global::mederly.Droid.Resource.Style.TextAppearance_Design_Error; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_HelperText = global::mederly.Droid.Resource.Style.TextAppearance_Design_HelperText; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Hint = global::mederly.Droid.Resource.Style.TextAppearance_Design_Hint; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Placeholder = global::mederly.Droid.Resource.Style.TextAppearance_Design_Placeholder; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Prefix = global::mederly.Droid.Resource.Style.TextAppearance_Design_Prefix; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Snackbar_Message = global::mederly.Droid.Resource.Style.TextAppearance_Design_Snackbar_Message; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Suffix = global::mederly.Droid.Resource.Style.TextAppearance_Design_Suffix; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Design_Tab = global::mederly.Droid.Resource.Style.TextAppearance_Design_Tab; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Badge = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Badge; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Body1 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Body1; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Body2 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Body2; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Button = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Button; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Caption = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Caption; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Chip = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Chip; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Headline1 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline1; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Headline2 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline2; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Headline3 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline3; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Headline4 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline4; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Headline5 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline5; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Headline6 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Headline6; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Overline = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Overline; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Subtitle1 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Subtitle1; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Subtitle2 = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Subtitle2; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_MaterialComponents_Tooltip = global::mederly.Droid.Resource.Style.TextAppearance_MaterialComponents_Tooltip; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Widget_AppCompat_ExpandedMenu_Item = global::mederly.Droid.Resource.Style.TextAppearance_Widget_AppCompat_ExpandedMenu_Item; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Subtitle = global::mederly.Droid.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Subtitle; + global::Xamarin.Forms.Platform.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Title = global::mederly.Droid.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Title; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlayColorAccentRed = global::mederly.Droid.Resource.Style.ThemeOverlayColorAccentRed; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat_Dark = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Dark; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat_Dark_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Dark_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat_DayNight = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_DayNight; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat_DayNight_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_DayNight_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat_Dialog = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat_Dialog_Alert = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_AppCompat_Light = global::mederly.Droid.Resource.Style.ThemeOverlay_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_Design_TextInputEditText = global::mederly.Droid.Resource.Style.ThemeOverlay_Design_TextInputEditText; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Primary = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Primary; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Surface = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Surface; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Primary = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Primary; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Surface = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Surface; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_BottomSheetDialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Dark = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dark; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Dark_ActionBar = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dark_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert_Framework; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Light = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Light_BottomSheetDialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Light_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Primary = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Primary; + global::Xamarin.Forms.Platform.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Surface = global::mederly.Droid.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Surface; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat = global::mederly.Droid.Resource.Style.Theme_AppCompat; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_CompactMenu = global::mederly.Droid.Resource.Style.Theme_AppCompat_CompactMenu; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_DayNight = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_DayNight_DarkActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_DarkActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_DayNight_Dialog = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_DayNight_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_DayNight_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_DayNight_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_DayNight_NoActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_DayNight_NoActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Dialog = global::mederly.Droid.Resource.Style.Theme_AppCompat_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_AppCompat_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_AppCompat_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_AppCompat_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Empty = global::mederly.Droid.Resource.Style.Theme_AppCompat_Empty; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Light = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Light_DarkActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_DarkActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Light_Dialog = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Light_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Light_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Light_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_Light_NoActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_Light_NoActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_AppCompat_NoActionBar = global::mederly.Droid.Resource.Style.Theme_AppCompat_NoActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_Design = global::mederly.Droid.Resource.Style.Theme_Design; + global::Xamarin.Forms.Platform.Resource.Style.Theme_Design_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_Design_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_Design_Light = global::mederly.Droid.Resource.Style.Theme_Design_Light; + global::Xamarin.Forms.Platform.Resource.Style.Theme_Design_Light_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_Design_Light_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_Design_Light_NoActionBar = global::mederly.Droid.Resource.Style.Theme_Design_Light_NoActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_Design_NoActionBar = global::mederly.Droid.Resource.Style.Theme_Design_NoActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents = global::mederly.Droid.Resource.Style.Theme_MaterialComponents; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_CompactMenu = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_CompactMenu; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Dialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Dialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Dialog_Alert_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_Alert_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Dialog_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_BarSize = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_BarSize; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_BottomSheetDialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_BottomSheetDialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Dialog = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_DialogWhenLarge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_DialogWhenLarge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Dialog_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_LargeTouch = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_LargeTouch; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_NoActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_NoActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_Light_NoActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_Light_NoActionBar_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_NoActionBar = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_NoActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Theme_MaterialComponents_NoActionBar_Bridge = global::mederly.Droid.Resource.Style.Theme_MaterialComponents_NoActionBar_Bridge; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionBar_Solid = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar_Solid; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionBar_TabBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar_TabBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionBar_TabText = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar_TabText; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionBar_TabView = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionBar_TabView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionButton = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionButton_CloseMode = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionButton_CloseMode; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionButton_Overflow = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionButton_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActionMode = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActionMode; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ActivityChooserView = global::mederly.Droid.Resource.Style.Widget_AppCompat_ActivityChooserView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Widget_AppCompat_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Button = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ButtonBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_ButtonBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ButtonBar_AlertDialog = global::mederly.Droid.Resource.Style.Widget_AppCompat_ButtonBar_AlertDialog; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Button_Borderless = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_Borderless; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Button_Borderless_Colored = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_Borderless_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Button_ButtonBar_AlertDialog = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_ButtonBar_AlertDialog; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Button_Colored = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Button_Small = global::mederly.Droid.Resource.Style.Widget_AppCompat_Button_Small; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_CompoundButton_CheckBox = global::mederly.Droid.Resource.Style.Widget_AppCompat_CompoundButton_CheckBox; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_CompoundButton_RadioButton = global::mederly.Droid.Resource.Style.Widget_AppCompat_CompoundButton_RadioButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_CompoundButton_Switch = global::mederly.Droid.Resource.Style.Widget_AppCompat_CompoundButton_Switch; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_DrawerArrowToggle = global::mederly.Droid.Resource.Style.Widget_AppCompat_DrawerArrowToggle; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_DropDownItem_Spinner = global::mederly.Droid.Resource.Style.Widget_AppCompat_DropDownItem_Spinner; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_EditText = global::mederly.Droid.Resource.Style.Widget_AppCompat_EditText; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ImageButton = global::mederly.Droid.Resource.Style.Widget_AppCompat_ImageButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionButton = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionButton_CloseMode = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionButton_CloseMode; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionButton_Overflow = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionButton_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActionMode_Inverse = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActionMode_Inverse; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ActivityChooserView = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ActivityChooserView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_AutoCompleteTextView = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_AutoCompleteTextView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_DropDownItem_Spinner = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_DropDownItem_Spinner; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ListPopupWindow = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ListPopupWindow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_ListView_DropDown = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_ListView_DropDown; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_PopupMenu = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_PopupMenu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_SearchView = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_SearchView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Light_Spinner_DropDown_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Light_Spinner_DropDown_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ListMenuView = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListMenuView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ListPopupWindow = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListPopupWindow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ListView = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ListView_DropDown = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListView_DropDown; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ListView_Menu = global::mederly.Droid.Resource.Style.Widget_AppCompat_ListView_Menu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_PopupMenu = global::mederly.Droid.Resource.Style.Widget_AppCompat_PopupMenu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Widget_AppCompat_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_PopupWindow = global::mederly.Droid.Resource.Style.Widget_AppCompat_PopupWindow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ProgressBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_ProgressBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_ProgressBar_Horizontal = global::mederly.Droid.Resource.Style.Widget_AppCompat_ProgressBar_Horizontal; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_RatingBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_RatingBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_RatingBar_Indicator = global::mederly.Droid.Resource.Style.Widget_AppCompat_RatingBar_Indicator; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_RatingBar_Small = global::mederly.Droid.Resource.Style.Widget_AppCompat_RatingBar_Small; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_SearchView = global::mederly.Droid.Resource.Style.Widget_AppCompat_SearchView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_SearchView_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_SearchView_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_SeekBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_SeekBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_SeekBar_Discrete = global::mederly.Droid.Resource.Style.Widget_AppCompat_SeekBar_Discrete; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Spinner = global::mederly.Droid.Resource.Style.Widget_AppCompat_Spinner; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Spinner_DropDown = global::mederly.Droid.Resource.Style.Widget_AppCompat_Spinner_DropDown; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Spinner_DropDown_ActionBar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Spinner_DropDown_ActionBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Spinner_Underlined = global::mederly.Droid.Resource.Style.Widget_AppCompat_Spinner_Underlined; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_TextView = global::mederly.Droid.Resource.Style.Widget_AppCompat_TextView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_TextView_SpinnerItem = global::mederly.Droid.Resource.Style.Widget_AppCompat_TextView_SpinnerItem; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Toolbar = global::mederly.Droid.Resource.Style.Widget_AppCompat_Toolbar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_AppCompat_Toolbar_Button_Navigation = global::mederly.Droid.Resource.Style.Widget_AppCompat_Toolbar_Button_Navigation; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Compat_NotificationActionContainer = global::mederly.Droid.Resource.Style.Widget_Compat_NotificationActionContainer; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Compat_NotificationActionText = global::mederly.Droid.Resource.Style.Widget_Compat_NotificationActionText; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_AppBarLayout = global::mederly.Droid.Resource.Style.Widget_Design_AppBarLayout; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_BottomNavigationView = global::mederly.Droid.Resource.Style.Widget_Design_BottomNavigationView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_BottomSheet_Modal = global::mederly.Droid.Resource.Style.Widget_Design_BottomSheet_Modal; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_CollapsingToolbar = global::mederly.Droid.Resource.Style.Widget_Design_CollapsingToolbar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_FloatingActionButton = global::mederly.Droid.Resource.Style.Widget_Design_FloatingActionButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_NavigationView = global::mederly.Droid.Resource.Style.Widget_Design_NavigationView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_ScrimInsetsFrameLayout = global::mederly.Droid.Resource.Style.Widget_Design_ScrimInsetsFrameLayout; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_Snackbar = global::mederly.Droid.Resource.Style.Widget_Design_Snackbar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_TabLayout = global::mederly.Droid.Resource.Style.Widget_Design_TabLayout; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_TextInputEditText = global::mederly.Droid.Resource.Style.Widget_Design_TextInputEditText; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Design_TextInputLayout = global::mederly.Droid.Resource.Style.Widget_Design_TextInputLayout; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_ActionBar_Primary = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ActionBar_Primary; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_ActionBar_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ActionBar_PrimarySurface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_ActionBar_Solid = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ActionBar_Solid; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_ActionBar_Surface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ActionBar_Surface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_AppBarLayout_Primary = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AppBarLayout_Primary; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_AppBarLayout_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AppBarLayout_PrimarySurface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_AppBarLayout_Surface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AppBarLayout_Surface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Badge = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Badge; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_BottomAppBar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomAppBar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_BottomAppBar_Colored = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomAppBar_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_BottomAppBar_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomAppBar_PrimarySurface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_BottomNavigationView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomNavigationView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_BottomNavigationView_Colored = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomNavigationView_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_BottomNavigationView_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomNavigationView_PrimarySurface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_BottomSheet = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomSheet; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_BottomSheet_Modal = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_BottomSheet_Modal; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_Icon; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton_Icon; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_TextButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Flush = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Flush; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Icon; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_TextButton_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Icon; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_TextButton_Snackbar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_TextButton_Snackbar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton_Icon; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_CardView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CardView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_CheckedTextView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CheckedTextView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_ChipGroup = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ChipGroup; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Chip_Action = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Chip_Action; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Chip_Choice = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Chip_Choice; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Chip_Entry = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Chip_Entry; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Chip_Filter = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Chip_Filter; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_CompoundButton_CheckBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CompoundButton_CheckBox; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_CompoundButton_RadioButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CompoundButton_RadioButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_CompoundButton_Switch = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_CompoundButton_Switch; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton_Icon = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton_Icon; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_FloatingActionButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_FloatingActionButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Light_ActionBar_Solid = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Light_ActionBar_Solid; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialButtonToggleGroup = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialButtonToggleGroup; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_DayTextView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_DayTextView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Invalid = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Invalid; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Selected = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Selected; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Today = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Today; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Fullscreen = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Fullscreen; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderDivider = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderDivider; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderLayout = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderLayout; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderTitle = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderTitle; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Item = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Item; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Selected = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Selected; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Today = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Today; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_NavigationView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_NavigationView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_PopupMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_PopupMenu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_PopupMenu_ContextMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_PopupMenu_ContextMenu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_PopupMenu_ListPopupWindow = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_PopupMenu_ListPopupWindow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_PopupMenu_Overflow = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_PopupMenu_Overflow; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_ShapeableImageView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_ShapeableImageView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Slider = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Slider; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Snackbar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Snackbar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Snackbar_FullWidth = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Snackbar_FullWidth; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Snackbar_TextView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Snackbar_TextView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TabLayout = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TabLayout; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TabLayout_Colored = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TabLayout_Colored; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TabLayout_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TabLayout_PrimarySurface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_TextView = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_TextView; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Toolbar = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Toolbar; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Toolbar_Primary = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Toolbar_Primary; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Toolbar_PrimarySurface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Toolbar_PrimarySurface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Toolbar_Surface = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Toolbar_Surface; + global::Xamarin.Forms.Platform.Resource.Style.Widget_MaterialComponents_Tooltip = global::mederly.Droid.Resource.Style.Widget_MaterialComponents_Tooltip; + global::Xamarin.Forms.Platform.Resource.Style.Widget_Support_CoordinatorLayout = global::mederly.Droid.Resource.Style.Widget_Support_CoordinatorLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar = global::mederly.Droid.Resource.Styleable.ActionBar; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBarLayout = global::mederly.Droid.Resource.Styleable.ActionBarLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBarLayout_android_layout_gravity = global::mederly.Droid.Resource.Styleable.ActionBarLayout_android_layout_gravity; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_background = global::mederly.Droid.Resource.Styleable.ActionBar_background; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_backgroundSplit = global::mederly.Droid.Resource.Styleable.ActionBar_backgroundSplit; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_backgroundStacked = global::mederly.Droid.Resource.Styleable.ActionBar_backgroundStacked; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_contentInsetEnd = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_contentInsetEndWithActions = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetEndWithActions; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_contentInsetLeft = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_contentInsetRight = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetRight; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_contentInsetStart = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetStart; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_contentInsetStartWithNavigation = global::mederly.Droid.Resource.Styleable.ActionBar_contentInsetStartWithNavigation; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_customNavigationLayout = global::mederly.Droid.Resource.Styleable.ActionBar_customNavigationLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_displayOptions = global::mederly.Droid.Resource.Styleable.ActionBar_displayOptions; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_divider = global::mederly.Droid.Resource.Styleable.ActionBar_divider; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_elevation = global::mederly.Droid.Resource.Styleable.ActionBar_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_height = global::mederly.Droid.Resource.Styleable.ActionBar_height; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_hideOnContentScroll = global::mederly.Droid.Resource.Styleable.ActionBar_hideOnContentScroll; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_homeAsUpIndicator = global::mederly.Droid.Resource.Styleable.ActionBar_homeAsUpIndicator; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_homeLayout = global::mederly.Droid.Resource.Styleable.ActionBar_homeLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_icon = global::mederly.Droid.Resource.Styleable.ActionBar_icon; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_indeterminateProgressStyle = global::mederly.Droid.Resource.Styleable.ActionBar_indeterminateProgressStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_itemPadding = global::mederly.Droid.Resource.Styleable.ActionBar_itemPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_logo = global::mederly.Droid.Resource.Styleable.ActionBar_logo; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_navigationMode = global::mederly.Droid.Resource.Styleable.ActionBar_navigationMode; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_popupTheme = global::mederly.Droid.Resource.Styleable.ActionBar_popupTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_progressBarPadding = global::mederly.Droid.Resource.Styleable.ActionBar_progressBarPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_progressBarStyle = global::mederly.Droid.Resource.Styleable.ActionBar_progressBarStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_subtitle = global::mederly.Droid.Resource.Styleable.ActionBar_subtitle; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_subtitleTextStyle = global::mederly.Droid.Resource.Styleable.ActionBar_subtitleTextStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_title = global::mederly.Droid.Resource.Styleable.ActionBar_title; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionBar_titleTextStyle = global::mederly.Droid.Resource.Styleable.ActionBar_titleTextStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMenuItemView = global::mederly.Droid.Resource.Styleable.ActionMenuItemView; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMenuItemView_android_minWidth = global::mederly.Droid.Resource.Styleable.ActionMenuItemView_android_minWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMenuView = global::mederly.Droid.Resource.Styleable.ActionMenuView; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMode = global::mederly.Droid.Resource.Styleable.ActionMode; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMode_background = global::mederly.Droid.Resource.Styleable.ActionMode_background; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMode_backgroundSplit = global::mederly.Droid.Resource.Styleable.ActionMode_backgroundSplit; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMode_closeItemLayout = global::mederly.Droid.Resource.Styleable.ActionMode_closeItemLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMode_height = global::mederly.Droid.Resource.Styleable.ActionMode_height; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMode_subtitleTextStyle = global::mederly.Droid.Resource.Styleable.ActionMode_subtitleTextStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.ActionMode_titleTextStyle = global::mederly.Droid.Resource.Styleable.ActionMode_titleTextStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.ActivityChooserView = global::mederly.Droid.Resource.Styleable.ActivityChooserView; + global::Xamarin.Forms.Platform.Resource.Styleable.ActivityChooserView_expandActivityOverflowButtonDrawable = global::mederly.Droid.Resource.Styleable.ActivityChooserView_expandActivityOverflowButtonDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.ActivityChooserView_initialActivityCount = global::mederly.Droid.Resource.Styleable.ActivityChooserView_initialActivityCount; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog = global::mederly.Droid.Resource.Styleable.AlertDialog; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog_android_layout = global::mederly.Droid.Resource.Styleable.AlertDialog_android_layout; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog_buttonIconDimen = global::mederly.Droid.Resource.Styleable.AlertDialog_buttonIconDimen; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog_buttonPanelSideLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_buttonPanelSideLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog_listItemLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_listItemLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog_listLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_listLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog_multiChoiceItemLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_multiChoiceItemLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog_showTitle = global::mederly.Droid.Resource.Styleable.AlertDialog_showTitle; + global::Xamarin.Forms.Platform.Resource.Styleable.AlertDialog_singleChoiceItemLayout = global::mederly.Droid.Resource.Styleable.AlertDialog_singleChoiceItemLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableCompat = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableCompat_android_constantSize = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_constantSize; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableCompat_android_dither = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_dither; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableCompat_android_enterFadeDuration = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_enterFadeDuration; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableCompat_android_exitFadeDuration = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_exitFadeDuration; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableCompat_android_variablePadding = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_variablePadding; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableCompat_android_visible = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableCompat_android_visible; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableItem = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableItem; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableItem_android_drawable = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableItem_android_drawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableItem_android_id = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableItem_android_id; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableTransition = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableTransition_android_drawable = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition_android_drawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableTransition_android_fromId = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition_android_fromId; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableTransition_android_reversible = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition_android_reversible; + global::Xamarin.Forms.Platform.Resource.Styleable.AnimatedStateListDrawableTransition_android_toId = global::mederly.Droid.Resource.Styleable.AnimatedStateListDrawableTransition_android_toId; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout = global::mederly.Droid.Resource.Styleable.AppBarLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayoutStates = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayoutStates_state_collapsed = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates_state_collapsed; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayoutStates_state_collapsible = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates_state_collapsible; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayoutStates_state_liftable = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates_state_liftable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayoutStates_state_lifted = global::mederly.Droid.Resource.Styleable.AppBarLayoutStates_state_lifted; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_android_background = global::mederly.Droid.Resource.Styleable.AppBarLayout_android_background; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_android_keyboardNavigationCluster = global::mederly.Droid.Resource.Styleable.AppBarLayout_android_keyboardNavigationCluster; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_android_touchscreenBlocksFocus = global::mederly.Droid.Resource.Styleable.AppBarLayout_android_touchscreenBlocksFocus; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_elevation = global::mederly.Droid.Resource.Styleable.AppBarLayout_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_expanded = global::mederly.Droid.Resource.Styleable.AppBarLayout_expanded; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_Layout = global::mederly.Droid.Resource.Styleable.AppBarLayout_Layout; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_Layout_layout_scrollFlags = global::mederly.Droid.Resource.Styleable.AppBarLayout_Layout_layout_scrollFlags; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_Layout_layout_scrollInterpolator = global::mederly.Droid.Resource.Styleable.AppBarLayout_Layout_layout_scrollInterpolator; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_liftOnScroll = global::mederly.Droid.Resource.Styleable.AppBarLayout_liftOnScroll; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_liftOnScrollTargetViewId = global::mederly.Droid.Resource.Styleable.AppBarLayout_liftOnScrollTargetViewId; + global::Xamarin.Forms.Platform.Resource.Styleable.AppBarLayout_statusBarForeground = global::mederly.Droid.Resource.Styleable.AppBarLayout_statusBarForeground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatImageView = global::mederly.Droid.Resource.Styleable.AppCompatImageView; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatImageView_android_src = global::mederly.Droid.Resource.Styleable.AppCompatImageView_android_src; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatImageView_srcCompat = global::mederly.Droid.Resource.Styleable.AppCompatImageView_srcCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatImageView_tint = global::mederly.Droid.Resource.Styleable.AppCompatImageView_tint; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatImageView_tintMode = global::mederly.Droid.Resource.Styleable.AppCompatImageView_tintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatSeekBar = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatSeekBar_android_thumb = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar_android_thumb; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatSeekBar_tickMark = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar_tickMark; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatSeekBar_tickMarkTint = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar_tickMarkTint; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatSeekBar_tickMarkTintMode = global::mederly.Droid.Resource.Styleable.AppCompatSeekBar_tickMarkTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextHelper = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextHelper_android_drawableBottom = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextHelper_android_drawableEnd = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextHelper_android_drawableLeft = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextHelper_android_drawableRight = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableRight; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextHelper_android_drawableStart = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableStart; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextHelper_android_drawableTop = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_drawableTop; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextHelper_android_textAppearance = global::mederly.Droid.Resource.Styleable.AppCompatTextHelper_android_textAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView = global::mederly.Droid.Resource.Styleable.AppCompatTextView; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_android_textAppearance = global::mederly.Droid.Resource.Styleable.AppCompatTextView_android_textAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_autoSizeMaxTextSize = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizeMaxTextSize; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_autoSizeMinTextSize = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizeMinTextSize; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_autoSizePresetSizes = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizePresetSizes; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_autoSizeStepGranularity = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizeStepGranularity; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_autoSizeTextType = global::mederly.Droid.Resource.Styleable.AppCompatTextView_autoSizeTextType; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_drawableBottomCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableBottomCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_drawableEndCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableEndCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_drawableLeftCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableLeftCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_drawableRightCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableRightCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_drawableStartCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableStartCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_drawableTint = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableTint; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_drawableTintMode = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_drawableTopCompat = global::mederly.Droid.Resource.Styleable.AppCompatTextView_drawableTopCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_firstBaselineToTopHeight = global::mederly.Droid.Resource.Styleable.AppCompatTextView_firstBaselineToTopHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_fontFamily = global::mederly.Droid.Resource.Styleable.AppCompatTextView_fontFamily; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_fontVariationSettings = global::mederly.Droid.Resource.Styleable.AppCompatTextView_fontVariationSettings; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_lastBaselineToBottomHeight = global::mederly.Droid.Resource.Styleable.AppCompatTextView_lastBaselineToBottomHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_lineHeight = global::mederly.Droid.Resource.Styleable.AppCompatTextView_lineHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_textAllCaps = global::mederly.Droid.Resource.Styleable.AppCompatTextView_textAllCaps; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTextView_textLocale = global::mederly.Droid.Resource.Styleable.AppCompatTextView_textLocale; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarDivider = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarDivider; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarItemBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarItemBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarPopupTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarPopupTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarSize = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarSize; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarSplitStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarSplitStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarTabBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarTabBarStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarTabStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarTabStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarTabTextStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarTabTextStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionBarWidgetTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionBarWidgetTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionDropDownStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionDropDownStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionMenuTextAppearance = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionMenuTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionMenuTextColor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionMenuTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeCloseButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeCloseButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeCloseDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeCloseDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeCopyDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeCopyDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeCutDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeCutDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeFindDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeFindDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModePasteDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModePasteDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModePopupWindowStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModePopupWindowStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeSelectAllDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeSelectAllDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeShareDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeShareDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeSplitBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeSplitBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionModeWebSearchDrawable = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionModeWebSearchDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionOverflowButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionOverflowButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_actionOverflowMenuStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_actionOverflowMenuStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_activityChooserViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_activityChooserViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_alertDialogButtonGroupStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_alertDialogButtonGroupStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_alertDialogCenterButtons = global::mederly.Droid.Resource.Styleable.AppCompatTheme_alertDialogCenterButtons; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_alertDialogStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_alertDialogStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_alertDialogTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_alertDialogTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_android_windowAnimationStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_android_windowAnimationStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_android_windowIsFloating = global::mederly.Droid.Resource.Styleable.AppCompatTheme_android_windowIsFloating; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_autoCompleteTextViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_autoCompleteTextViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_borderlessButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_borderlessButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_buttonBarButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_buttonBarNegativeButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarNegativeButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_buttonBarNeutralButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarNeutralButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_buttonBarPositiveButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarPositiveButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_buttonBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonBarStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_buttonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_buttonStyleSmall = global::mederly.Droid.Resource.Styleable.AppCompatTheme_buttonStyleSmall; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_checkboxStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_checkboxStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_checkedTextViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_checkedTextViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorAccent = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorAccent; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorBackgroundFloating = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorBackgroundFloating; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorButtonNormal = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorButtonNormal; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorControlActivated = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorControlActivated; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorControlHighlight = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorControlHighlight; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorControlNormal = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorControlNormal; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorError = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorError; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorPrimary = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorPrimary; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorPrimaryDark = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorPrimaryDark; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_colorSwitchThumbNormal = global::mederly.Droid.Resource.Styleable.AppCompatTheme_colorSwitchThumbNormal; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_controlBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_controlBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_dialogCornerRadius = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dialogCornerRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_dialogPreferredPadding = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dialogPreferredPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_dialogTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dialogTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_dividerHorizontal = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dividerHorizontal; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_dividerVertical = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dividerVertical; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_dropdownListPreferredItemHeight = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dropdownListPreferredItemHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_dropDownListViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_dropDownListViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_editTextBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_editTextBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_editTextColor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_editTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_editTextStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_editTextStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_homeAsUpIndicator = global::mederly.Droid.Resource.Styleable.AppCompatTheme_homeAsUpIndicator; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_imageButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_imageButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listChoiceBackgroundIndicator = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listChoiceBackgroundIndicator; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listChoiceIndicatorMultipleAnimated = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listChoiceIndicatorMultipleAnimated; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listChoiceIndicatorSingleAnimated = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listChoiceIndicatorSingleAnimated; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listDividerAlertDialog = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listDividerAlertDialog; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listMenuViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listMenuViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listPopupWindowStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPopupWindowStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listPreferredItemHeight = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listPreferredItemHeightLarge = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemHeightLarge; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listPreferredItemHeightSmall = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemHeightSmall; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingEnd = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingLeft = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingRight = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingRight; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingStart = global::mederly.Droid.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingStart; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_panelBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_panelBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_panelMenuListTheme = global::mederly.Droid.Resource.Styleable.AppCompatTheme_panelMenuListTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_panelMenuListWidth = global::mederly.Droid.Resource.Styleable.AppCompatTheme_panelMenuListWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_popupMenuStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_popupMenuStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_popupWindowStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_popupWindowStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_radioButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_radioButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_ratingBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_ratingBarStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_ratingBarStyleIndicator = global::mederly.Droid.Resource.Styleable.AppCompatTheme_ratingBarStyleIndicator; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_ratingBarStyleSmall = global::mederly.Droid.Resource.Styleable.AppCompatTheme_ratingBarStyleSmall; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_searchViewStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_searchViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_seekBarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_seekBarStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_selectableItemBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_selectableItemBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_selectableItemBackgroundBorderless = global::mederly.Droid.Resource.Styleable.AppCompatTheme_selectableItemBackgroundBorderless; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_spinnerDropDownItemStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_spinnerDropDownItemStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_spinnerStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_spinnerStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_switchStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_switchStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textAppearanceLargePopupMenu = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceLargePopupMenu; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textAppearanceListItem = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceListItem; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textAppearanceListItemSecondary = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceListItemSecondary; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textAppearanceListItemSmall = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceListItemSmall; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textAppearancePopupMenuHeader = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearancePopupMenuHeader; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultSubtitle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultSubtitle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultTitle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultTitle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textAppearanceSmallPopupMenu = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textAppearanceSmallPopupMenu; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textColorAlertDialogListItem = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textColorAlertDialogListItem; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_textColorSearchUrl = global::mederly.Droid.Resource.Styleable.AppCompatTheme_textColorSearchUrl; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_toolbarNavigationButtonStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_toolbarNavigationButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_toolbarStyle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_toolbarStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_tooltipForegroundColor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_tooltipForegroundColor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_tooltipFrameBackground = global::mederly.Droid.Resource.Styleable.AppCompatTheme_tooltipFrameBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_viewInflaterClass = global::mederly.Droid.Resource.Styleable.AppCompatTheme_viewInflaterClass; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowActionBar = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowActionBar; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowActionBarOverlay = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowActionBarOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowActionModeOverlay = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowActionModeOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowFixedHeightMajor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowFixedHeightMajor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowFixedHeightMinor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowFixedHeightMinor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowFixedWidthMajor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowFixedWidthMajor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowFixedWidthMinor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowFixedWidthMinor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowMinWidthMajor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowMinWidthMajor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowMinWidthMinor = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowMinWidthMinor; + global::Xamarin.Forms.Platform.Resource.Styleable.AppCompatTheme_windowNoTitle = global::mederly.Droid.Resource.Styleable.AppCompatTheme_windowNoTitle; + global::Xamarin.Forms.Platform.Resource.Styleable.Badge = global::mederly.Droid.Resource.Styleable.Badge; + global::Xamarin.Forms.Platform.Resource.Styleable.Badge_backgroundColor = global::mederly.Droid.Resource.Styleable.Badge_backgroundColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Badge_badgeGravity = global::mederly.Droid.Resource.Styleable.Badge_badgeGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.Badge_badgeTextColor = global::mederly.Droid.Resource.Styleable.Badge_badgeTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Badge_horizontalOffset = global::mederly.Droid.Resource.Styleable.Badge_horizontalOffset; + global::Xamarin.Forms.Platform.Resource.Styleable.Badge_maxCharacterCount = global::mederly.Droid.Resource.Styleable.Badge_maxCharacterCount; + global::Xamarin.Forms.Platform.Resource.Styleable.Badge_number = global::mederly.Droid.Resource.Styleable.Badge_number; + global::Xamarin.Forms.Platform.Resource.Styleable.Badge_verticalOffset = global::mederly.Droid.Resource.Styleable.Badge_verticalOffset; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar = global::mederly.Droid.Resource.Styleable.BottomAppBar; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_backgroundTint = global::mederly.Droid.Resource.Styleable.BottomAppBar_backgroundTint; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_elevation = global::mederly.Droid.Resource.Styleable.BottomAppBar_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_fabAlignmentMode = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabAlignmentMode; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_fabAnimationMode = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabAnimationMode; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_fabCradleMargin = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabCradleMargin; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_fabCradleRoundedCornerRadius = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabCradleRoundedCornerRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_fabCradleVerticalOffset = global::mederly.Droid.Resource.Styleable.BottomAppBar_fabCradleVerticalOffset; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_hideOnScroll = global::mederly.Droid.Resource.Styleable.BottomAppBar_hideOnScroll; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_paddingBottomSystemWindowInsets = global::mederly.Droid.Resource.Styleable.BottomAppBar_paddingBottomSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_paddingLeftSystemWindowInsets = global::mederly.Droid.Resource.Styleable.BottomAppBar_paddingLeftSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomAppBar_paddingRightSystemWindowInsets = global::mederly.Droid.Resource.Styleable.BottomAppBar_paddingRightSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView = global::mederly.Droid.Resource.Styleable.BottomNavigationView; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_backgroundTint = global::mederly.Droid.Resource.Styleable.BottomNavigationView_backgroundTint; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_elevation = global::mederly.Droid.Resource.Styleable.BottomNavigationView_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_itemBackground = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_itemHorizontalTranslationEnabled = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemHorizontalTranslationEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_itemIconSize = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemIconSize; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_itemIconTint = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_itemRippleColor = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemRippleColor; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_itemTextAppearanceActive = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemTextAppearanceActive; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_itemTextAppearanceInactive = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemTextAppearanceInactive; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_itemTextColor = global::mederly.Droid.Resource.Styleable.BottomNavigationView_itemTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_labelVisibilityMode = global::mederly.Droid.Resource.Styleable.BottomNavigationView_labelVisibilityMode; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomNavigationView_menu = global::mederly.Droid.Resource.Styleable.BottomNavigationView_menu; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_android_elevation = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_android_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_backgroundTint = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_backgroundTint; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_behavior_draggable = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_draggable; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_behavior_expandedOffset = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_expandedOffset; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_behavior_fitToContents = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_fitToContents; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_behavior_halfExpandedRatio = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_halfExpandedRatio; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_behavior_hideable = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_hideable; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_behavior_peekHeight = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_peekHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_behavior_saveFlags = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_saveFlags; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_behavior_skipCollapsed = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_behavior_skipCollapsed; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_gestureInsetBottomIgnored = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_gestureInsetBottomIgnored; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearance = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.ButtonBarLayout = global::mederly.Droid.Resource.Styleable.ButtonBarLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.ButtonBarLayout_allowStacking = global::mederly.Droid.Resource.Styleable.ButtonBarLayout_allowStacking; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView = global::mederly.Droid.Resource.Styleable.CardView; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_android_minHeight = global::mederly.Droid.Resource.Styleable.CardView_android_minHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_android_minWidth = global::mederly.Droid.Resource.Styleable.CardView_android_minWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_cardBackgroundColor = global::mederly.Droid.Resource.Styleable.CardView_cardBackgroundColor; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_cardCornerRadius = global::mederly.Droid.Resource.Styleable.CardView_cardCornerRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_cardElevation = global::mederly.Droid.Resource.Styleable.CardView_cardElevation; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_cardMaxElevation = global::mederly.Droid.Resource.Styleable.CardView_cardMaxElevation; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_cardPreventCornerOverlap = global::mederly.Droid.Resource.Styleable.CardView_cardPreventCornerOverlap; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_cardUseCompatPadding = global::mederly.Droid.Resource.Styleable.CardView_cardUseCompatPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_contentPadding = global::mederly.Droid.Resource.Styleable.CardView_contentPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_contentPaddingBottom = global::mederly.Droid.Resource.Styleable.CardView_contentPaddingBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_contentPaddingLeft = global::mederly.Droid.Resource.Styleable.CardView_contentPaddingLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_contentPaddingRight = global::mederly.Droid.Resource.Styleable.CardView_contentPaddingRight; + global::Xamarin.Forms.Platform.Resource.Styleable.CardView_contentPaddingTop = global::mederly.Droid.Resource.Styleable.CardView_contentPaddingTop; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip = global::mederly.Droid.Resource.Styleable.Chip; + global::Xamarin.Forms.Platform.Resource.Styleable.ChipGroup = global::mederly.Droid.Resource.Styleable.ChipGroup; + global::Xamarin.Forms.Platform.Resource.Styleable.ChipGroup_checkedChip = global::mederly.Droid.Resource.Styleable.ChipGroup_checkedChip; + global::Xamarin.Forms.Platform.Resource.Styleable.ChipGroup_chipSpacing = global::mederly.Droid.Resource.Styleable.ChipGroup_chipSpacing; + global::Xamarin.Forms.Platform.Resource.Styleable.ChipGroup_chipSpacingHorizontal = global::mederly.Droid.Resource.Styleable.ChipGroup_chipSpacingHorizontal; + global::Xamarin.Forms.Platform.Resource.Styleable.ChipGroup_chipSpacingVertical = global::mederly.Droid.Resource.Styleable.ChipGroup_chipSpacingVertical; + global::Xamarin.Forms.Platform.Resource.Styleable.ChipGroup_selectionRequired = global::mederly.Droid.Resource.Styleable.ChipGroup_selectionRequired; + global::Xamarin.Forms.Platform.Resource.Styleable.ChipGroup_singleLine = global::mederly.Droid.Resource.Styleable.ChipGroup_singleLine; + global::Xamarin.Forms.Platform.Resource.Styleable.ChipGroup_singleSelection = global::mederly.Droid.Resource.Styleable.ChipGroup_singleSelection; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_android_checkable = global::mederly.Droid.Resource.Styleable.Chip_android_checkable; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_android_ellipsize = global::mederly.Droid.Resource.Styleable.Chip_android_ellipsize; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_android_maxWidth = global::mederly.Droid.Resource.Styleable.Chip_android_maxWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_android_text = global::mederly.Droid.Resource.Styleable.Chip_android_text; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_android_textAppearance = global::mederly.Droid.Resource.Styleable.Chip_android_textAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_android_textColor = global::mederly.Droid.Resource.Styleable.Chip_android_textColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_checkedIcon = global::mederly.Droid.Resource.Styleable.Chip_checkedIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_checkedIconEnabled = global::mederly.Droid.Resource.Styleable.Chip_checkedIconEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_checkedIconTint = global::mederly.Droid.Resource.Styleable.Chip_checkedIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_checkedIconVisible = global::mederly.Droid.Resource.Styleable.Chip_checkedIconVisible; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipBackgroundColor = global::mederly.Droid.Resource.Styleable.Chip_chipBackgroundColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipCornerRadius = global::mederly.Droid.Resource.Styleable.Chip_chipCornerRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipEndPadding = global::mederly.Droid.Resource.Styleable.Chip_chipEndPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipIcon = global::mederly.Droid.Resource.Styleable.Chip_chipIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipIconEnabled = global::mederly.Droid.Resource.Styleable.Chip_chipIconEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipIconSize = global::mederly.Droid.Resource.Styleable.Chip_chipIconSize; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipIconTint = global::mederly.Droid.Resource.Styleable.Chip_chipIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipIconVisible = global::mederly.Droid.Resource.Styleable.Chip_chipIconVisible; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipMinHeight = global::mederly.Droid.Resource.Styleable.Chip_chipMinHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipMinTouchTargetSize = global::mederly.Droid.Resource.Styleable.Chip_chipMinTouchTargetSize; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipStartPadding = global::mederly.Droid.Resource.Styleable.Chip_chipStartPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipStrokeColor = global::mederly.Droid.Resource.Styleable.Chip_chipStrokeColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipStrokeWidth = global::mederly.Droid.Resource.Styleable.Chip_chipStrokeWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_chipSurfaceColor = global::mederly.Droid.Resource.Styleable.Chip_chipSurfaceColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_closeIcon = global::mederly.Droid.Resource.Styleable.Chip_closeIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_closeIconEnabled = global::mederly.Droid.Resource.Styleable.Chip_closeIconEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_closeIconEndPadding = global::mederly.Droid.Resource.Styleable.Chip_closeIconEndPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_closeIconSize = global::mederly.Droid.Resource.Styleable.Chip_closeIconSize; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_closeIconStartPadding = global::mederly.Droid.Resource.Styleable.Chip_closeIconStartPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_closeIconTint = global::mederly.Droid.Resource.Styleable.Chip_closeIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_closeIconVisible = global::mederly.Droid.Resource.Styleable.Chip_closeIconVisible; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_ensureMinTouchTargetSize = global::mederly.Droid.Resource.Styleable.Chip_ensureMinTouchTargetSize; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_hideMotionSpec = global::mederly.Droid.Resource.Styleable.Chip_hideMotionSpec; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_iconEndPadding = global::mederly.Droid.Resource.Styleable.Chip_iconEndPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_iconStartPadding = global::mederly.Droid.Resource.Styleable.Chip_iconStartPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_rippleColor = global::mederly.Droid.Resource.Styleable.Chip_rippleColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_shapeAppearance = global::mederly.Droid.Resource.Styleable.Chip_shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.Chip_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_showMotionSpec = global::mederly.Droid.Resource.Styleable.Chip_showMotionSpec; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_textEndPadding = global::mederly.Droid.Resource.Styleable.Chip_textEndPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.Chip_textStartPadding = global::mederly.Droid.Resource.Styleable.Chip_textStartPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleGravity = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleTextAppearance = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_contentScrim = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_contentScrim; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_expandedTitleGravity = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMargin = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMargin; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginBottom = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginEnd = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginStart = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginStart; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginTop = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginTop; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_expandedTitleTextAppearance = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_expandedTitleTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_Layout = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_Layout; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseMode = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseMode; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_maxLines = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_maxLines; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_scrimAnimationDuration = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_scrimAnimationDuration; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_scrimVisibleHeightTrigger = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_scrimVisibleHeightTrigger; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_statusBarScrim = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_statusBarScrim; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_title = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_title; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_titleEnabled = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_titleEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.CollapsingToolbarLayout_toolbarId = global::mederly.Droid.Resource.Styleable.CollapsingToolbarLayout_toolbarId; + global::Xamarin.Forms.Platform.Resource.Styleable.ColorStateListItem = global::mederly.Droid.Resource.Styleable.ColorStateListItem; + global::Xamarin.Forms.Platform.Resource.Styleable.ColorStateListItem_alpha = global::mederly.Droid.Resource.Styleable.ColorStateListItem_alpha; + global::Xamarin.Forms.Platform.Resource.Styleable.ColorStateListItem_android_alpha = global::mederly.Droid.Resource.Styleable.ColorStateListItem_android_alpha; + global::Xamarin.Forms.Platform.Resource.Styleable.ColorStateListItem_android_color = global::mederly.Droid.Resource.Styleable.ColorStateListItem_android_color; + global::Xamarin.Forms.Platform.Resource.Styleable.CompoundButton = global::mederly.Droid.Resource.Styleable.CompoundButton; + global::Xamarin.Forms.Platform.Resource.Styleable.CompoundButton_android_button = global::mederly.Droid.Resource.Styleable.CompoundButton_android_button; + global::Xamarin.Forms.Platform.Resource.Styleable.CompoundButton_buttonCompat = global::mederly.Droid.Resource.Styleable.CompoundButton_buttonCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.CompoundButton_buttonTint = global::mederly.Droid.Resource.Styleable.CompoundButton_buttonTint; + global::Xamarin.Forms.Platform.Resource.Styleable.CompoundButton_buttonTintMode = global::mederly.Droid.Resource.Styleable.CompoundButton_buttonTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout = global::mederly.Droid.Resource.Styleable.CoordinatorLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_keylines = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_keylines; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_Layout = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_Layout_android_layout_gravity = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_android_layout_gravity; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_Layout_layout_anchor = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_anchor; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_Layout_layout_anchorGravity = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_anchorGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_Layout_layout_behavior = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_behavior; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_Layout_layout_dodgeInsetEdges = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_dodgeInsetEdges; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_Layout_layout_insetEdge = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_insetEdge; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_Layout_layout_keyline = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_Layout_layout_keyline; + global::Xamarin.Forms.Platform.Resource.Styleable.CoordinatorLayout_statusBarBackground = global::mederly.Droid.Resource.Styleable.CoordinatorLayout_statusBarBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle_arrowHeadLength = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_arrowHeadLength; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle_arrowShaftLength = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_arrowShaftLength; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle_barLength = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_barLength; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle_color = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_color; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle_drawableSize = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_drawableSize; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle_gapBetweenBars = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_gapBetweenBars; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle_spinBars = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_spinBars; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerArrowToggle_thickness = global::mederly.Droid.Resource.Styleable.DrawerArrowToggle_thickness; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerLayout = global::mederly.Droid.Resource.Styleable.DrawerLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.DrawerLayout_elevation = global::mederly.Droid.Resource.Styleable.DrawerLayout_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton_elevation = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton_extendMotionSpec = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_extendMotionSpec; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton_hideMotionSpec = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_hideMotionSpec; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton_showMotionSpec = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_showMotionSpec; + global::Xamarin.Forms.Platform.Resource.Styleable.ExtendedFloatingActionButton_shrinkMotionSpec = global::mederly.Droid.Resource.Styleable.ExtendedFloatingActionButton_shrinkMotionSpec; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton = global::mederly.Droid.Resource.Styleable.FloatingActionButton; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_android_enabled = global::mederly.Droid.Resource.Styleable.FloatingActionButton_android_enabled; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_backgroundTint = global::mederly.Droid.Resource.Styleable.FloatingActionButton_backgroundTint; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_backgroundTintMode = global::mederly.Droid.Resource.Styleable.FloatingActionButton_backgroundTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_Behavior_Layout = global::mederly.Droid.Resource.Styleable.FloatingActionButton_Behavior_Layout; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_Behavior_Layout_behavior_autoHide = global::mederly.Droid.Resource.Styleable.FloatingActionButton_Behavior_Layout_behavior_autoHide; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_borderWidth = global::mederly.Droid.Resource.Styleable.FloatingActionButton_borderWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_elevation = global::mederly.Droid.Resource.Styleable.FloatingActionButton_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_ensureMinTouchTargetSize = global::mederly.Droid.Resource.Styleable.FloatingActionButton_ensureMinTouchTargetSize; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_fabCustomSize = global::mederly.Droid.Resource.Styleable.FloatingActionButton_fabCustomSize; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_fabSize = global::mederly.Droid.Resource.Styleable.FloatingActionButton_fabSize; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_hideMotionSpec = global::mederly.Droid.Resource.Styleable.FloatingActionButton_hideMotionSpec; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_hoveredFocusedTranslationZ = global::mederly.Droid.Resource.Styleable.FloatingActionButton_hoveredFocusedTranslationZ; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_maxImageSize = global::mederly.Droid.Resource.Styleable.FloatingActionButton_maxImageSize; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_pressedTranslationZ = global::mederly.Droid.Resource.Styleable.FloatingActionButton_pressedTranslationZ; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_rippleColor = global::mederly.Droid.Resource.Styleable.FloatingActionButton_rippleColor; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_shapeAppearance = global::mederly.Droid.Resource.Styleable.FloatingActionButton_shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.FloatingActionButton_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_showMotionSpec = global::mederly.Droid.Resource.Styleable.FloatingActionButton_showMotionSpec; + global::Xamarin.Forms.Platform.Resource.Styleable.FloatingActionButton_useCompatPadding = global::mederly.Droid.Resource.Styleable.FloatingActionButton_useCompatPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.FlowLayout = global::mederly.Droid.Resource.Styleable.FlowLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.FlowLayout_itemSpacing = global::mederly.Droid.Resource.Styleable.FlowLayout_itemSpacing; + global::Xamarin.Forms.Platform.Resource.Styleable.FlowLayout_lineSpacing = global::mederly.Droid.Resource.Styleable.FlowLayout_lineSpacing; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamily = global::mederly.Droid.Resource.Styleable.FontFamily; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont = global::mederly.Droid.Resource.Styleable.FontFamilyFont; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_android_font = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_font; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_android_fontStyle = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_android_fontVariationSettings = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontVariationSettings; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_android_fontWeight = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_fontWeight; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_android_ttcIndex = global::mederly.Droid.Resource.Styleable.FontFamilyFont_android_ttcIndex; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_font = global::mederly.Droid.Resource.Styleable.FontFamilyFont_font; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_fontStyle = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_fontVariationSettings = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontVariationSettings; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_fontWeight = global::mederly.Droid.Resource.Styleable.FontFamilyFont_fontWeight; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamilyFont_ttcIndex = global::mederly.Droid.Resource.Styleable.FontFamilyFont_ttcIndex; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamily_fontProviderAuthority = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderAuthority; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamily_fontProviderCerts = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderCerts; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamily_fontProviderFetchStrategy = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderFetchStrategy; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamily_fontProviderFetchTimeout = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderFetchTimeout; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamily_fontProviderPackage = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderPackage; + global::Xamarin.Forms.Platform.Resource.Styleable.FontFamily_fontProviderQuery = global::mederly.Droid.Resource.Styleable.FontFamily_fontProviderQuery; + global::Xamarin.Forms.Platform.Resource.Styleable.ForegroundLinearLayout = global::mederly.Droid.Resource.Styleable.ForegroundLinearLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.ForegroundLinearLayout_android_foreground = global::mederly.Droid.Resource.Styleable.ForegroundLinearLayout_android_foreground; + global::Xamarin.Forms.Platform.Resource.Styleable.ForegroundLinearLayout_android_foregroundGravity = global::mederly.Droid.Resource.Styleable.ForegroundLinearLayout_android_foregroundGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.ForegroundLinearLayout_foregroundInsidePadding = global::mederly.Droid.Resource.Styleable.ForegroundLinearLayout_foregroundInsidePadding; + global::Xamarin.Forms.Platform.Resource.Styleable.Fragment = global::mederly.Droid.Resource.Styleable.Fragment; + global::Xamarin.Forms.Platform.Resource.Styleable.FragmentContainerView = global::mederly.Droid.Resource.Styleable.FragmentContainerView; + global::Xamarin.Forms.Platform.Resource.Styleable.FragmentContainerView_android_name = global::mederly.Droid.Resource.Styleable.FragmentContainerView_android_name; + global::Xamarin.Forms.Platform.Resource.Styleable.FragmentContainerView_android_tag = global::mederly.Droid.Resource.Styleable.FragmentContainerView_android_tag; + global::Xamarin.Forms.Platform.Resource.Styleable.Fragment_android_id = global::mederly.Droid.Resource.Styleable.Fragment_android_id; + global::Xamarin.Forms.Platform.Resource.Styleable.Fragment_android_name = global::mederly.Droid.Resource.Styleable.Fragment_android_name; + global::Xamarin.Forms.Platform.Resource.Styleable.Fragment_android_tag = global::mederly.Droid.Resource.Styleable.Fragment_android_tag; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor = global::mederly.Droid.Resource.Styleable.GradientColor; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColorItem = global::mederly.Droid.Resource.Styleable.GradientColorItem; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColorItem_android_color = global::mederly.Droid.Resource.Styleable.GradientColorItem_android_color; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColorItem_android_offset = global::mederly.Droid.Resource.Styleable.GradientColorItem_android_offset; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_centerColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerColor; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_centerX = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerX; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_centerY = global::mederly.Droid.Resource.Styleable.GradientColor_android_centerY; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_endColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_endColor; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_endX = global::mederly.Droid.Resource.Styleable.GradientColor_android_endX; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_endY = global::mederly.Droid.Resource.Styleable.GradientColor_android_endY; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_gradientRadius = global::mederly.Droid.Resource.Styleable.GradientColor_android_gradientRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_startColor = global::mederly.Droid.Resource.Styleable.GradientColor_android_startColor; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_startX = global::mederly.Droid.Resource.Styleable.GradientColor_android_startX; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_startY = global::mederly.Droid.Resource.Styleable.GradientColor_android_startY; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_tileMode = global::mederly.Droid.Resource.Styleable.GradientColor_android_tileMode; + global::Xamarin.Forms.Platform.Resource.Styleable.GradientColor_android_type = global::mederly.Droid.Resource.Styleable.GradientColor_android_type; + global::Xamarin.Forms.Platform.Resource.Styleable.Insets = global::mederly.Droid.Resource.Styleable.Insets; + global::Xamarin.Forms.Platform.Resource.Styleable.Insets_paddingBottomSystemWindowInsets = global::mederly.Droid.Resource.Styleable.Insets_paddingBottomSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Styleable.Insets_paddingLeftSystemWindowInsets = global::mederly.Droid.Resource.Styleable.Insets_paddingLeftSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Styleable.Insets_paddingRightSystemWindowInsets = global::mederly.Droid.Resource.Styleable.Insets_paddingRightSystemWindowInsets; + global::Xamarin.Forms.Platform.Resource.Styleable.ItemsViewRendererTheme = global::mederly.Droid.Resource.Styleable.ItemsViewRendererTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.ItemsViewRendererTheme_collectionViewStyle = global::mederly.Droid.Resource.Styleable.ItemsViewRendererTheme_collectionViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_android_baselineAligned = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_baselineAligned; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_android_baselineAlignedChildIndex = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_baselineAlignedChildIndex; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_android_gravity = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_gravity; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_android_orientation = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_orientation; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_android_weightSum = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_android_weightSum; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_divider = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_divider; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_dividerPadding = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_dividerPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_Layout = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_gravity = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_gravity; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_height = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_height; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_weight = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_weight; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_width = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_width; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_measureWithLargestChild = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_measureWithLargestChild; + global::Xamarin.Forms.Platform.Resource.Styleable.LinearLayoutCompat_showDividers = global::mederly.Droid.Resource.Styleable.LinearLayoutCompat_showDividers; + global::Xamarin.Forms.Platform.Resource.Styleable.ListPopupWindow = global::mederly.Droid.Resource.Styleable.ListPopupWindow; + global::Xamarin.Forms.Platform.Resource.Styleable.ListPopupWindow_android_dropDownHorizontalOffset = global::mederly.Droid.Resource.Styleable.ListPopupWindow_android_dropDownHorizontalOffset; + global::Xamarin.Forms.Platform.Resource.Styleable.ListPopupWindow_android_dropDownVerticalOffset = global::mederly.Droid.Resource.Styleable.ListPopupWindow_android_dropDownVerticalOffset; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialog = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialogTheme = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTheme = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle = global::mederly.Droid.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialog_backgroundInsetBottom = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog_backgroundInsetBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialog_backgroundInsetEnd = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog_backgroundInsetEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialog_backgroundInsetStart = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog_backgroundInsetStart; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAlertDialog_backgroundInsetTop = global::mederly.Droid.Resource.Styleable.MaterialAlertDialog_backgroundInsetTop; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAutoCompleteTextView = global::mederly.Droid.Resource.Styleable.MaterialAutoCompleteTextView; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialAutoCompleteTextView_android_inputType = global::mederly.Droid.Resource.Styleable.MaterialAutoCompleteTextView_android_inputType; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton = global::mederly.Droid.Resource.Styleable.MaterialButton; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButtonToggleGroup = global::mederly.Droid.Resource.Styleable.MaterialButtonToggleGroup; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButtonToggleGroup_checkedButton = global::mederly.Droid.Resource.Styleable.MaterialButtonToggleGroup_checkedButton; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButtonToggleGroup_selectionRequired = global::mederly.Droid.Resource.Styleable.MaterialButtonToggleGroup_selectionRequired; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButtonToggleGroup_singleSelection = global::mederly.Droid.Resource.Styleable.MaterialButtonToggleGroup_singleSelection; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_android_background = global::mederly.Droid.Resource.Styleable.MaterialButton_android_background; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_android_checkable = global::mederly.Droid.Resource.Styleable.MaterialButton_android_checkable; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_android_insetBottom = global::mederly.Droid.Resource.Styleable.MaterialButton_android_insetBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_android_insetLeft = global::mederly.Droid.Resource.Styleable.MaterialButton_android_insetLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_android_insetRight = global::mederly.Droid.Resource.Styleable.MaterialButton_android_insetRight; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_android_insetTop = global::mederly.Droid.Resource.Styleable.MaterialButton_android_insetTop; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_backgroundTint = global::mederly.Droid.Resource.Styleable.MaterialButton_backgroundTint; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_backgroundTintMode = global::mederly.Droid.Resource.Styleable.MaterialButton_backgroundTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_cornerRadius = global::mederly.Droid.Resource.Styleable.MaterialButton_cornerRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_elevation = global::mederly.Droid.Resource.Styleable.MaterialButton_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_icon = global::mederly.Droid.Resource.Styleable.MaterialButton_icon; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_iconGravity = global::mederly.Droid.Resource.Styleable.MaterialButton_iconGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_iconPadding = global::mederly.Droid.Resource.Styleable.MaterialButton_iconPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_iconSize = global::mederly.Droid.Resource.Styleable.MaterialButton_iconSize; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_iconTint = global::mederly.Droid.Resource.Styleable.MaterialButton_iconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_iconTintMode = global::mederly.Droid.Resource.Styleable.MaterialButton_iconTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_rippleColor = global::mederly.Droid.Resource.Styleable.MaterialButton_rippleColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_shapeAppearance = global::mederly.Droid.Resource.Styleable.MaterialButton_shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.MaterialButton_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_strokeColor = global::mederly.Droid.Resource.Styleable.MaterialButton_strokeColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialButton_strokeWidth = global::mederly.Droid.Resource.Styleable.MaterialButton_strokeWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar = global::mederly.Droid.Resource.Styleable.MaterialCalendar; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_android_insetBottom = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_android_insetBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_android_insetLeft = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_android_insetLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_android_insetRight = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_android_insetRight; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_android_insetTop = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_android_insetTop; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_itemFillColor = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemFillColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_itemShapeAppearance = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemShapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_itemShapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemShapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_itemStrokeColor = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemStrokeColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_itemStrokeWidth = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemStrokeWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendarItem_itemTextColor = global::mederly.Droid.Resource.Styleable.MaterialCalendarItem_itemTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_android_windowFullscreen = global::mederly.Droid.Resource.Styleable.MaterialCalendar_android_windowFullscreen; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_dayInvalidStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_dayInvalidStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_daySelectedStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_daySelectedStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_dayStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_dayStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_dayTodayStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_dayTodayStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_rangeFillColor = global::mederly.Droid.Resource.Styleable.MaterialCalendar_rangeFillColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_yearSelectedStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_yearSelectedStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_yearStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_yearStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCalendar_yearTodayStyle = global::mederly.Droid.Resource.Styleable.MaterialCalendar_yearTodayStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView = global::mederly.Droid.Resource.Styleable.MaterialCardView; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_android_checkable = global::mederly.Droid.Resource.Styleable.MaterialCardView_android_checkable; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_cardForegroundColor = global::mederly.Droid.Resource.Styleable.MaterialCardView_cardForegroundColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_checkedIcon = global::mederly.Droid.Resource.Styleable.MaterialCardView_checkedIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_checkedIconTint = global::mederly.Droid.Resource.Styleable.MaterialCardView_checkedIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_rippleColor = global::mederly.Droid.Resource.Styleable.MaterialCardView_rippleColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_shapeAppearance = global::mederly.Droid.Resource.Styleable.MaterialCardView_shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.MaterialCardView_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_state_dragged = global::mederly.Droid.Resource.Styleable.MaterialCardView_state_dragged; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_strokeColor = global::mederly.Droid.Resource.Styleable.MaterialCardView_strokeColor; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCardView_strokeWidth = global::mederly.Droid.Resource.Styleable.MaterialCardView_strokeWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCheckBox = global::mederly.Droid.Resource.Styleable.MaterialCheckBox; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCheckBox_buttonTint = global::mederly.Droid.Resource.Styleable.MaterialCheckBox_buttonTint; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialCheckBox_useMaterialThemeColors = global::mederly.Droid.Resource.Styleable.MaterialCheckBox_useMaterialThemeColors; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialRadioButton = global::mederly.Droid.Resource.Styleable.MaterialRadioButton; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialRadioButton_buttonTint = global::mederly.Droid.Resource.Styleable.MaterialRadioButton_buttonTint; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialRadioButton_useMaterialThemeColors = global::mederly.Droid.Resource.Styleable.MaterialRadioButton_useMaterialThemeColors; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialShape = global::mederly.Droid.Resource.Styleable.MaterialShape; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialShape_shapeAppearance = global::mederly.Droid.Resource.Styleable.MaterialShape_shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialShape_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.MaterialShape_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialTextAppearance = global::mederly.Droid.Resource.Styleable.MaterialTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialTextAppearance_android_lineHeight = global::mederly.Droid.Resource.Styleable.MaterialTextAppearance_android_lineHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialTextAppearance_lineHeight = global::mederly.Droid.Resource.Styleable.MaterialTextAppearance_lineHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialTextView = global::mederly.Droid.Resource.Styleable.MaterialTextView; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialTextView_android_lineHeight = global::mederly.Droid.Resource.Styleable.MaterialTextView_android_lineHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialTextView_android_textAppearance = global::mederly.Droid.Resource.Styleable.MaterialTextView_android_textAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.MaterialTextView_lineHeight = global::mederly.Droid.Resource.Styleable.MaterialTextView_lineHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuGroup = global::mederly.Droid.Resource.Styleable.MenuGroup; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuGroup_android_checkableBehavior = global::mederly.Droid.Resource.Styleable.MenuGroup_android_checkableBehavior; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuGroup_android_enabled = global::mederly.Droid.Resource.Styleable.MenuGroup_android_enabled; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuGroup_android_id = global::mederly.Droid.Resource.Styleable.MenuGroup_android_id; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuGroup_android_menuCategory = global::mederly.Droid.Resource.Styleable.MenuGroup_android_menuCategory; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuGroup_android_orderInCategory = global::mederly.Droid.Resource.Styleable.MenuGroup_android_orderInCategory; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuGroup_android_visible = global::mederly.Droid.Resource.Styleable.MenuGroup_android_visible; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem = global::mederly.Droid.Resource.Styleable.MenuItem; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_actionLayout = global::mederly.Droid.Resource.Styleable.MenuItem_actionLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_actionProviderClass = global::mederly.Droid.Resource.Styleable.MenuItem_actionProviderClass; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_actionViewClass = global::mederly.Droid.Resource.Styleable.MenuItem_actionViewClass; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_alphabeticModifiers = global::mederly.Droid.Resource.Styleable.MenuItem_alphabeticModifiers; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_alphabeticShortcut = global::mederly.Droid.Resource.Styleable.MenuItem_android_alphabeticShortcut; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_checkable = global::mederly.Droid.Resource.Styleable.MenuItem_android_checkable; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_checked = global::mederly.Droid.Resource.Styleable.MenuItem_android_checked; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_enabled = global::mederly.Droid.Resource.Styleable.MenuItem_android_enabled; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_icon = global::mederly.Droid.Resource.Styleable.MenuItem_android_icon; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_id = global::mederly.Droid.Resource.Styleable.MenuItem_android_id; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_menuCategory = global::mederly.Droid.Resource.Styleable.MenuItem_android_menuCategory; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_numericShortcut = global::mederly.Droid.Resource.Styleable.MenuItem_android_numericShortcut; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_onClick = global::mederly.Droid.Resource.Styleable.MenuItem_android_onClick; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_orderInCategory = global::mederly.Droid.Resource.Styleable.MenuItem_android_orderInCategory; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_title = global::mederly.Droid.Resource.Styleable.MenuItem_android_title; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_titleCondensed = global::mederly.Droid.Resource.Styleable.MenuItem_android_titleCondensed; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_android_visible = global::mederly.Droid.Resource.Styleable.MenuItem_android_visible; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_contentDescription = global::mederly.Droid.Resource.Styleable.MenuItem_contentDescription; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_iconTint = global::mederly.Droid.Resource.Styleable.MenuItem_iconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_iconTintMode = global::mederly.Droid.Resource.Styleable.MenuItem_iconTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_numericModifiers = global::mederly.Droid.Resource.Styleable.MenuItem_numericModifiers; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_showAsAction = global::mederly.Droid.Resource.Styleable.MenuItem_showAsAction; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuItem_tooltipText = global::mederly.Droid.Resource.Styleable.MenuItem_tooltipText; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView = global::mederly.Droid.Resource.Styleable.MenuView; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_android_headerBackground = global::mederly.Droid.Resource.Styleable.MenuView_android_headerBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_android_horizontalDivider = global::mederly.Droid.Resource.Styleable.MenuView_android_horizontalDivider; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_android_itemBackground = global::mederly.Droid.Resource.Styleable.MenuView_android_itemBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_android_itemIconDisabledAlpha = global::mederly.Droid.Resource.Styleable.MenuView_android_itemIconDisabledAlpha; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_android_itemTextAppearance = global::mederly.Droid.Resource.Styleable.MenuView_android_itemTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_android_verticalDivider = global::mederly.Droid.Resource.Styleable.MenuView_android_verticalDivider; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_android_windowAnimationStyle = global::mederly.Droid.Resource.Styleable.MenuView_android_windowAnimationStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_preserveIconSpacing = global::mederly.Droid.Resource.Styleable.MenuView_preserveIconSpacing; + global::Xamarin.Forms.Platform.Resource.Styleable.MenuView_subMenuArrow = global::mederly.Droid.Resource.Styleable.MenuView_subMenuArrow; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView = global::mederly.Droid.Resource.Styleable.NavigationView; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_android_background = global::mederly.Droid.Resource.Styleable.NavigationView_android_background; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_android_fitsSystemWindows = global::mederly.Droid.Resource.Styleable.NavigationView_android_fitsSystemWindows; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_android_maxWidth = global::mederly.Droid.Resource.Styleable.NavigationView_android_maxWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_elevation = global::mederly.Droid.Resource.Styleable.NavigationView_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_headerLayout = global::mederly.Droid.Resource.Styleable.NavigationView_headerLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemBackground = global::mederly.Droid.Resource.Styleable.NavigationView_itemBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemHorizontalPadding = global::mederly.Droid.Resource.Styleable.NavigationView_itemHorizontalPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemIconPadding = global::mederly.Droid.Resource.Styleable.NavigationView_itemIconPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemIconSize = global::mederly.Droid.Resource.Styleable.NavigationView_itemIconSize; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemIconTint = global::mederly.Droid.Resource.Styleable.NavigationView_itemIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemMaxLines = global::mederly.Droid.Resource.Styleable.NavigationView_itemMaxLines; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemShapeAppearance = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemShapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemShapeFillColor = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeFillColor; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemShapeInsetBottom = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeInsetBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemShapeInsetEnd = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeInsetEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemShapeInsetStart = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeInsetStart; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemShapeInsetTop = global::mederly.Droid.Resource.Styleable.NavigationView_itemShapeInsetTop; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemTextAppearance = global::mederly.Droid.Resource.Styleable.NavigationView_itemTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_itemTextColor = global::mederly.Droid.Resource.Styleable.NavigationView_itemTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.NavigationView_menu = global::mederly.Droid.Resource.Styleable.NavigationView_menu; + global::Xamarin.Forms.Platform.Resource.Styleable.PopupWindow = global::mederly.Droid.Resource.Styleable.PopupWindow; + global::Xamarin.Forms.Platform.Resource.Styleable.PopupWindowBackgroundState = global::mederly.Droid.Resource.Styleable.PopupWindowBackgroundState; + global::Xamarin.Forms.Platform.Resource.Styleable.PopupWindowBackgroundState_state_above_anchor = global::mederly.Droid.Resource.Styleable.PopupWindowBackgroundState_state_above_anchor; + global::Xamarin.Forms.Platform.Resource.Styleable.PopupWindow_android_popupAnimationStyle = global::mederly.Droid.Resource.Styleable.PopupWindow_android_popupAnimationStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.PopupWindow_android_popupBackground = global::mederly.Droid.Resource.Styleable.PopupWindow_android_popupBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.PopupWindow_overlapAnchor = global::mederly.Droid.Resource.Styleable.PopupWindow_overlapAnchor; + global::Xamarin.Forms.Platform.Resource.Styleable.RangeSlider = global::mederly.Droid.Resource.Styleable.RangeSlider; + global::Xamarin.Forms.Platform.Resource.Styleable.RangeSlider_values = global::mederly.Droid.Resource.Styleable.RangeSlider_values; + global::Xamarin.Forms.Platform.Resource.Styleable.RecycleListView = global::mederly.Droid.Resource.Styleable.RecycleListView; + global::Xamarin.Forms.Platform.Resource.Styleable.RecycleListView_paddingBottomNoButtons = global::mederly.Droid.Resource.Styleable.RecycleListView_paddingBottomNoButtons; + global::Xamarin.Forms.Platform.Resource.Styleable.RecycleListView_paddingTopNoTitle = global::mederly.Droid.Resource.Styleable.RecycleListView_paddingTopNoTitle; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView = global::mederly.Droid.Resource.Styleable.RecyclerView; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_android_clipToPadding = global::mederly.Droid.Resource.Styleable.RecyclerView_android_clipToPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_android_descendantFocusability = global::mederly.Droid.Resource.Styleable.RecyclerView_android_descendantFocusability; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_android_orientation = global::mederly.Droid.Resource.Styleable.RecyclerView_android_orientation; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_fastScrollEnabled = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_fastScrollHorizontalThumbDrawable = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollHorizontalThumbDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_fastScrollHorizontalTrackDrawable = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollHorizontalTrackDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_fastScrollVerticalThumbDrawable = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollVerticalThumbDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_fastScrollVerticalTrackDrawable = global::mederly.Droid.Resource.Styleable.RecyclerView_fastScrollVerticalTrackDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_layoutManager = global::mederly.Droid.Resource.Styleable.RecyclerView_layoutManager; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_reverseLayout = global::mederly.Droid.Resource.Styleable.RecyclerView_reverseLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_spanCount = global::mederly.Droid.Resource.Styleable.RecyclerView_spanCount; + global::Xamarin.Forms.Platform.Resource.Styleable.RecyclerView_stackFromEnd = global::mederly.Droid.Resource.Styleable.RecyclerView_stackFromEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.ScrimInsetsFrameLayout = global::mederly.Droid.Resource.Styleable.ScrimInsetsFrameLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.ScrimInsetsFrameLayout_insetForeground = global::mederly.Droid.Resource.Styleable.ScrimInsetsFrameLayout_insetForeground; + global::Xamarin.Forms.Platform.Resource.Styleable.ScrollingViewBehavior_Layout = global::mederly.Droid.Resource.Styleable.ScrollingViewBehavior_Layout; + global::Xamarin.Forms.Platform.Resource.Styleable.ScrollingViewBehavior_Layout_behavior_overlapTop = global::mederly.Droid.Resource.Styleable.ScrollingViewBehavior_Layout_behavior_overlapTop; + global::Xamarin.Forms.Platform.Resource.Styleable.ScrollViewRendererTheme = global::mederly.Droid.Resource.Styleable.ScrollViewRendererTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.ScrollViewRendererTheme_scrollViewStyle = global::mederly.Droid.Resource.Styleable.ScrollViewRendererTheme_scrollViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView = global::mederly.Droid.Resource.Styleable.SearchView; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_android_focusable = global::mederly.Droid.Resource.Styleable.SearchView_android_focusable; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_android_imeOptions = global::mederly.Droid.Resource.Styleable.SearchView_android_imeOptions; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_android_inputType = global::mederly.Droid.Resource.Styleable.SearchView_android_inputType; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_android_maxWidth = global::mederly.Droid.Resource.Styleable.SearchView_android_maxWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_closeIcon = global::mederly.Droid.Resource.Styleable.SearchView_closeIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_commitIcon = global::mederly.Droid.Resource.Styleable.SearchView_commitIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_defaultQueryHint = global::mederly.Droid.Resource.Styleable.SearchView_defaultQueryHint; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_goIcon = global::mederly.Droid.Resource.Styleable.SearchView_goIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_iconifiedByDefault = global::mederly.Droid.Resource.Styleable.SearchView_iconifiedByDefault; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_layout = global::mederly.Droid.Resource.Styleable.SearchView_layout; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_queryBackground = global::mederly.Droid.Resource.Styleable.SearchView_queryBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_queryHint = global::mederly.Droid.Resource.Styleable.SearchView_queryHint; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_searchHintIcon = global::mederly.Droid.Resource.Styleable.SearchView_searchHintIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_searchIcon = global::mederly.Droid.Resource.Styleable.SearchView_searchIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_submitBackground = global::mederly.Droid.Resource.Styleable.SearchView_submitBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_suggestionRowLayout = global::mederly.Droid.Resource.Styleable.SearchView_suggestionRowLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.SearchView_voiceIcon = global::mederly.Droid.Resource.Styleable.SearchView_voiceIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeableImageView = global::mederly.Droid.Resource.Styleable.ShapeableImageView; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeableImageView_shapeAppearance = global::mederly.Droid.Resource.Styleable.ShapeableImageView_shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeableImageView_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.ShapeableImageView_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeableImageView_strokeColor = global::mederly.Droid.Resource.Styleable.ShapeableImageView_strokeColor; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeableImageView_strokeWidth = global::mederly.Droid.Resource.Styleable.ShapeableImageView_strokeWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance = global::mederly.Droid.Resource.Styleable.ShapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerFamily = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamily; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerFamilyBottomLeft = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamilyBottomLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerFamilyBottomRight = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamilyBottomRight; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerFamilyTopLeft = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamilyTopLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerFamilyTopRight = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerFamilyTopRight; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerSize = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSize; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerSizeBottomLeft = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSizeBottomLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerSizeBottomRight = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSizeBottomRight; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerSizeTopLeft = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSizeTopLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.ShapeAppearance_cornerSizeTopRight = global::mederly.Droid.Resource.Styleable.ShapeAppearance_cornerSizeTopRight; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider = global::mederly.Droid.Resource.Styleable.Slider; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_android_enabled = global::mederly.Droid.Resource.Styleable.Slider_android_enabled; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_android_stepSize = global::mederly.Droid.Resource.Styleable.Slider_android_stepSize; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_android_value = global::mederly.Droid.Resource.Styleable.Slider_android_value; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_android_valueFrom = global::mederly.Droid.Resource.Styleable.Slider_android_valueFrom; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_android_valueTo = global::mederly.Droid.Resource.Styleable.Slider_android_valueTo; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_haloColor = global::mederly.Droid.Resource.Styleable.Slider_haloColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_haloRadius = global::mederly.Droid.Resource.Styleable.Slider_haloRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_labelBehavior = global::mederly.Droid.Resource.Styleable.Slider_labelBehavior; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_labelStyle = global::mederly.Droid.Resource.Styleable.Slider_labelStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_thumbColor = global::mederly.Droid.Resource.Styleable.Slider_thumbColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_thumbElevation = global::mederly.Droid.Resource.Styleable.Slider_thumbElevation; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_thumbRadius = global::mederly.Droid.Resource.Styleable.Slider_thumbRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_tickColor = global::mederly.Droid.Resource.Styleable.Slider_tickColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_tickColorActive = global::mederly.Droid.Resource.Styleable.Slider_tickColorActive; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_tickColorInactive = global::mederly.Droid.Resource.Styleable.Slider_tickColorInactive; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_trackColor = global::mederly.Droid.Resource.Styleable.Slider_trackColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_trackColorActive = global::mederly.Droid.Resource.Styleable.Slider_trackColorActive; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_trackColorInactive = global::mederly.Droid.Resource.Styleable.Slider_trackColorInactive; + global::Xamarin.Forms.Platform.Resource.Styleable.Slider_trackHeight = global::mederly.Droid.Resource.Styleable.Slider_trackHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.Snackbar = global::mederly.Droid.Resource.Styleable.Snackbar; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout = global::mederly.Droid.Resource.Styleable.SnackbarLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout_actionTextColorAlpha = global::mederly.Droid.Resource.Styleable.SnackbarLayout_actionTextColorAlpha; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout_android_maxWidth = global::mederly.Droid.Resource.Styleable.SnackbarLayout_android_maxWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout_animationMode = global::mederly.Droid.Resource.Styleable.SnackbarLayout_animationMode; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout_backgroundOverlayColorAlpha = global::mederly.Droid.Resource.Styleable.SnackbarLayout_backgroundOverlayColorAlpha; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout_backgroundTint = global::mederly.Droid.Resource.Styleable.SnackbarLayout_backgroundTint; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout_backgroundTintMode = global::mederly.Droid.Resource.Styleable.SnackbarLayout_backgroundTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout_elevation = global::mederly.Droid.Resource.Styleable.SnackbarLayout_elevation; + global::Xamarin.Forms.Platform.Resource.Styleable.SnackbarLayout_maxActionInlineWidth = global::mederly.Droid.Resource.Styleable.SnackbarLayout_maxActionInlineWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.Snackbar_snackbarButtonStyle = global::mederly.Droid.Resource.Styleable.Snackbar_snackbarButtonStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.Snackbar_snackbarStyle = global::mederly.Droid.Resource.Styleable.Snackbar_snackbarStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.Snackbar_snackbarTextViewStyle = global::mederly.Droid.Resource.Styleable.Snackbar_snackbarTextViewStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.Spinner = global::mederly.Droid.Resource.Styleable.Spinner; + global::Xamarin.Forms.Platform.Resource.Styleable.Spinner_android_dropDownWidth = global::mederly.Droid.Resource.Styleable.Spinner_android_dropDownWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.Spinner_android_entries = global::mederly.Droid.Resource.Styleable.Spinner_android_entries; + global::Xamarin.Forms.Platform.Resource.Styleable.Spinner_android_popupBackground = global::mederly.Droid.Resource.Styleable.Spinner_android_popupBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.Spinner_android_prompt = global::mederly.Droid.Resource.Styleable.Spinner_android_prompt; + global::Xamarin.Forms.Platform.Resource.Styleable.Spinner_popupTheme = global::mederly.Droid.Resource.Styleable.Spinner_popupTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawable = global::mederly.Droid.Resource.Styleable.StateListDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawableItem = global::mederly.Droid.Resource.Styleable.StateListDrawableItem; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawableItem_android_drawable = global::mederly.Droid.Resource.Styleable.StateListDrawableItem_android_drawable; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawable_android_constantSize = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_constantSize; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawable_android_dither = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_dither; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawable_android_enterFadeDuration = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_enterFadeDuration; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawable_android_exitFadeDuration = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_exitFadeDuration; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawable_android_variablePadding = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_variablePadding; + global::Xamarin.Forms.Platform.Resource.Styleable.StateListDrawable_android_visible = global::mederly.Droid.Resource.Styleable.StateListDrawable_android_visible; + global::Xamarin.Forms.Platform.Resource.Styleable.SwipeRefreshLayout = global::mederly.Droid.Resource.Styleable.SwipeRefreshLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor = global::mederly.Droid.Resource.Styleable.SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat = global::mederly.Droid.Resource.Styleable.SwitchCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_android_textOff = global::mederly.Droid.Resource.Styleable.SwitchCompat_android_textOff; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_android_textOn = global::mederly.Droid.Resource.Styleable.SwitchCompat_android_textOn; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_android_thumb = global::mederly.Droid.Resource.Styleable.SwitchCompat_android_thumb; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_showText = global::mederly.Droid.Resource.Styleable.SwitchCompat_showText; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_splitTrack = global::mederly.Droid.Resource.Styleable.SwitchCompat_splitTrack; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_switchMinWidth = global::mederly.Droid.Resource.Styleable.SwitchCompat_switchMinWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_switchPadding = global::mederly.Droid.Resource.Styleable.SwitchCompat_switchPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_switchTextAppearance = global::mederly.Droid.Resource.Styleable.SwitchCompat_switchTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_thumbTextPadding = global::mederly.Droid.Resource.Styleable.SwitchCompat_thumbTextPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_thumbTint = global::mederly.Droid.Resource.Styleable.SwitchCompat_thumbTint; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_thumbTintMode = global::mederly.Droid.Resource.Styleable.SwitchCompat_thumbTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_track = global::mederly.Droid.Resource.Styleable.SwitchCompat_track; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_trackTint = global::mederly.Droid.Resource.Styleable.SwitchCompat_trackTint; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchCompat_trackTintMode = global::mederly.Droid.Resource.Styleable.SwitchCompat_trackTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchMaterial = global::mederly.Droid.Resource.Styleable.SwitchMaterial; + global::Xamarin.Forms.Platform.Resource.Styleable.SwitchMaterial_useMaterialThemeColors = global::mederly.Droid.Resource.Styleable.SwitchMaterial_useMaterialThemeColors; + global::Xamarin.Forms.Platform.Resource.Styleable.TabItem = global::mederly.Droid.Resource.Styleable.TabItem; + global::Xamarin.Forms.Platform.Resource.Styleable.TabItem_android_icon = global::mederly.Droid.Resource.Styleable.TabItem_android_icon; + global::Xamarin.Forms.Platform.Resource.Styleable.TabItem_android_layout = global::mederly.Droid.Resource.Styleable.TabItem_android_layout; + global::Xamarin.Forms.Platform.Resource.Styleable.TabItem_android_text = global::mederly.Droid.Resource.Styleable.TabItem_android_text; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout = global::mederly.Droid.Resource.Styleable.TabLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabBackground = global::mederly.Droid.Resource.Styleable.TabLayout_tabBackground; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabContentStart = global::mederly.Droid.Resource.Styleable.TabLayout_tabContentStart; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabGravity = global::mederly.Droid.Resource.Styleable.TabLayout_tabGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabIconTint = global::mederly.Droid.Resource.Styleable.TabLayout_tabIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabIconTintMode = global::mederly.Droid.Resource.Styleable.TabLayout_tabIconTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabIndicator = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicator; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabIndicatorAnimationDuration = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorAnimationDuration; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabIndicatorColor = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabIndicatorFullWidth = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorFullWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabIndicatorGravity = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabIndicatorHeight = global::mederly.Droid.Resource.Styleable.TabLayout_tabIndicatorHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabInlineLabel = global::mederly.Droid.Resource.Styleable.TabLayout_tabInlineLabel; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabMaxWidth = global::mederly.Droid.Resource.Styleable.TabLayout_tabMaxWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabMinWidth = global::mederly.Droid.Resource.Styleable.TabLayout_tabMinWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabMode = global::mederly.Droid.Resource.Styleable.TabLayout_tabMode; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabPadding = global::mederly.Droid.Resource.Styleable.TabLayout_tabPadding; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabPaddingBottom = global::mederly.Droid.Resource.Styleable.TabLayout_tabPaddingBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabPaddingEnd = global::mederly.Droid.Resource.Styleable.TabLayout_tabPaddingEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabPaddingStart = global::mederly.Droid.Resource.Styleable.TabLayout_tabPaddingStart; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabPaddingTop = global::mederly.Droid.Resource.Styleable.TabLayout_tabPaddingTop; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabRippleColor = global::mederly.Droid.Resource.Styleable.TabLayout_tabRippleColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabSelectedTextColor = global::mederly.Droid.Resource.Styleable.TabLayout_tabSelectedTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabTextAppearance = global::mederly.Droid.Resource.Styleable.TabLayout_tabTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabTextColor = global::mederly.Droid.Resource.Styleable.TabLayout_tabTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TabLayout_tabUnboundedRipple = global::mederly.Droid.Resource.Styleable.TabLayout_tabUnboundedRipple; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance = global::mederly.Droid.Resource.Styleable.TextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_fontFamily = global::mederly.Droid.Resource.Styleable.TextAppearance_android_fontFamily; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_shadowColor = global::mederly.Droid.Resource.Styleable.TextAppearance_android_shadowColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_shadowDx = global::mederly.Droid.Resource.Styleable.TextAppearance_android_shadowDx; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_shadowDy = global::mederly.Droid.Resource.Styleable.TextAppearance_android_shadowDy; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_shadowRadius = global::mederly.Droid.Resource.Styleable.TextAppearance_android_shadowRadius; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_textColor = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_textColorHint = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textColorHint; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_textColorLink = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textColorLink; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_textFontWeight = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textFontWeight; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_textSize = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textSize; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_textStyle = global::mederly.Droid.Resource.Styleable.TextAppearance_android_textStyle; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_android_typeface = global::mederly.Droid.Resource.Styleable.TextAppearance_android_typeface; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_fontFamily = global::mederly.Droid.Resource.Styleable.TextAppearance_fontFamily; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_fontVariationSettings = global::mederly.Droid.Resource.Styleable.TextAppearance_fontVariationSettings; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_textAllCaps = global::mederly.Droid.Resource.Styleable.TextAppearance_textAllCaps; + global::Xamarin.Forms.Platform.Resource.Styleable.TextAppearance_textLocale = global::mederly.Droid.Resource.Styleable.TextAppearance_textLocale; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputEditText = global::mederly.Droid.Resource.Styleable.TextInputEditText; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputEditText_textInputLayoutFocusedRectEnabled = global::mederly.Droid.Resource.Styleable.TextInputEditText_textInputLayoutFocusedRectEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout = global::mederly.Droid.Resource.Styleable.TextInputLayout; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_android_enabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_android_enabled; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_android_hint = global::mederly.Droid.Resource.Styleable.TextInputLayout_android_hint; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_android_textColorHint = global::mederly.Droid.Resource.Styleable.TextInputLayout_android_textColorHint; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxBackgroundColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxBackgroundColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxBackgroundMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxBackgroundMode; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxCollapsedPaddingTop = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCollapsedPaddingTop; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomEnd = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomStart = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomStart; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxCornerRadiusTopEnd = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCornerRadiusTopEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxCornerRadiusTopStart = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxCornerRadiusTopStart; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxStrokeColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxStrokeColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxStrokeErrorColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxStrokeErrorColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxStrokeWidth = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxStrokeWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_boxStrokeWidthFocused = global::mederly.Droid.Resource.Styleable.TextInputLayout_boxStrokeWidthFocused; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_counterEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_counterMaxLength = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterMaxLength; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_counterOverflowTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterOverflowTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_counterOverflowTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterOverflowTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_counterTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_counterTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_counterTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_endIconCheckable = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconCheckable; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_endIconContentDescription = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconContentDescription; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_endIconDrawable = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_endIconMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconMode; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_endIconTint = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_endIconTintMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_endIconTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_errorContentDescription = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorContentDescription; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_errorEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_errorIconDrawable = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorIconDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_errorIconTint = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_errorIconTintMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorIconTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_errorTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_errorTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_errorTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_helperText = global::mederly.Droid.Resource.Styleable.TextInputLayout_helperText; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_helperTextEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_helperTextEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_helperTextTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_helperTextTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_helperTextTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_helperTextTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_hintAnimationEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_hintAnimationEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_hintEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_hintEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_hintTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_hintTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_hintTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_hintTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_passwordToggleContentDescription = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleContentDescription; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_passwordToggleDrawable = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_passwordToggleEnabled = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleEnabled; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_passwordToggleTint = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleTint; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_passwordToggleTintMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_passwordToggleTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_placeholderText = global::mederly.Droid.Resource.Styleable.TextInputLayout_placeholderText; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_placeholderTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_placeholderTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_placeholderTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_placeholderTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_prefixText = global::mederly.Droid.Resource.Styleable.TextInputLayout_prefixText; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_prefixTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_prefixTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_prefixTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_prefixTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_shapeAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_shapeAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_shapeAppearanceOverlay = global::mederly.Droid.Resource.Styleable.TextInputLayout_shapeAppearanceOverlay; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_startIconCheckable = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconCheckable; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_startIconContentDescription = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconContentDescription; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_startIconDrawable = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconDrawable; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_startIconTint = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconTint; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_startIconTintMode = global::mederly.Droid.Resource.Styleable.TextInputLayout_startIconTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_suffixText = global::mederly.Droid.Resource.Styleable.TextInputLayout_suffixText; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_suffixTextAppearance = global::mederly.Droid.Resource.Styleable.TextInputLayout_suffixTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.TextInputLayout_suffixTextColor = global::mederly.Droid.Resource.Styleable.TextInputLayout_suffixTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.ThemeEnforcement = global::mederly.Droid.Resource.Styleable.ThemeEnforcement; + global::Xamarin.Forms.Platform.Resource.Styleable.ThemeEnforcement_android_textAppearance = global::mederly.Droid.Resource.Styleable.ThemeEnforcement_android_textAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.ThemeEnforcement_enforceMaterialTheme = global::mederly.Droid.Resource.Styleable.ThemeEnforcement_enforceMaterialTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.ThemeEnforcement_enforceTextAppearance = global::mederly.Droid.Resource.Styleable.ThemeEnforcement_enforceTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar = global::mederly.Droid.Resource.Styleable.Toolbar; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_android_gravity = global::mederly.Droid.Resource.Styleable.Toolbar_android_gravity; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_android_minHeight = global::mederly.Droid.Resource.Styleable.Toolbar_android_minHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_buttonGravity = global::mederly.Droid.Resource.Styleable.Toolbar_buttonGravity; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_collapseContentDescription = global::mederly.Droid.Resource.Styleable.Toolbar_collapseContentDescription; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_collapseIcon = global::mederly.Droid.Resource.Styleable.Toolbar_collapseIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_contentInsetEnd = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_contentInsetEndWithActions = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetEndWithActions; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_contentInsetLeft = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetLeft; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_contentInsetRight = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetRight; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_contentInsetStart = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetStart; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_contentInsetStartWithNavigation = global::mederly.Droid.Resource.Styleable.Toolbar_contentInsetStartWithNavigation; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_logo = global::mederly.Droid.Resource.Styleable.Toolbar_logo; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_logoDescription = global::mederly.Droid.Resource.Styleable.Toolbar_logoDescription; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_maxButtonHeight = global::mederly.Droid.Resource.Styleable.Toolbar_maxButtonHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_menu = global::mederly.Droid.Resource.Styleable.Toolbar_menu; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_navigationContentDescription = global::mederly.Droid.Resource.Styleable.Toolbar_navigationContentDescription; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_navigationIcon = global::mederly.Droid.Resource.Styleable.Toolbar_navigationIcon; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_popupTheme = global::mederly.Droid.Resource.Styleable.Toolbar_popupTheme; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_subtitle = global::mederly.Droid.Resource.Styleable.Toolbar_subtitle; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_subtitleTextAppearance = global::mederly.Droid.Resource.Styleable.Toolbar_subtitleTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_subtitleTextColor = global::mederly.Droid.Resource.Styleable.Toolbar_subtitleTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_title = global::mederly.Droid.Resource.Styleable.Toolbar_title; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_titleMargin = global::mederly.Droid.Resource.Styleable.Toolbar_titleMargin; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_titleMarginBottom = global::mederly.Droid.Resource.Styleable.Toolbar_titleMarginBottom; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_titleMarginEnd = global::mederly.Droid.Resource.Styleable.Toolbar_titleMarginEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_titleMargins = global::mederly.Droid.Resource.Styleable.Toolbar_titleMargins; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_titleMarginStart = global::mederly.Droid.Resource.Styleable.Toolbar_titleMarginStart; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_titleMarginTop = global::mederly.Droid.Resource.Styleable.Toolbar_titleMarginTop; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_titleTextAppearance = global::mederly.Droid.Resource.Styleable.Toolbar_titleTextAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.Toolbar_titleTextColor = global::mederly.Droid.Resource.Styleable.Toolbar_titleTextColor; + global::Xamarin.Forms.Platform.Resource.Styleable.Tooltip = global::mederly.Droid.Resource.Styleable.Tooltip; + global::Xamarin.Forms.Platform.Resource.Styleable.Tooltip_android_layout_margin = global::mederly.Droid.Resource.Styleable.Tooltip_android_layout_margin; + global::Xamarin.Forms.Platform.Resource.Styleable.Tooltip_android_minHeight = global::mederly.Droid.Resource.Styleable.Tooltip_android_minHeight; + global::Xamarin.Forms.Platform.Resource.Styleable.Tooltip_android_minWidth = global::mederly.Droid.Resource.Styleable.Tooltip_android_minWidth; + global::Xamarin.Forms.Platform.Resource.Styleable.Tooltip_android_padding = global::mederly.Droid.Resource.Styleable.Tooltip_android_padding; + global::Xamarin.Forms.Platform.Resource.Styleable.Tooltip_android_text = global::mederly.Droid.Resource.Styleable.Tooltip_android_text; + global::Xamarin.Forms.Platform.Resource.Styleable.Tooltip_android_textAppearance = global::mederly.Droid.Resource.Styleable.Tooltip_android_textAppearance; + global::Xamarin.Forms.Platform.Resource.Styleable.Tooltip_backgroundTint = global::mederly.Droid.Resource.Styleable.Tooltip_backgroundTint; + global::Xamarin.Forms.Platform.Resource.Styleable.View = global::mederly.Droid.Resource.Styleable.View; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewBackgroundHelper = global::mederly.Droid.Resource.Styleable.ViewBackgroundHelper; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewBackgroundHelper_android_background = global::mederly.Droid.Resource.Styleable.ViewBackgroundHelper_android_background; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewBackgroundHelper_backgroundTint = global::mederly.Droid.Resource.Styleable.ViewBackgroundHelper_backgroundTint; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewBackgroundHelper_backgroundTintMode = global::mederly.Droid.Resource.Styleable.ViewBackgroundHelper_backgroundTintMode; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewPager2 = global::mederly.Droid.Resource.Styleable.ViewPager2; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewPager2_android_orientation = global::mederly.Droid.Resource.Styleable.ViewPager2_android_orientation; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewStubCompat = global::mederly.Droid.Resource.Styleable.ViewStubCompat; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewStubCompat_android_id = global::mederly.Droid.Resource.Styleable.ViewStubCompat_android_id; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewStubCompat_android_inflatedId = global::mederly.Droid.Resource.Styleable.ViewStubCompat_android_inflatedId; + global::Xamarin.Forms.Platform.Resource.Styleable.ViewStubCompat_android_layout = global::mederly.Droid.Resource.Styleable.ViewStubCompat_android_layout; + global::Xamarin.Forms.Platform.Resource.Styleable.View_android_focusable = global::mederly.Droid.Resource.Styleable.View_android_focusable; + global::Xamarin.Forms.Platform.Resource.Styleable.View_android_theme = global::mederly.Droid.Resource.Styleable.View_android_theme; + global::Xamarin.Forms.Platform.Resource.Styleable.View_paddingEnd = global::mederly.Droid.Resource.Styleable.View_paddingEnd; + global::Xamarin.Forms.Platform.Resource.Styleable.View_paddingStart = global::mederly.Droid.Resource.Styleable.View_paddingStart; + global::Xamarin.Forms.Platform.Resource.Styleable.View_theme = global::mederly.Droid.Resource.Styleable.View_theme; + global::Xamarin.Forms.Platform.Resource.Xml.standalone_badge = global::mederly.Droid.Resource.Xml.standalone_badge; + global::Xamarin.Forms.Platform.Resource.Xml.standalone_badge_gravity_bottom_end = global::mederly.Droid.Resource.Xml.standalone_badge_gravity_bottom_end; + global::Xamarin.Forms.Platform.Resource.Xml.standalone_badge_gravity_bottom_start = global::mederly.Droid.Resource.Xml.standalone_badge_gravity_bottom_start; + global::Xamarin.Forms.Platform.Resource.Xml.standalone_badge_gravity_top_start = global::mederly.Droid.Resource.Xml.standalone_badge_gravity_top_start; + global::Xamarin.Forms.Platform.Resource.Xml.standalone_badge_offset = global::mederly.Droid.Resource.Xml.standalone_badge_offset; + } + + public partial class Animation + { + + // aapt resource value: 0x7F010000 + public const int abc_fade_in = 2130771968; + + // aapt resource value: 0x7F010001 + public const int abc_fade_out = 2130771969; + + // aapt resource value: 0x7F010002 + public const int abc_grow_fade_in_from_bottom = 2130771970; + + // aapt resource value: 0x7F010003 + public const int abc_popup_enter = 2130771971; + + // aapt resource value: 0x7F010004 + public const int abc_popup_exit = 2130771972; + + // aapt resource value: 0x7F010005 + public const int abc_shrink_fade_out_from_bottom = 2130771973; + + // aapt resource value: 0x7F010006 + public const int abc_slide_in_bottom = 2130771974; + + // aapt resource value: 0x7F010007 + public const int abc_slide_in_top = 2130771975; + + // aapt resource value: 0x7F010008 + public const int abc_slide_out_bottom = 2130771976; + + // aapt resource value: 0x7F010009 + public const int abc_slide_out_top = 2130771977; + + // aapt resource value: 0x7F01000A + public const int abc_tooltip_enter = 2130771978; + + // aapt resource value: 0x7F01000B + public const int abc_tooltip_exit = 2130771979; + + // aapt resource value: 0x7F01000C + public const int btn_checkbox_to_checked_box_inner_merged_animation = 2130771980; + + // aapt resource value: 0x7F01000D + public const int btn_checkbox_to_checked_box_outer_merged_animation = 2130771981; + + // aapt resource value: 0x7F01000E + public const int btn_checkbox_to_checked_icon_null_animation = 2130771982; + + // aapt resource value: 0x7F01000F + public const int btn_checkbox_to_unchecked_box_inner_merged_animation = 2130771983; + + // aapt resource value: 0x7F010010 + public const int btn_checkbox_to_unchecked_check_path_merged_animation = 2130771984; + + // aapt resource value: 0x7F010011 + public const int btn_checkbox_to_unchecked_icon_null_animation = 2130771985; + + // aapt resource value: 0x7F010012 + public const int btn_radio_to_off_mtrl_dot_group_animation = 2130771986; + + // aapt resource value: 0x7F010013 + public const int btn_radio_to_off_mtrl_ring_outer_animation = 2130771987; + + // aapt resource value: 0x7F010014 + public const int btn_radio_to_off_mtrl_ring_outer_path_animation = 2130771988; + + // aapt resource value: 0x7F010015 + public const int btn_radio_to_on_mtrl_dot_group_animation = 2130771989; + + // aapt resource value: 0x7F010016 + public const int btn_radio_to_on_mtrl_ring_outer_animation = 2130771990; + + // aapt resource value: 0x7F010017 + public const int btn_radio_to_on_mtrl_ring_outer_path_animation = 2130771991; + + // aapt resource value: 0x7F010018 + public const int design_bottom_sheet_slide_in = 2130771992; + + // aapt resource value: 0x7F010019 + public const int design_bottom_sheet_slide_out = 2130771993; + + // aapt resource value: 0x7F01001A + public const int design_snackbar_in = 2130771994; + + // aapt resource value: 0x7F01001B + public const int design_snackbar_out = 2130771995; + + // aapt resource value: 0x7F01001C + public const int EnterFromLeft = 2130771996; + + // aapt resource value: 0x7F01001D + public const int EnterFromRight = 2130771997; + + // aapt resource value: 0x7F01001E + public const int ExitToLeft = 2130771998; + + // aapt resource value: 0x7F01001F + public const int ExitToRight = 2130771999; + + // aapt resource value: 0x7F010020 + public const int fragment_close_enter = 2130772000; + + // aapt resource value: 0x7F010021 + public const int fragment_close_exit = 2130772001; + + // aapt resource value: 0x7F010022 + public const int fragment_fade_enter = 2130772002; + + // aapt resource value: 0x7F010023 + public const int fragment_fade_exit = 2130772003; + + // aapt resource value: 0x7F010024 + public const int fragment_fast_out_extra_slow_in = 2130772004; + + // aapt resource value: 0x7F010025 + public const int fragment_open_enter = 2130772005; + + // aapt resource value: 0x7F010026 + public const int fragment_open_exit = 2130772006; + + // aapt resource value: 0x7F010027 + public const int mtrl_bottom_sheet_slide_in = 2130772007; + + // aapt resource value: 0x7F010028 + public const int mtrl_bottom_sheet_slide_out = 2130772008; + + // aapt resource value: 0x7F010029 + public const int mtrl_card_lowers_interpolator = 2130772009; + + static Animation() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Animation() + { + } + } + + public partial class Animator + { + + // aapt resource value: 0x7F020000 + public const int design_appbar_state_list_animator = 2130837504; + + // aapt resource value: 0x7F020001 + public const int design_fab_hide_motion_spec = 2130837505; + + // aapt resource value: 0x7F020002 + public const int design_fab_show_motion_spec = 2130837506; + + // aapt resource value: 0x7F020003 + public const int mtrl_btn_state_list_anim = 2130837507; + + // aapt resource value: 0x7F020004 + public const int mtrl_btn_unelevated_state_list_anim = 2130837508; + + // aapt resource value: 0x7F020005 + public const int mtrl_card_state_list_anim = 2130837509; + + // aapt resource value: 0x7F020006 + public const int mtrl_chip_state_list_anim = 2130837510; + + // aapt resource value: 0x7F020007 + public const int mtrl_extended_fab_change_size_motion_spec = 2130837511; + + // aapt resource value: 0x7F020008 + public const int mtrl_extended_fab_hide_motion_spec = 2130837512; + + // aapt resource value: 0x7F020009 + public const int mtrl_extended_fab_show_motion_spec = 2130837513; + + // aapt resource value: 0x7F02000A + public const int mtrl_extended_fab_state_list_animator = 2130837514; + + // aapt resource value: 0x7F02000B + public const int mtrl_fab_hide_motion_spec = 2130837515; + + // aapt resource value: 0x7F02000C + public const int mtrl_fab_show_motion_spec = 2130837516; + + // aapt resource value: 0x7F02000D + public const int mtrl_fab_transformation_sheet_collapse_spec = 2130837517; + + // aapt resource value: 0x7F02000E + public const int mtrl_fab_transformation_sheet_expand_spec = 2130837518; + + static Animator() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Animator() + { + } + } + + public partial class Attribute + { + + // aapt resource value: 0x7F030000 + public const int actionBarDivider = 2130903040; + + // aapt resource value: 0x7F030001 + public const int actionBarItemBackground = 2130903041; + + // aapt resource value: 0x7F030002 + public const int actionBarPopupTheme = 2130903042; + + // aapt resource value: 0x7F030003 + public const int actionBarSize = 2130903043; + + // aapt resource value: 0x7F030004 + public const int actionBarSplitStyle = 2130903044; + + // aapt resource value: 0x7F030005 + public const int actionBarStyle = 2130903045; + + // aapt resource value: 0x7F030006 + public const int actionBarTabBarStyle = 2130903046; + + // aapt resource value: 0x7F030007 + public const int actionBarTabStyle = 2130903047; + + // aapt resource value: 0x7F030008 + public const int actionBarTabTextStyle = 2130903048; + + // aapt resource value: 0x7F030009 + public const int actionBarTheme = 2130903049; + + // aapt resource value: 0x7F03000A + public const int actionBarWidgetTheme = 2130903050; + + // aapt resource value: 0x7F03000B + public const int actionButtonStyle = 2130903051; + + // aapt resource value: 0x7F03000C + public const int actionDropDownStyle = 2130903052; + + // aapt resource value: 0x7F03000D + public const int actionLayout = 2130903053; + + // aapt resource value: 0x7F03000E + public const int actionMenuTextAppearance = 2130903054; + + // aapt resource value: 0x7F03000F + public const int actionMenuTextColor = 2130903055; + + // aapt resource value: 0x7F030010 + public const int actionModeBackground = 2130903056; + + // aapt resource value: 0x7F030011 + public const int actionModeCloseButtonStyle = 2130903057; + + // aapt resource value: 0x7F030012 + public const int actionModeCloseDrawable = 2130903058; + + // aapt resource value: 0x7F030013 + public const int actionModeCopyDrawable = 2130903059; + + // aapt resource value: 0x7F030014 + public const int actionModeCutDrawable = 2130903060; + + // aapt resource value: 0x7F030015 + public const int actionModeFindDrawable = 2130903061; + + // aapt resource value: 0x7F030016 + public const int actionModePasteDrawable = 2130903062; + + // aapt resource value: 0x7F030017 + public const int actionModePopupWindowStyle = 2130903063; + + // aapt resource value: 0x7F030018 + public const int actionModeSelectAllDrawable = 2130903064; + + // aapt resource value: 0x7F030019 + public const int actionModeShareDrawable = 2130903065; + + // aapt resource value: 0x7F03001A + public const int actionModeSplitBackground = 2130903066; + + // aapt resource value: 0x7F03001B + public const int actionModeStyle = 2130903067; + + // aapt resource value: 0x7F03001C + public const int actionModeWebSearchDrawable = 2130903068; + + // aapt resource value: 0x7F03001D + public const int actionOverflowButtonStyle = 2130903069; + + // aapt resource value: 0x7F03001E + public const int actionOverflowMenuStyle = 2130903070; + + // aapt resource value: 0x7F03001F + public const int actionProviderClass = 2130903071; + + // aapt resource value: 0x7F030020 + public const int actionTextColorAlpha = 2130903072; + + // aapt resource value: 0x7F030021 + public const int actionViewClass = 2130903073; + + // aapt resource value: 0x7F030022 + public const int activityChooserViewStyle = 2130903074; + + // aapt resource value: 0x7F030023 + public const int alertDialogButtonGroupStyle = 2130903075; + + // aapt resource value: 0x7F030024 + public const int alertDialogCenterButtons = 2130903076; + + // aapt resource value: 0x7F030025 + public const int alertDialogStyle = 2130903077; + + // aapt resource value: 0x7F030026 + public const int alertDialogTheme = 2130903078; + + // aapt resource value: 0x7F030027 + public const int allowStacking = 2130903079; + + // aapt resource value: 0x7F030028 + public const int alpha = 2130903080; + + // aapt resource value: 0x7F030029 + public const int alphabeticModifiers = 2130903081; + + // aapt resource value: 0x7F03002A + public const int animationMode = 2130903082; + + // aapt resource value: 0x7F03002B + public const int appBarLayoutStyle = 2130903083; + + // aapt resource value: 0x7F03002C + public const int arrowHeadLength = 2130903084; + + // aapt resource value: 0x7F03002D + public const int arrowShaftLength = 2130903085; + + // aapt resource value: 0x7F03002E + public const int autoCompleteTextViewStyle = 2130903086; + + // aapt resource value: 0x7F03002F + public const int autoSizeMaxTextSize = 2130903087; + + // aapt resource value: 0x7F030030 + public const int autoSizeMinTextSize = 2130903088; + + // aapt resource value: 0x7F030031 + public const int autoSizePresetSizes = 2130903089; + + // aapt resource value: 0x7F030032 + public const int autoSizeStepGranularity = 2130903090; + + // aapt resource value: 0x7F030033 + public const int autoSizeTextType = 2130903091; + + // aapt resource value: 0x7F030034 + public const int background = 2130903092; + + // aapt resource value: 0x7F030035 + public const int backgroundColor = 2130903093; + + // aapt resource value: 0x7F030036 + public const int backgroundInsetBottom = 2130903094; + + // aapt resource value: 0x7F030037 + public const int backgroundInsetEnd = 2130903095; + + // aapt resource value: 0x7F030038 + public const int backgroundInsetStart = 2130903096; + + // aapt resource value: 0x7F030039 + public const int backgroundInsetTop = 2130903097; + + // aapt resource value: 0x7F03003A + public const int backgroundOverlayColorAlpha = 2130903098; + + // aapt resource value: 0x7F03003B + public const int backgroundSplit = 2130903099; + + // aapt resource value: 0x7F03003C + public const int backgroundStacked = 2130903100; + + // aapt resource value: 0x7F03003D + public const int backgroundTint = 2130903101; + + // aapt resource value: 0x7F03003E + public const int backgroundTintMode = 2130903102; + + // aapt resource value: 0x7F03003F + public const int badgeGravity = 2130903103; + + // aapt resource value: 0x7F030040 + public const int badgeStyle = 2130903104; + + // aapt resource value: 0x7F030041 + public const int badgeTextColor = 2130903105; + + // aapt resource value: 0x7F030042 + public const int barLength = 2130903106; + + // aapt resource value: 0x7F030043 + public const int behavior_autoHide = 2130903107; + + // aapt resource value: 0x7F030044 + public const int behavior_autoShrink = 2130903108; + + // aapt resource value: 0x7F030045 + public const int behavior_draggable = 2130903109; + + // aapt resource value: 0x7F030046 + public const int behavior_expandedOffset = 2130903110; + + // aapt resource value: 0x7F030047 + public const int behavior_fitToContents = 2130903111; + + // aapt resource value: 0x7F030048 + public const int behavior_halfExpandedRatio = 2130903112; + + // aapt resource value: 0x7F030049 + public const int behavior_hideable = 2130903113; + + // aapt resource value: 0x7F03004A + public const int behavior_overlapTop = 2130903114; + + // aapt resource value: 0x7F03004B + public const int behavior_peekHeight = 2130903115; + + // aapt resource value: 0x7F03004C + public const int behavior_saveFlags = 2130903116; + + // aapt resource value: 0x7F03004D + public const int behavior_skipCollapsed = 2130903117; + + // aapt resource value: 0x7F03004F + public const int borderlessButtonStyle = 2130903119; + + // aapt resource value: 0x7F03004E + public const int borderWidth = 2130903118; + + // aapt resource value: 0x7F030050 + public const int bottomAppBarStyle = 2130903120; + + // aapt resource value: 0x7F030051 + public const int bottomNavigationStyle = 2130903121; + + // aapt resource value: 0x7F030052 + public const int bottomSheetDialogTheme = 2130903122; + + // aapt resource value: 0x7F030053 + public const int bottomSheetStyle = 2130903123; + + // aapt resource value: 0x7F030054 + public const int boxBackgroundColor = 2130903124; + + // aapt resource value: 0x7F030055 + public const int boxBackgroundMode = 2130903125; + + // aapt resource value: 0x7F030056 + public const int boxCollapsedPaddingTop = 2130903126; + + // aapt resource value: 0x7F030057 + public const int boxCornerRadiusBottomEnd = 2130903127; + + // aapt resource value: 0x7F030058 + public const int boxCornerRadiusBottomStart = 2130903128; + + // aapt resource value: 0x7F030059 + public const int boxCornerRadiusTopEnd = 2130903129; + + // aapt resource value: 0x7F03005A + public const int boxCornerRadiusTopStart = 2130903130; + + // aapt resource value: 0x7F03005B + public const int boxStrokeColor = 2130903131; + + // aapt resource value: 0x7F03005C + public const int boxStrokeErrorColor = 2130903132; + + // aapt resource value: 0x7F03005D + public const int boxStrokeWidth = 2130903133; + + // aapt resource value: 0x7F03005E + public const int boxStrokeWidthFocused = 2130903134; + + // aapt resource value: 0x7F03005F + public const int buttonBarButtonStyle = 2130903135; + + // aapt resource value: 0x7F030060 + public const int buttonBarNegativeButtonStyle = 2130903136; + + // aapt resource value: 0x7F030061 + public const int buttonBarNeutralButtonStyle = 2130903137; + + // aapt resource value: 0x7F030062 + public const int buttonBarPositiveButtonStyle = 2130903138; + + // aapt resource value: 0x7F030063 + public const int buttonBarStyle = 2130903139; + + // aapt resource value: 0x7F030064 + public const int buttonCompat = 2130903140; + + // aapt resource value: 0x7F030065 + public const int buttonGravity = 2130903141; + + // aapt resource value: 0x7F030066 + public const int buttonIconDimen = 2130903142; + + // aapt resource value: 0x7F030067 + public const int buttonPanelSideLayout = 2130903143; + + // aapt resource value: 0x7F030068 + public const int buttonStyle = 2130903144; + + // aapt resource value: 0x7F030069 + public const int buttonStyleSmall = 2130903145; + + // aapt resource value: 0x7F03006A + public const int buttonTint = 2130903146; + + // aapt resource value: 0x7F03006B + public const int buttonTintMode = 2130903147; + + // aapt resource value: 0x7F03006C + public const int cardBackgroundColor = 2130903148; + + // aapt resource value: 0x7F03006D + public const int cardCornerRadius = 2130903149; + + // aapt resource value: 0x7F03006E + public const int cardElevation = 2130903150; + + // aapt resource value: 0x7F03006F + public const int cardForegroundColor = 2130903151; + + // aapt resource value: 0x7F030070 + public const int cardMaxElevation = 2130903152; + + // aapt resource value: 0x7F030071 + public const int cardPreventCornerOverlap = 2130903153; + + // aapt resource value: 0x7F030072 + public const int cardUseCompatPadding = 2130903154; + + // aapt resource value: 0x7F030073 + public const int cardViewStyle = 2130903155; + + // aapt resource value: 0x7F030074 + public const int checkboxStyle = 2130903156; + + // aapt resource value: 0x7F030075 + public const int checkedButton = 2130903157; + + // aapt resource value: 0x7F030076 + public const int checkedChip = 2130903158; + + // aapt resource value: 0x7F030077 + public const int checkedIcon = 2130903159; + + // aapt resource value: 0x7F030078 + public const int checkedIconEnabled = 2130903160; + + // aapt resource value: 0x7F030079 + public const int checkedIconTint = 2130903161; + + // aapt resource value: 0x7F03007A + public const int checkedIconVisible = 2130903162; + + // aapt resource value: 0x7F03007B + public const int checkedTextViewStyle = 2130903163; + + // aapt resource value: 0x7F03007C + public const int chipBackgroundColor = 2130903164; + + // aapt resource value: 0x7F03007D + public const int chipCornerRadius = 2130903165; + + // aapt resource value: 0x7F03007E + public const int chipEndPadding = 2130903166; + + // aapt resource value: 0x7F03007F + public const int chipGroupStyle = 2130903167; + + // aapt resource value: 0x7F030080 + public const int chipIcon = 2130903168; + + // aapt resource value: 0x7F030081 + public const int chipIconEnabled = 2130903169; + + // aapt resource value: 0x7F030082 + public const int chipIconSize = 2130903170; + + // aapt resource value: 0x7F030083 + public const int chipIconTint = 2130903171; + + // aapt resource value: 0x7F030084 + public const int chipIconVisible = 2130903172; + + // aapt resource value: 0x7F030085 + public const int chipMinHeight = 2130903173; + + // aapt resource value: 0x7F030086 + public const int chipMinTouchTargetSize = 2130903174; + + // aapt resource value: 0x7F030087 + public const int chipSpacing = 2130903175; + + // aapt resource value: 0x7F030088 + public const int chipSpacingHorizontal = 2130903176; + + // aapt resource value: 0x7F030089 + public const int chipSpacingVertical = 2130903177; + + // aapt resource value: 0x7F03008A + public const int chipStandaloneStyle = 2130903178; + + // aapt resource value: 0x7F03008B + public const int chipStartPadding = 2130903179; + + // aapt resource value: 0x7F03008C + public const int chipStrokeColor = 2130903180; + + // aapt resource value: 0x7F03008D + public const int chipStrokeWidth = 2130903181; + + // aapt resource value: 0x7F03008E + public const int chipStyle = 2130903182; + + // aapt resource value: 0x7F03008F + public const int chipSurfaceColor = 2130903183; + + // aapt resource value: 0x7F030090 + public const int closeIcon = 2130903184; + + // aapt resource value: 0x7F030091 + public const int closeIconEnabled = 2130903185; + + // aapt resource value: 0x7F030092 + public const int closeIconEndPadding = 2130903186; + + // aapt resource value: 0x7F030093 + public const int closeIconSize = 2130903187; + + // aapt resource value: 0x7F030094 + public const int closeIconStartPadding = 2130903188; + + // aapt resource value: 0x7F030095 + public const int closeIconTint = 2130903189; + + // aapt resource value: 0x7F030096 + public const int closeIconVisible = 2130903190; + + // aapt resource value: 0x7F030097 + public const int closeItemLayout = 2130903191; + + // aapt resource value: 0x7F030098 + public const int collapseContentDescription = 2130903192; + + // aapt resource value: 0x7F03009A + public const int collapsedTitleGravity = 2130903194; + + // aapt resource value: 0x7F03009B + public const int collapsedTitleTextAppearance = 2130903195; + + // aapt resource value: 0x7F030099 + public const int collapseIcon = 2130903193; + + // aapt resource value: 0x7F03009C + public const int collectionViewStyle = 2130903196; + + // aapt resource value: 0x7F03009D + public const int color = 2130903197; + + // aapt resource value: 0x7F03009E + public const int colorAccent = 2130903198; + + // aapt resource value: 0x7F03009F + public const int colorBackgroundFloating = 2130903199; + + // aapt resource value: 0x7F0300A0 + public const int colorButtonNormal = 2130903200; + + // aapt resource value: 0x7F0300A1 + public const int colorControlActivated = 2130903201; + + // aapt resource value: 0x7F0300A2 + public const int colorControlHighlight = 2130903202; + + // aapt resource value: 0x7F0300A3 + public const int colorControlNormal = 2130903203; + + // aapt resource value: 0x7F0300A4 + public const int colorError = 2130903204; + + // aapt resource value: 0x7F0300A5 + public const int colorOnBackground = 2130903205; + + // aapt resource value: 0x7F0300A6 + public const int colorOnError = 2130903206; + + // aapt resource value: 0x7F0300A7 + public const int colorOnPrimary = 2130903207; + + // aapt resource value: 0x7F0300A8 + public const int colorOnPrimarySurface = 2130903208; + + // aapt resource value: 0x7F0300A9 + public const int colorOnSecondary = 2130903209; + + // aapt resource value: 0x7F0300AA + public const int colorOnSurface = 2130903210; + + // aapt resource value: 0x7F0300AB + public const int colorPrimary = 2130903211; + + // aapt resource value: 0x7F0300AC + public const int colorPrimaryDark = 2130903212; + + // aapt resource value: 0x7F0300AD + public const int colorPrimarySurface = 2130903213; + + // aapt resource value: 0x7F0300AE + public const int colorPrimaryVariant = 2130903214; + + // aapt resource value: 0x7F0300AF + public const int colorSecondary = 2130903215; + + // aapt resource value: 0x7F0300B0 + public const int colorSecondaryVariant = 2130903216; + + // aapt resource value: 0x7F0300B1 + public const int colorSurface = 2130903217; + + // aapt resource value: 0x7F0300B2 + public const int colorSwitchThumbNormal = 2130903218; + + // aapt resource value: 0x7F0300B3 + public const int commitIcon = 2130903219; + + // aapt resource value: 0x7F0300B4 + public const int contentDescription = 2130903220; + + // aapt resource value: 0x7F0300B5 + public const int contentInsetEnd = 2130903221; + + // aapt resource value: 0x7F0300B6 + public const int contentInsetEndWithActions = 2130903222; + + // aapt resource value: 0x7F0300B7 + public const int contentInsetLeft = 2130903223; + + // aapt resource value: 0x7F0300B8 + public const int contentInsetRight = 2130903224; + + // aapt resource value: 0x7F0300B9 + public const int contentInsetStart = 2130903225; + + // aapt resource value: 0x7F0300BA + public const int contentInsetStartWithNavigation = 2130903226; + + // aapt resource value: 0x7F0300BB + public const int contentPadding = 2130903227; + + // aapt resource value: 0x7F0300BC + public const int contentPaddingBottom = 2130903228; + + // aapt resource value: 0x7F0300BD + public const int contentPaddingLeft = 2130903229; + + // aapt resource value: 0x7F0300BE + public const int contentPaddingRight = 2130903230; + + // aapt resource value: 0x7F0300BF + public const int contentPaddingTop = 2130903231; + + // aapt resource value: 0x7F0300C0 + public const int contentScrim = 2130903232; + + // aapt resource value: 0x7F0300C1 + public const int controlBackground = 2130903233; + + // aapt resource value: 0x7F0300C2 + public const int coordinatorLayoutStyle = 2130903234; + + // aapt resource value: 0x7F0300C3 + public const int cornerFamily = 2130903235; + + // aapt resource value: 0x7F0300C4 + public const int cornerFamilyBottomLeft = 2130903236; + + // aapt resource value: 0x7F0300C5 + public const int cornerFamilyBottomRight = 2130903237; + + // aapt resource value: 0x7F0300C6 + public const int cornerFamilyTopLeft = 2130903238; + + // aapt resource value: 0x7F0300C7 + public const int cornerFamilyTopRight = 2130903239; + + // aapt resource value: 0x7F0300C8 + public const int cornerRadius = 2130903240; + + // aapt resource value: 0x7F0300C9 + public const int cornerSize = 2130903241; + + // aapt resource value: 0x7F0300CA + public const int cornerSizeBottomLeft = 2130903242; + + // aapt resource value: 0x7F0300CB + public const int cornerSizeBottomRight = 2130903243; + + // aapt resource value: 0x7F0300CC + public const int cornerSizeTopLeft = 2130903244; + + // aapt resource value: 0x7F0300CD + public const int cornerSizeTopRight = 2130903245; + + // aapt resource value: 0x7F0300CE + public const int counterEnabled = 2130903246; + + // aapt resource value: 0x7F0300CF + public const int counterMaxLength = 2130903247; + + // aapt resource value: 0x7F0300D0 + public const int counterOverflowTextAppearance = 2130903248; + + // aapt resource value: 0x7F0300D1 + public const int counterOverflowTextColor = 2130903249; + + // aapt resource value: 0x7F0300D2 + public const int counterTextAppearance = 2130903250; + + // aapt resource value: 0x7F0300D3 + public const int counterTextColor = 2130903251; + + // aapt resource value: 0x7F0300D4 + public const int customNavigationLayout = 2130903252; + + // aapt resource value: 0x7F0300D5 + public const int dayInvalidStyle = 2130903253; + + // aapt resource value: 0x7F0300D6 + public const int daySelectedStyle = 2130903254; + + // aapt resource value: 0x7F0300D7 + public const int dayStyle = 2130903255; + + // aapt resource value: 0x7F0300D8 + public const int dayTodayStyle = 2130903256; + + // aapt resource value: 0x7F0300D9 + public const int defaultQueryHint = 2130903257; + + // aapt resource value: 0x7F0300DA + public const int dialogCornerRadius = 2130903258; + + // aapt resource value: 0x7F0300DB + public const int dialogPreferredPadding = 2130903259; + + // aapt resource value: 0x7F0300DC + public const int dialogTheme = 2130903260; + + // aapt resource value: 0x7F0300DD + public const int displayOptions = 2130903261; + + // aapt resource value: 0x7F0300DE + public const int divider = 2130903262; + + // aapt resource value: 0x7F0300DF + public const int dividerHorizontal = 2130903263; + + // aapt resource value: 0x7F0300E0 + public const int dividerPadding = 2130903264; + + // aapt resource value: 0x7F0300E1 + public const int dividerVertical = 2130903265; + + // aapt resource value: 0x7F0300E2 + public const int drawableBottomCompat = 2130903266; + + // aapt resource value: 0x7F0300E3 + public const int drawableEndCompat = 2130903267; + + // aapt resource value: 0x7F0300E4 + public const int drawableLeftCompat = 2130903268; + + // aapt resource value: 0x7F0300E5 + public const int drawableRightCompat = 2130903269; + + // aapt resource value: 0x7F0300E6 + public const int drawableSize = 2130903270; + + // aapt resource value: 0x7F0300E7 + public const int drawableStartCompat = 2130903271; + + // aapt resource value: 0x7F0300E8 + public const int drawableTint = 2130903272; + + // aapt resource value: 0x7F0300E9 + public const int drawableTintMode = 2130903273; + + // aapt resource value: 0x7F0300EA + public const int drawableTopCompat = 2130903274; + + // aapt resource value: 0x7F0300EB + public const int drawerArrowStyle = 2130903275; + + // aapt resource value: 0x7F0300EC + public const int drawerLayoutStyle = 2130903276; + + // aapt resource value: 0x7F0300EE + public const int dropdownListPreferredItemHeight = 2130903278; + + // aapt resource value: 0x7F0300ED + public const int dropDownListViewStyle = 2130903277; + + // aapt resource value: 0x7F0300EF + public const int editTextBackground = 2130903279; + + // aapt resource value: 0x7F0300F0 + public const int editTextColor = 2130903280; + + // aapt resource value: 0x7F0300F1 + public const int editTextStyle = 2130903281; + + // aapt resource value: 0x7F0300F2 + public const int elevation = 2130903282; + + // aapt resource value: 0x7F0300F3 + public const int elevationOverlayColor = 2130903283; + + // aapt resource value: 0x7F0300F4 + public const int elevationOverlayEnabled = 2130903284; + + // aapt resource value: 0x7F0300F5 + public const int endIconCheckable = 2130903285; + + // aapt resource value: 0x7F0300F6 + public const int endIconContentDescription = 2130903286; + + // aapt resource value: 0x7F0300F7 + public const int endIconDrawable = 2130903287; + + // aapt resource value: 0x7F0300F8 + public const int endIconMode = 2130903288; + + // aapt resource value: 0x7F0300F9 + public const int endIconTint = 2130903289; + + // aapt resource value: 0x7F0300FA + public const int endIconTintMode = 2130903290; + + // aapt resource value: 0x7F0300FB + public const int enforceMaterialTheme = 2130903291; + + // aapt resource value: 0x7F0300FC + public const int enforceTextAppearance = 2130903292; + + // aapt resource value: 0x7F0300FD + public const int ensureMinTouchTargetSize = 2130903293; + + // aapt resource value: 0x7F0300FE + public const int errorContentDescription = 2130903294; + + // aapt resource value: 0x7F0300FF + public const int errorEnabled = 2130903295; + + // aapt resource value: 0x7F030100 + public const int errorIconDrawable = 2130903296; + + // aapt resource value: 0x7F030101 + public const int errorIconTint = 2130903297; + + // aapt resource value: 0x7F030102 + public const int errorIconTintMode = 2130903298; + + // aapt resource value: 0x7F030103 + public const int errorTextAppearance = 2130903299; + + // aapt resource value: 0x7F030104 + public const int errorTextColor = 2130903300; + + // aapt resource value: 0x7F030105 + public const int expandActivityOverflowButtonDrawable = 2130903301; + + // aapt resource value: 0x7F030106 + public const int expanded = 2130903302; + + // aapt resource value: 0x7F030107 + public const int expandedTitleGravity = 2130903303; + + // aapt resource value: 0x7F030108 + public const int expandedTitleMargin = 2130903304; + + // aapt resource value: 0x7F030109 + public const int expandedTitleMarginBottom = 2130903305; + + // aapt resource value: 0x7F03010A + public const int expandedTitleMarginEnd = 2130903306; + + // aapt resource value: 0x7F03010B + public const int expandedTitleMarginStart = 2130903307; + + // aapt resource value: 0x7F03010C + public const int expandedTitleMarginTop = 2130903308; + + // aapt resource value: 0x7F03010D + public const int expandedTitleTextAppearance = 2130903309; + + // aapt resource value: 0x7F03010F + public const int extendedFloatingActionButtonStyle = 2130903311; + + // aapt resource value: 0x7F03010E + public const int extendMotionSpec = 2130903310; + + // aapt resource value: 0x7F030110 + public const int fabAlignmentMode = 2130903312; + + // aapt resource value: 0x7F030111 + public const int fabAnimationMode = 2130903313; + + // aapt resource value: 0x7F030112 + public const int fabCradleMargin = 2130903314; + + // aapt resource value: 0x7F030113 + public const int fabCradleRoundedCornerRadius = 2130903315; + + // aapt resource value: 0x7F030114 + public const int fabCradleVerticalOffset = 2130903316; + + // aapt resource value: 0x7F030115 + public const int fabCustomSize = 2130903317; + + // aapt resource value: 0x7F030116 + public const int fabSize = 2130903318; + + // aapt resource value: 0x7F030117 + public const int fastScrollEnabled = 2130903319; + + // aapt resource value: 0x7F030118 + public const int fastScrollHorizontalThumbDrawable = 2130903320; + + // aapt resource value: 0x7F030119 + public const int fastScrollHorizontalTrackDrawable = 2130903321; + + // aapt resource value: 0x7F03011A + public const int fastScrollVerticalThumbDrawable = 2130903322; + + // aapt resource value: 0x7F03011B + public const int fastScrollVerticalTrackDrawable = 2130903323; + + // aapt resource value: 0x7F03011C + public const int firstBaselineToTopHeight = 2130903324; + + // aapt resource value: 0x7F03011D + public const int floatingActionButtonStyle = 2130903325; + + // aapt resource value: 0x7F03011E + public const int font = 2130903326; + + // aapt resource value: 0x7F03011F + public const int fontFamily = 2130903327; + + // aapt resource value: 0x7F030120 + public const int fontProviderAuthority = 2130903328; + + // aapt resource value: 0x7F030121 + public const int fontProviderCerts = 2130903329; + + // aapt resource value: 0x7F030122 + public const int fontProviderFetchStrategy = 2130903330; + + // aapt resource value: 0x7F030123 + public const int fontProviderFetchTimeout = 2130903331; + + // aapt resource value: 0x7F030124 + public const int fontProviderPackage = 2130903332; + + // aapt resource value: 0x7F030125 + public const int fontProviderQuery = 2130903333; + + // aapt resource value: 0x7F030126 + public const int fontStyle = 2130903334; + + // aapt resource value: 0x7F030127 + public const int fontVariationSettings = 2130903335; + + // aapt resource value: 0x7F030128 + public const int fontWeight = 2130903336; + + // aapt resource value: 0x7F030129 + public const int foregroundInsidePadding = 2130903337; + + // aapt resource value: 0x7F03012A + public const int gapBetweenBars = 2130903338; + + // aapt resource value: 0x7F03012B + public const int gestureInsetBottomIgnored = 2130903339; + + // aapt resource value: 0x7F03012C + public const int goIcon = 2130903340; + + // aapt resource value: 0x7F03012D + public const int haloColor = 2130903341; + + // aapt resource value: 0x7F03012E + public const int haloRadius = 2130903342; + + // aapt resource value: 0x7F03012F + public const int headerLayout = 2130903343; + + // aapt resource value: 0x7F030130 + public const int height = 2130903344; + + // aapt resource value: 0x7F030131 + public const int helperText = 2130903345; + + // aapt resource value: 0x7F030132 + public const int helperTextEnabled = 2130903346; + + // aapt resource value: 0x7F030133 + public const int helperTextTextAppearance = 2130903347; + + // aapt resource value: 0x7F030134 + public const int helperTextTextColor = 2130903348; + + // aapt resource value: 0x7F030135 + public const int hideMotionSpec = 2130903349; + + // aapt resource value: 0x7F030136 + public const int hideOnContentScroll = 2130903350; + + // aapt resource value: 0x7F030137 + public const int hideOnScroll = 2130903351; + + // aapt resource value: 0x7F030138 + public const int hintAnimationEnabled = 2130903352; + + // aapt resource value: 0x7F030139 + public const int hintEnabled = 2130903353; + + // aapt resource value: 0x7F03013A + public const int hintTextAppearance = 2130903354; + + // aapt resource value: 0x7F03013B + public const int hintTextColor = 2130903355; + + // aapt resource value: 0x7F03013C + public const int homeAsUpIndicator = 2130903356; + + // aapt resource value: 0x7F03013D + public const int homeLayout = 2130903357; + + // aapt resource value: 0x7F03013E + public const int horizontalOffset = 2130903358; + + // aapt resource value: 0x7F03013F + public const int hoveredFocusedTranslationZ = 2130903359; + + // aapt resource value: 0x7F030140 + public const int icon = 2130903360; + + // aapt resource value: 0x7F030141 + public const int iconEndPadding = 2130903361; + + // aapt resource value: 0x7F030142 + public const int iconGravity = 2130903362; + + // aapt resource value: 0x7F030148 + public const int iconifiedByDefault = 2130903368; + + // aapt resource value: 0x7F030143 + public const int iconPadding = 2130903363; + + // aapt resource value: 0x7F030144 + public const int iconSize = 2130903364; + + // aapt resource value: 0x7F030145 + public const int iconStartPadding = 2130903365; + + // aapt resource value: 0x7F030146 + public const int iconTint = 2130903366; + + // aapt resource value: 0x7F030147 + public const int iconTintMode = 2130903367; + + // aapt resource value: 0x7F030149 + public const int imageButtonStyle = 2130903369; + + // aapt resource value: 0x7F03014A + public const int indeterminateProgressStyle = 2130903370; + + // aapt resource value: 0x7F03014B + public const int initialActivityCount = 2130903371; + + // aapt resource value: 0x7F03014C + public const int insetForeground = 2130903372; + + // aapt resource value: 0x7F03014D + public const int isLightTheme = 2130903373; + + // aapt resource value: 0x7F03014E + public const int isMaterialTheme = 2130903374; + + // aapt resource value: 0x7F03014F + public const int itemBackground = 2130903375; + + // aapt resource value: 0x7F030150 + public const int itemFillColor = 2130903376; + + // aapt resource value: 0x7F030151 + public const int itemHorizontalPadding = 2130903377; + + // aapt resource value: 0x7F030152 + public const int itemHorizontalTranslationEnabled = 2130903378; + + // aapt resource value: 0x7F030153 + public const int itemIconPadding = 2130903379; + + // aapt resource value: 0x7F030154 + public const int itemIconSize = 2130903380; + + // aapt resource value: 0x7F030155 + public const int itemIconTint = 2130903381; + + // aapt resource value: 0x7F030156 + public const int itemMaxLines = 2130903382; + + // aapt resource value: 0x7F030157 + public const int itemPadding = 2130903383; + + // aapt resource value: 0x7F030158 + public const int itemRippleColor = 2130903384; + + // aapt resource value: 0x7F030159 + public const int itemShapeAppearance = 2130903385; + + // aapt resource value: 0x7F03015A + public const int itemShapeAppearanceOverlay = 2130903386; + + // aapt resource value: 0x7F03015B + public const int itemShapeFillColor = 2130903387; + + // aapt resource value: 0x7F03015C + public const int itemShapeInsetBottom = 2130903388; + + // aapt resource value: 0x7F03015D + public const int itemShapeInsetEnd = 2130903389; + + // aapt resource value: 0x7F03015E + public const int itemShapeInsetStart = 2130903390; + + // aapt resource value: 0x7F03015F + public const int itemShapeInsetTop = 2130903391; + + // aapt resource value: 0x7F030160 + public const int itemSpacing = 2130903392; + + // aapt resource value: 0x7F030161 + public const int itemStrokeColor = 2130903393; + + // aapt resource value: 0x7F030162 + public const int itemStrokeWidth = 2130903394; + + // aapt resource value: 0x7F030163 + public const int itemTextAppearance = 2130903395; + + // aapt resource value: 0x7F030164 + public const int itemTextAppearanceActive = 2130903396; + + // aapt resource value: 0x7F030165 + public const int itemTextAppearanceInactive = 2130903397; + + // aapt resource value: 0x7F030166 + public const int itemTextColor = 2130903398; + + // aapt resource value: 0x7F030167 + public const int keylines = 2130903399; + + // aapt resource value: 0x7F030168 + public const int labelBehavior = 2130903400; + + // aapt resource value: 0x7F030169 + public const int labelStyle = 2130903401; + + // aapt resource value: 0x7F03016A + public const int labelVisibilityMode = 2130903402; + + // aapt resource value: 0x7F03016B + public const int lastBaselineToBottomHeight = 2130903403; + + // aapt resource value: 0x7F03016C + public const int layout = 2130903404; + + // aapt resource value: 0x7F03016D + public const int layoutManager = 2130903405; + + // aapt resource value: 0x7F03016E + public const int layout_anchor = 2130903406; + + // aapt resource value: 0x7F03016F + public const int layout_anchorGravity = 2130903407; + + // aapt resource value: 0x7F030170 + public const int layout_behavior = 2130903408; + + // aapt resource value: 0x7F030171 + public const int layout_collapseMode = 2130903409; + + // aapt resource value: 0x7F030172 + public const int layout_collapseParallaxMultiplier = 2130903410; + + // aapt resource value: 0x7F030173 + public const int layout_dodgeInsetEdges = 2130903411; + + // aapt resource value: 0x7F030174 + public const int layout_insetEdge = 2130903412; + + // aapt resource value: 0x7F030175 + public const int layout_keyline = 2130903413; + + // aapt resource value: 0x7F030176 + public const int layout_scrollFlags = 2130903414; + + // aapt resource value: 0x7F030177 + public const int layout_scrollInterpolator = 2130903415; + + // aapt resource value: 0x7F030178 + public const int liftOnScroll = 2130903416; + + // aapt resource value: 0x7F030179 + public const int liftOnScrollTargetViewId = 2130903417; + + // aapt resource value: 0x7F03017A + public const int lineHeight = 2130903418; + + // aapt resource value: 0x7F03017B + public const int lineSpacing = 2130903419; + + // aapt resource value: 0x7F03017C + public const int listChoiceBackgroundIndicator = 2130903420; + + // aapt resource value: 0x7F03017D + public const int listChoiceIndicatorMultipleAnimated = 2130903421; + + // aapt resource value: 0x7F03017E + public const int listChoiceIndicatorSingleAnimated = 2130903422; + + // aapt resource value: 0x7F03017F + public const int listDividerAlertDialog = 2130903423; + + // aapt resource value: 0x7F030180 + public const int listItemLayout = 2130903424; + + // aapt resource value: 0x7F030181 + public const int listLayout = 2130903425; + + // aapt resource value: 0x7F030182 + public const int listMenuViewStyle = 2130903426; + + // aapt resource value: 0x7F030183 + public const int listPopupWindowStyle = 2130903427; + + // aapt resource value: 0x7F030184 + public const int listPreferredItemHeight = 2130903428; + + // aapt resource value: 0x7F030185 + public const int listPreferredItemHeightLarge = 2130903429; + + // aapt resource value: 0x7F030186 + public const int listPreferredItemHeightSmall = 2130903430; + + // aapt resource value: 0x7F030187 + public const int listPreferredItemPaddingEnd = 2130903431; + + // aapt resource value: 0x7F030188 + public const int listPreferredItemPaddingLeft = 2130903432; + + // aapt resource value: 0x7F030189 + public const int listPreferredItemPaddingRight = 2130903433; + + // aapt resource value: 0x7F03018A + public const int listPreferredItemPaddingStart = 2130903434; + + // aapt resource value: 0x7F03018B + public const int logo = 2130903435; + + // aapt resource value: 0x7F03018C + public const int logoDescription = 2130903436; + + // aapt resource value: 0x7F03018D + public const int materialAlertDialogBodyTextStyle = 2130903437; + + // aapt resource value: 0x7F03018E + public const int materialAlertDialogTheme = 2130903438; + + // aapt resource value: 0x7F03018F + public const int materialAlertDialogTitleIconStyle = 2130903439; + + // aapt resource value: 0x7F030190 + public const int materialAlertDialogTitlePanelStyle = 2130903440; + + // aapt resource value: 0x7F030191 + public const int materialAlertDialogTitleTextStyle = 2130903441; + + // aapt resource value: 0x7F030192 + public const int materialButtonOutlinedStyle = 2130903442; + + // aapt resource value: 0x7F030193 + public const int materialButtonStyle = 2130903443; + + // aapt resource value: 0x7F030194 + public const int materialButtonToggleGroupStyle = 2130903444; + + // aapt resource value: 0x7F030195 + public const int materialCalendarDay = 2130903445; + + // aapt resource value: 0x7F030196 + public const int materialCalendarFullscreenTheme = 2130903446; + + // aapt resource value: 0x7F030197 + public const int materialCalendarHeaderConfirmButton = 2130903447; + + // aapt resource value: 0x7F030198 + public const int materialCalendarHeaderDivider = 2130903448; + + // aapt resource value: 0x7F030199 + public const int materialCalendarHeaderLayout = 2130903449; + + // aapt resource value: 0x7F03019A + public const int materialCalendarHeaderSelection = 2130903450; + + // aapt resource value: 0x7F03019B + public const int materialCalendarHeaderTitle = 2130903451; + + // aapt resource value: 0x7F03019C + public const int materialCalendarHeaderToggleButton = 2130903452; + + // aapt resource value: 0x7F03019D + public const int materialCalendarStyle = 2130903453; + + // aapt resource value: 0x7F03019E + public const int materialCalendarTheme = 2130903454; + + // aapt resource value: 0x7F03019F + public const int materialCardViewStyle = 2130903455; + + // aapt resource value: 0x7F0301A0 + public const int materialThemeOverlay = 2130903456; + + // aapt resource value: 0x7F0301A1 + public const int maxActionInlineWidth = 2130903457; + + // aapt resource value: 0x7F0301A2 + public const int maxButtonHeight = 2130903458; + + // aapt resource value: 0x7F0301A3 + public const int maxCharacterCount = 2130903459; + + // aapt resource value: 0x7F0301A4 + public const int maxImageSize = 2130903460; + + // aapt resource value: 0x7F0301A5 + public const int maxLines = 2130903461; + + // aapt resource value: 0x7F0301A6 + public const int measureWithLargestChild = 2130903462; + + // aapt resource value: 0x7F0301A7 + public const int menu = 2130903463; + + // aapt resource value: 0x7F0301A8 + public const int minTouchTargetSize = 2130903464; + + // aapt resource value: 0x7F0301A9 + public const int multiChoiceItemLayout = 2130903465; + + // aapt resource value: 0x7F0301AA + public const int navigationContentDescription = 2130903466; + + // aapt resource value: 0x7F0301AB + public const int navigationIcon = 2130903467; + + // aapt resource value: 0x7F0301AC + public const int navigationMode = 2130903468; + + // aapt resource value: 0x7F0301AD + public const int navigationViewStyle = 2130903469; + + // aapt resource value: 0x7F0301AE + public const int number = 2130903470; + + // aapt resource value: 0x7F0301AF + public const int numericModifiers = 2130903471; + + // aapt resource value: 0x7F0301B0 + public const int overlapAnchor = 2130903472; + + // aapt resource value: 0x7F0301B1 + public const int paddingBottomNoButtons = 2130903473; + + // aapt resource value: 0x7F0301B2 + public const int paddingBottomSystemWindowInsets = 2130903474; + + // aapt resource value: 0x7F0301B3 + public const int paddingEnd = 2130903475; + + // aapt resource value: 0x7F0301B4 + public const int paddingLeftSystemWindowInsets = 2130903476; + + // aapt resource value: 0x7F0301B5 + public const int paddingRightSystemWindowInsets = 2130903477; + + // aapt resource value: 0x7F0301B6 + public const int paddingStart = 2130903478; + + // aapt resource value: 0x7F0301B7 + public const int paddingTopNoTitle = 2130903479; + + // aapt resource value: 0x7F0301B8 + public const int panelBackground = 2130903480; + + // aapt resource value: 0x7F0301B9 + public const int panelMenuListTheme = 2130903481; + + // aapt resource value: 0x7F0301BA + public const int panelMenuListWidth = 2130903482; + + // aapt resource value: 0x7F0301BB + public const int passwordToggleContentDescription = 2130903483; + + // aapt resource value: 0x7F0301BC + public const int passwordToggleDrawable = 2130903484; + + // aapt resource value: 0x7F0301BD + public const int passwordToggleEnabled = 2130903485; + + // aapt resource value: 0x7F0301BE + public const int passwordToggleTint = 2130903486; + + // aapt resource value: 0x7F0301BF + public const int passwordToggleTintMode = 2130903487; + + // aapt resource value: 0x7F0301C0 + public const int placeholderText = 2130903488; + + // aapt resource value: 0x7F0301C1 + public const int placeholderTextAppearance = 2130903489; + + // aapt resource value: 0x7F0301C2 + public const int placeholderTextColor = 2130903490; + + // aapt resource value: 0x7F0301C3 + public const int popupMenuBackground = 2130903491; + + // aapt resource value: 0x7F0301C4 + public const int popupMenuStyle = 2130903492; + + // aapt resource value: 0x7F0301C5 + public const int popupTheme = 2130903493; + + // aapt resource value: 0x7F0301C6 + public const int popupWindowStyle = 2130903494; + + // aapt resource value: 0x7F0301C7 + public const int prefixText = 2130903495; + + // aapt resource value: 0x7F0301C8 + public const int prefixTextAppearance = 2130903496; + + // aapt resource value: 0x7F0301C9 + public const int prefixTextColor = 2130903497; + + // aapt resource value: 0x7F0301CA + public const int preserveIconSpacing = 2130903498; + + // aapt resource value: 0x7F0301CB + public const int pressedTranslationZ = 2130903499; + + // aapt resource value: 0x7F0301CC + public const int progressBarPadding = 2130903500; + + // aapt resource value: 0x7F0301CD + public const int progressBarStyle = 2130903501; + + // aapt resource value: 0x7F0301CE + public const int queryBackground = 2130903502; + + // aapt resource value: 0x7F0301CF + public const int queryHint = 2130903503; + + // aapt resource value: 0x7F0301D0 + public const int radioButtonStyle = 2130903504; + + // aapt resource value: 0x7F0301D1 + public const int rangeFillColor = 2130903505; + + // aapt resource value: 0x7F0301D2 + public const int ratingBarStyle = 2130903506; + + // aapt resource value: 0x7F0301D3 + public const int ratingBarStyleIndicator = 2130903507; + + // aapt resource value: 0x7F0301D4 + public const int ratingBarStyleSmall = 2130903508; + + // aapt resource value: 0x7F0301D5 + public const int recyclerViewStyle = 2130903509; + + // aapt resource value: 0x7F0301D6 + public const int reverseLayout = 2130903510; + + // aapt resource value: 0x7F0301D7 + public const int rippleColor = 2130903511; + + // aapt resource value: 0x7F0301D8 + public const int scrimAnimationDuration = 2130903512; + + // aapt resource value: 0x7F0301D9 + public const int scrimBackground = 2130903513; + + // aapt resource value: 0x7F0301DA + public const int scrimVisibleHeightTrigger = 2130903514; + + // aapt resource value: 0x7F0301DB + public const int scrollViewStyle = 2130903515; + + // aapt resource value: 0x7F0301DC + public const int searchHintIcon = 2130903516; + + // aapt resource value: 0x7F0301DD + public const int searchIcon = 2130903517; + + // aapt resource value: 0x7F0301DE + public const int searchViewStyle = 2130903518; + + // aapt resource value: 0x7F0301DF + public const int seekBarStyle = 2130903519; + + // aapt resource value: 0x7F0301E0 + public const int selectableItemBackground = 2130903520; + + // aapt resource value: 0x7F0301E1 + public const int selectableItemBackgroundBorderless = 2130903521; + + // aapt resource value: 0x7F0301E2 + public const int selectionRequired = 2130903522; + + // aapt resource value: 0x7F0301E3 + public const int shapeAppearance = 2130903523; + + // aapt resource value: 0x7F0301E4 + public const int shapeAppearanceLargeComponent = 2130903524; + + // aapt resource value: 0x7F0301E5 + public const int shapeAppearanceMediumComponent = 2130903525; + + // aapt resource value: 0x7F0301E6 + public const int shapeAppearanceOverlay = 2130903526; + + // aapt resource value: 0x7F0301E7 + public const int shapeAppearanceSmallComponent = 2130903527; + + // aapt resource value: 0x7F0301E8 + public const int showAsAction = 2130903528; + + // aapt resource value: 0x7F0301E9 + public const int showDividers = 2130903529; + + // aapt resource value: 0x7F0301EA + public const int showMotionSpec = 2130903530; + + // aapt resource value: 0x7F0301EB + public const int showText = 2130903531; + + // aapt resource value: 0x7F0301EC + public const int showTitle = 2130903532; + + // aapt resource value: 0x7F0301ED + public const int shrinkMotionSpec = 2130903533; + + // aapt resource value: 0x7F0301EE + public const int singleChoiceItemLayout = 2130903534; + + // aapt resource value: 0x7F0301EF + public const int singleLine = 2130903535; + + // aapt resource value: 0x7F0301F0 + public const int singleSelection = 2130903536; + + // aapt resource value: 0x7F0301F1 + public const int sliderStyle = 2130903537; + + // aapt resource value: 0x7F0301F2 + public const int snackbarButtonStyle = 2130903538; + + // aapt resource value: 0x7F0301F3 + public const int snackbarStyle = 2130903539; + + // aapt resource value: 0x7F0301F4 + public const int snackbarTextViewStyle = 2130903540; + + // aapt resource value: 0x7F0301F5 + public const int spanCount = 2130903541; + + // aapt resource value: 0x7F0301F6 + public const int spinBars = 2130903542; + + // aapt resource value: 0x7F0301F7 + public const int spinnerDropDownItemStyle = 2130903543; + + // aapt resource value: 0x7F0301F8 + public const int spinnerStyle = 2130903544; + + // aapt resource value: 0x7F0301F9 + public const int splitTrack = 2130903545; + + // aapt resource value: 0x7F0301FA + public const int srcCompat = 2130903546; + + // aapt resource value: 0x7F0301FB + public const int stackFromEnd = 2130903547; + + // aapt resource value: 0x7F0301FC + public const int startIconCheckable = 2130903548; + + // aapt resource value: 0x7F0301FD + public const int startIconContentDescription = 2130903549; + + // aapt resource value: 0x7F0301FE + public const int startIconDrawable = 2130903550; + + // aapt resource value: 0x7F0301FF + public const int startIconTint = 2130903551; + + // aapt resource value: 0x7F030200 + public const int startIconTintMode = 2130903552; + + // aapt resource value: 0x7F030201 + public const int state_above_anchor = 2130903553; + + // aapt resource value: 0x7F030202 + public const int state_collapsed = 2130903554; + + // aapt resource value: 0x7F030203 + public const int state_collapsible = 2130903555; + + // aapt resource value: 0x7F030204 + public const int state_dragged = 2130903556; + + // aapt resource value: 0x7F030205 + public const int state_liftable = 2130903557; + + // aapt resource value: 0x7F030206 + public const int state_lifted = 2130903558; + + // aapt resource value: 0x7F030207 + public const int statusBarBackground = 2130903559; + + // aapt resource value: 0x7F030208 + public const int statusBarForeground = 2130903560; + + // aapt resource value: 0x7F030209 + public const int statusBarScrim = 2130903561; + + // aapt resource value: 0x7F03020A + public const int strokeColor = 2130903562; + + // aapt resource value: 0x7F03020B + public const int strokeWidth = 2130903563; + + // aapt resource value: 0x7F03020C + public const int subMenuArrow = 2130903564; + + // aapt resource value: 0x7F03020D + public const int submitBackground = 2130903565; + + // aapt resource value: 0x7F03020E + public const int subtitle = 2130903566; + + // aapt resource value: 0x7F03020F + public const int subtitleTextAppearance = 2130903567; + + // aapt resource value: 0x7F030210 + public const int subtitleTextColor = 2130903568; + + // aapt resource value: 0x7F030211 + public const int subtitleTextStyle = 2130903569; + + // aapt resource value: 0x7F030212 + public const int suffixText = 2130903570; + + // aapt resource value: 0x7F030213 + public const int suffixTextAppearance = 2130903571; + + // aapt resource value: 0x7F030214 + public const int suffixTextColor = 2130903572; + + // aapt resource value: 0x7F030215 + public const int suggestionRowLayout = 2130903573; + + // aapt resource value: 0x7F030216 + public const int swipeRefreshLayoutProgressSpinnerBackgroundColor = 2130903574; + + // aapt resource value: 0x7F030217 + public const int switchMinWidth = 2130903575; + + // aapt resource value: 0x7F030218 + public const int switchPadding = 2130903576; + + // aapt resource value: 0x7F030219 + public const int switchStyle = 2130903577; + + // aapt resource value: 0x7F03021A + public const int switchTextAppearance = 2130903578; + + // aapt resource value: 0x7F03021B + public const int tabBackground = 2130903579; + + // aapt resource value: 0x7F03021C + public const int tabContentStart = 2130903580; + + // aapt resource value: 0x7F03021D + public const int tabGravity = 2130903581; + + // aapt resource value: 0x7F03021E + public const int tabIconTint = 2130903582; + + // aapt resource value: 0x7F03021F + public const int tabIconTintMode = 2130903583; + + // aapt resource value: 0x7F030220 + public const int tabIndicator = 2130903584; + + // aapt resource value: 0x7F030221 + public const int tabIndicatorAnimationDuration = 2130903585; + + // aapt resource value: 0x7F030222 + public const int tabIndicatorColor = 2130903586; + + // aapt resource value: 0x7F030223 + public const int tabIndicatorFullWidth = 2130903587; + + // aapt resource value: 0x7F030224 + public const int tabIndicatorGravity = 2130903588; + + // aapt resource value: 0x7F030225 + public const int tabIndicatorHeight = 2130903589; + + // aapt resource value: 0x7F030226 + public const int tabInlineLabel = 2130903590; + + // aapt resource value: 0x7F030227 + public const int tabMaxWidth = 2130903591; + + // aapt resource value: 0x7F030228 + public const int tabMinWidth = 2130903592; + + // aapt resource value: 0x7F030229 + public const int tabMode = 2130903593; + + // aapt resource value: 0x7F03022A + public const int tabPadding = 2130903594; + + // aapt resource value: 0x7F03022B + public const int tabPaddingBottom = 2130903595; + + // aapt resource value: 0x7F03022C + public const int tabPaddingEnd = 2130903596; + + // aapt resource value: 0x7F03022D + public const int tabPaddingStart = 2130903597; + + // aapt resource value: 0x7F03022E + public const int tabPaddingTop = 2130903598; + + // aapt resource value: 0x7F03022F + public const int tabRippleColor = 2130903599; + + // aapt resource value: 0x7F030230 + public const int tabSelectedTextColor = 2130903600; + + // aapt resource value: 0x7F030231 + public const int tabStyle = 2130903601; + + // aapt resource value: 0x7F030232 + public const int tabTextAppearance = 2130903602; + + // aapt resource value: 0x7F030233 + public const int tabTextColor = 2130903603; + + // aapt resource value: 0x7F030234 + public const int tabUnboundedRipple = 2130903604; + + // aapt resource value: 0x7F030235 + public const int textAllCaps = 2130903605; + + // aapt resource value: 0x7F030236 + public const int textAppearanceBody1 = 2130903606; + + // aapt resource value: 0x7F030237 + public const int textAppearanceBody2 = 2130903607; + + // aapt resource value: 0x7F030238 + public const int textAppearanceButton = 2130903608; + + // aapt resource value: 0x7F030239 + public const int textAppearanceCaption = 2130903609; + + // aapt resource value: 0x7F03023A + public const int textAppearanceHeadline1 = 2130903610; + + // aapt resource value: 0x7F03023B + public const int textAppearanceHeadline2 = 2130903611; + + // aapt resource value: 0x7F03023C + public const int textAppearanceHeadline3 = 2130903612; + + // aapt resource value: 0x7F03023D + public const int textAppearanceHeadline4 = 2130903613; + + // aapt resource value: 0x7F03023E + public const int textAppearanceHeadline5 = 2130903614; + + // aapt resource value: 0x7F03023F + public const int textAppearanceHeadline6 = 2130903615; + + // aapt resource value: 0x7F030240 + public const int textAppearanceLargePopupMenu = 2130903616; + + // aapt resource value: 0x7F030241 + public const int textAppearanceLineHeightEnabled = 2130903617; + + // aapt resource value: 0x7F030242 + public const int textAppearanceListItem = 2130903618; + + // aapt resource value: 0x7F030243 + public const int textAppearanceListItemSecondary = 2130903619; + + // aapt resource value: 0x7F030244 + public const int textAppearanceListItemSmall = 2130903620; + + // aapt resource value: 0x7F030245 + public const int textAppearanceOverline = 2130903621; + + // aapt resource value: 0x7F030246 + public const int textAppearancePopupMenuHeader = 2130903622; + + // aapt resource value: 0x7F030247 + public const int textAppearanceSearchResultSubtitle = 2130903623; + + // aapt resource value: 0x7F030248 + public const int textAppearanceSearchResultTitle = 2130903624; + + // aapt resource value: 0x7F030249 + public const int textAppearanceSmallPopupMenu = 2130903625; + + // aapt resource value: 0x7F03024A + public const int textAppearanceSubtitle1 = 2130903626; + + // aapt resource value: 0x7F03024B + public const int textAppearanceSubtitle2 = 2130903627; + + // aapt resource value: 0x7F03024C + public const int textColorAlertDialogListItem = 2130903628; + + // aapt resource value: 0x7F03024D + public const int textColorSearchUrl = 2130903629; + + // aapt resource value: 0x7F03024E + public const int textEndPadding = 2130903630; + + // aapt resource value: 0x7F03024F + public const int textInputLayoutFocusedRectEnabled = 2130903631; + + // aapt resource value: 0x7F030250 + public const int textInputStyle = 2130903632; + + // aapt resource value: 0x7F030251 + public const int textLocale = 2130903633; + + // aapt resource value: 0x7F030252 + public const int textStartPadding = 2130903634; + + // aapt resource value: 0x7F030253 + public const int theme = 2130903635; + + // aapt resource value: 0x7F030254 + public const int themeLineHeight = 2130903636; + + // aapt resource value: 0x7F030255 + public const int thickness = 2130903637; + + // aapt resource value: 0x7F030256 + public const int thumbColor = 2130903638; + + // aapt resource value: 0x7F030257 + public const int thumbElevation = 2130903639; + + // aapt resource value: 0x7F030258 + public const int thumbRadius = 2130903640; + + // aapt resource value: 0x7F030259 + public const int thumbTextPadding = 2130903641; + + // aapt resource value: 0x7F03025A + public const int thumbTint = 2130903642; + + // aapt resource value: 0x7F03025B + public const int thumbTintMode = 2130903643; + + // aapt resource value: 0x7F03025C + public const int tickColor = 2130903644; + + // aapt resource value: 0x7F03025D + public const int tickColorActive = 2130903645; + + // aapt resource value: 0x7F03025E + public const int tickColorInactive = 2130903646; + + // aapt resource value: 0x7F03025F + public const int tickMark = 2130903647; + + // aapt resource value: 0x7F030260 + public const int tickMarkTint = 2130903648; + + // aapt resource value: 0x7F030261 + public const int tickMarkTintMode = 2130903649; + + // aapt resource value: 0x7F030262 + public const int tint = 2130903650; + + // aapt resource value: 0x7F030263 + public const int tintMode = 2130903651; + + // aapt resource value: 0x7F030264 + public const int title = 2130903652; + + // aapt resource value: 0x7F030265 + public const int titleEnabled = 2130903653; + + // aapt resource value: 0x7F030266 + public const int titleMargin = 2130903654; + + // aapt resource value: 0x7F030267 + public const int titleMarginBottom = 2130903655; + + // aapt resource value: 0x7F030268 + public const int titleMarginEnd = 2130903656; + + // aapt resource value: 0x7F03026B + public const int titleMargins = 2130903659; + + // aapt resource value: 0x7F030269 + public const int titleMarginStart = 2130903657; + + // aapt resource value: 0x7F03026A + public const int titleMarginTop = 2130903658; + + // aapt resource value: 0x7F03026C + public const int titleTextAppearance = 2130903660; + + // aapt resource value: 0x7F03026D + public const int titleTextColor = 2130903661; + + // aapt resource value: 0x7F03026E + public const int titleTextStyle = 2130903662; + + // aapt resource value: 0x7F03026F + public const int toolbarId = 2130903663; + + // aapt resource value: 0x7F030270 + public const int toolbarNavigationButtonStyle = 2130903664; + + // aapt resource value: 0x7F030271 + public const int toolbarStyle = 2130903665; + + // aapt resource value: 0x7F030272 + public const int tooltipForegroundColor = 2130903666; + + // aapt resource value: 0x7F030273 + public const int tooltipFrameBackground = 2130903667; + + // aapt resource value: 0x7F030274 + public const int tooltipStyle = 2130903668; + + // aapt resource value: 0x7F030275 + public const int tooltipText = 2130903669; + + // aapt resource value: 0x7F030276 + public const int track = 2130903670; + + // aapt resource value: 0x7F030277 + public const int trackColor = 2130903671; + + // aapt resource value: 0x7F030278 + public const int trackColorActive = 2130903672; + + // aapt resource value: 0x7F030279 + public const int trackColorInactive = 2130903673; + + // aapt resource value: 0x7F03027A + public const int trackHeight = 2130903674; + + // aapt resource value: 0x7F03027B + public const int trackTint = 2130903675; + + // aapt resource value: 0x7F03027C + public const int trackTintMode = 2130903676; + + // aapt resource value: 0x7F03027D + public const int transitionShapeAppearance = 2130903677; + + // aapt resource value: 0x7F03027E + public const int ttcIndex = 2130903678; + + // aapt resource value: 0x7F03027F + public const int useCompatPadding = 2130903679; + + // aapt resource value: 0x7F030280 + public const int useMaterialThemeColors = 2130903680; + + // aapt resource value: 0x7F030281 + public const int values = 2130903681; + + // aapt resource value: 0x7F030282 + public const int verticalOffset = 2130903682; + + // aapt resource value: 0x7F030283 + public const int viewInflaterClass = 2130903683; + + // aapt resource value: 0x7F030284 + public const int voiceIcon = 2130903684; + + // aapt resource value: 0x7F030285 + public const int windowActionBar = 2130903685; + + // aapt resource value: 0x7F030286 + public const int windowActionBarOverlay = 2130903686; + + // aapt resource value: 0x7F030287 + public const int windowActionModeOverlay = 2130903687; + + // aapt resource value: 0x7F030288 + public const int windowFixedHeightMajor = 2130903688; + + // aapt resource value: 0x7F030289 + public const int windowFixedHeightMinor = 2130903689; + + // aapt resource value: 0x7F03028A + public const int windowFixedWidthMajor = 2130903690; + + // aapt resource value: 0x7F03028B + public const int windowFixedWidthMinor = 2130903691; + + // aapt resource value: 0x7F03028C + public const int windowMinWidthMajor = 2130903692; + + // aapt resource value: 0x7F03028D + public const int windowMinWidthMinor = 2130903693; + + // aapt resource value: 0x7F03028E + public const int windowNoTitle = 2130903694; + + // aapt resource value: 0x7F03028F + public const int yearSelectedStyle = 2130903695; + + // aapt resource value: 0x7F030290 + public const int yearStyle = 2130903696; + + // aapt resource value: 0x7F030291 + public const int yearTodayStyle = 2130903697; + + static Attribute() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Attribute() + { + } + } + + public partial class Boolean + { + + // aapt resource value: 0x7F040000 + public const int abc_action_bar_embed_tabs = 2130968576; + + // aapt resource value: 0x7F040001 + public const int abc_allow_stacked_button_bar = 2130968577; + + // aapt resource value: 0x7F040002 + public const int abc_config_actionMenuItemAllCaps = 2130968578; + + // aapt resource value: 0x7F040003 + public const int mtrl_btn_textappearance_all_caps = 2130968579; + + static Boolean() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Boolean() + { + } + } + + public partial class Color + { + + // aapt resource value: 0x7F050000 + public const int abc_background_cache_hint_selector_material_dark = 2131034112; + + // aapt resource value: 0x7F050001 + public const int abc_background_cache_hint_selector_material_light = 2131034113; + + // aapt resource value: 0x7F050002 + public const int abc_btn_colored_borderless_text_material = 2131034114; + + // aapt resource value: 0x7F050003 + public const int abc_btn_colored_text_material = 2131034115; + + // aapt resource value: 0x7F050004 + public const int abc_color_highlight_material = 2131034116; + + // aapt resource value: 0x7F050005 + public const int abc_decor_view_status_guard = 2131034117; + + // aapt resource value: 0x7F050006 + public const int abc_decor_view_status_guard_light = 2131034118; + + // aapt resource value: 0x7F050007 + public const int abc_hint_foreground_material_dark = 2131034119; + + // aapt resource value: 0x7F050008 + public const int abc_hint_foreground_material_light = 2131034120; + + // aapt resource value: 0x7F050009 + public const int abc_primary_text_disable_only_material_dark = 2131034121; + + // aapt resource value: 0x7F05000A + public const int abc_primary_text_disable_only_material_light = 2131034122; + + // aapt resource value: 0x7F05000B + public const int abc_primary_text_material_dark = 2131034123; + + // aapt resource value: 0x7F05000C + public const int abc_primary_text_material_light = 2131034124; + + // aapt resource value: 0x7F05000D + public const int abc_search_url_text = 2131034125; + + // aapt resource value: 0x7F05000E + public const int abc_search_url_text_normal = 2131034126; + + // aapt resource value: 0x7F05000F + public const int abc_search_url_text_pressed = 2131034127; + + // aapt resource value: 0x7F050010 + public const int abc_search_url_text_selected = 2131034128; + + // aapt resource value: 0x7F050011 + public const int abc_secondary_text_material_dark = 2131034129; + + // aapt resource value: 0x7F050012 + public const int abc_secondary_text_material_light = 2131034130; + + // aapt resource value: 0x7F050013 + public const int abc_tint_btn_checkable = 2131034131; + + // aapt resource value: 0x7F050014 + public const int abc_tint_default = 2131034132; + + // aapt resource value: 0x7F050015 + public const int abc_tint_edittext = 2131034133; + + // aapt resource value: 0x7F050016 + public const int abc_tint_seek_thumb = 2131034134; + + // aapt resource value: 0x7F050017 + public const int abc_tint_spinner = 2131034135; + + // aapt resource value: 0x7F050018 + public const int abc_tint_switch_track = 2131034136; + + // aapt resource value: 0x7F050019 + public const int accent_material_dark = 2131034137; + + // aapt resource value: 0x7F05001A + public const int accent_material_light = 2131034138; + + // aapt resource value: 0x7F05001B + public const int androidx_core_ripple_material_light = 2131034139; + + // aapt resource value: 0x7F05001C + public const int androidx_core_secondary_text_default_material_light = 2131034140; + + // aapt resource value: 0x7F05001D + public const int background_floating_material_dark = 2131034141; + + // aapt resource value: 0x7F05001E + public const int background_floating_material_light = 2131034142; + + // aapt resource value: 0x7F05001F + public const int background_material_dark = 2131034143; + + // aapt resource value: 0x7F050020 + public const int background_material_light = 2131034144; + + // aapt resource value: 0x7F050021 + public const int bright_foreground_disabled_material_dark = 2131034145; + + // aapt resource value: 0x7F050022 + public const int bright_foreground_disabled_material_light = 2131034146; + + // aapt resource value: 0x7F050023 + public const int bright_foreground_inverse_material_dark = 2131034147; + + // aapt resource value: 0x7F050024 + public const int bright_foreground_inverse_material_light = 2131034148; + + // aapt resource value: 0x7F050025 + public const int bright_foreground_material_dark = 2131034149; + + // aapt resource value: 0x7F050026 + public const int bright_foreground_material_light = 2131034150; + + // aapt resource value: 0x7F050027 + public const int browser_actions_bg_grey = 2131034151; + + // aapt resource value: 0x7F050028 + public const int browser_actions_divider_color = 2131034152; + + // aapt resource value: 0x7F050029 + public const int browser_actions_text_color = 2131034153; + + // aapt resource value: 0x7F05002A + public const int browser_actions_title_color = 2131034154; + + // aapt resource value: 0x7F05002B + public const int button_material_dark = 2131034155; + + // aapt resource value: 0x7F05002C + public const int button_material_light = 2131034156; + + // aapt resource value: 0x7F05002D + public const int cardview_dark_background = 2131034157; + + // aapt resource value: 0x7F05002E + public const int cardview_light_background = 2131034158; + + // aapt resource value: 0x7F05002F + public const int cardview_shadow_end_color = 2131034159; + + // aapt resource value: 0x7F050030 + public const int cardview_shadow_start_color = 2131034160; + + // aapt resource value: 0x7F050031 + public const int checkbox_themeable_attribute_color = 2131034161; + + // aapt resource value: 0x7F050032 + public const int colorAccent = 2131034162; + + // aapt resource value: 0x7F050033 + public const int colorPrimary = 2131034163; + + // aapt resource value: 0x7F050034 + public const int colorPrimaryDark = 2131034164; + + // aapt resource value: 0x7F050035 + public const int design_bottom_navigation_shadow_color = 2131034165; + + // aapt resource value: 0x7F050036 + public const int design_box_stroke_color = 2131034166; + + // aapt resource value: 0x7F050037 + public const int design_dark_default_color_background = 2131034167; + + // aapt resource value: 0x7F050038 + public const int design_dark_default_color_error = 2131034168; + + // aapt resource value: 0x7F050039 + public const int design_dark_default_color_on_background = 2131034169; + + // aapt resource value: 0x7F05003A + public const int design_dark_default_color_on_error = 2131034170; + + // aapt resource value: 0x7F05003B + public const int design_dark_default_color_on_primary = 2131034171; + + // aapt resource value: 0x7F05003C + public const int design_dark_default_color_on_secondary = 2131034172; + + // aapt resource value: 0x7F05003D + public const int design_dark_default_color_on_surface = 2131034173; + + // aapt resource value: 0x7F05003E + public const int design_dark_default_color_primary = 2131034174; + + // aapt resource value: 0x7F05003F + public const int design_dark_default_color_primary_dark = 2131034175; + + // aapt resource value: 0x7F050040 + public const int design_dark_default_color_primary_variant = 2131034176; + + // aapt resource value: 0x7F050041 + public const int design_dark_default_color_secondary = 2131034177; + + // aapt resource value: 0x7F050042 + public const int design_dark_default_color_secondary_variant = 2131034178; + + // aapt resource value: 0x7F050043 + public const int design_dark_default_color_surface = 2131034179; + + // aapt resource value: 0x7F050044 + public const int design_default_color_background = 2131034180; + + // aapt resource value: 0x7F050045 + public const int design_default_color_error = 2131034181; + + // aapt resource value: 0x7F050046 + public const int design_default_color_on_background = 2131034182; + + // aapt resource value: 0x7F050047 + public const int design_default_color_on_error = 2131034183; + + // aapt resource value: 0x7F050048 + public const int design_default_color_on_primary = 2131034184; + + // aapt resource value: 0x7F050049 + public const int design_default_color_on_secondary = 2131034185; + + // aapt resource value: 0x7F05004A + public const int design_default_color_on_surface = 2131034186; + + // aapt resource value: 0x7F05004B + public const int design_default_color_primary = 2131034187; + + // aapt resource value: 0x7F05004C + public const int design_default_color_primary_dark = 2131034188; + + // aapt resource value: 0x7F05004D + public const int design_default_color_primary_variant = 2131034189; + + // aapt resource value: 0x7F05004E + public const int design_default_color_secondary = 2131034190; + + // aapt resource value: 0x7F05004F + public const int design_default_color_secondary_variant = 2131034191; + + // aapt resource value: 0x7F050050 + public const int design_default_color_surface = 2131034192; + + // aapt resource value: 0x7F050051 + public const int design_error = 2131034193; + + // aapt resource value: 0x7F050052 + public const int design_fab_shadow_end_color = 2131034194; + + // aapt resource value: 0x7F050053 + public const int design_fab_shadow_mid_color = 2131034195; + + // aapt resource value: 0x7F050054 + public const int design_fab_shadow_start_color = 2131034196; + + // aapt resource value: 0x7F050055 + public const int design_fab_stroke_end_inner_color = 2131034197; + + // aapt resource value: 0x7F050056 + public const int design_fab_stroke_end_outer_color = 2131034198; + + // aapt resource value: 0x7F050057 + public const int design_fab_stroke_top_inner_color = 2131034199; + + // aapt resource value: 0x7F050058 + public const int design_fab_stroke_top_outer_color = 2131034200; + + // aapt resource value: 0x7F050059 + public const int design_icon_tint = 2131034201; + + // aapt resource value: 0x7F05005A + public const int design_snackbar_background_color = 2131034202; + + // aapt resource value: 0x7F05005B + public const int dim_foreground_disabled_material_dark = 2131034203; + + // aapt resource value: 0x7F05005C + public const int dim_foreground_disabled_material_light = 2131034204; + + // aapt resource value: 0x7F05005D + public const int dim_foreground_material_dark = 2131034205; + + // aapt resource value: 0x7F05005E + public const int dim_foreground_material_light = 2131034206; + + // aapt resource value: 0x7F05005F + public const int error_color_material_dark = 2131034207; + + // aapt resource value: 0x7F050060 + public const int error_color_material_light = 2131034208; + + // aapt resource value: 0x7F050061 + public const int foreground_material_dark = 2131034209; + + // aapt resource value: 0x7F050062 + public const int foreground_material_light = 2131034210; + + // aapt resource value: 0x7F050063 + public const int highlighted_text_material_dark = 2131034211; + + // aapt resource value: 0x7F050064 + public const int highlighted_text_material_light = 2131034212; + + // aapt resource value: 0x7F050065 + public const int launcher_background = 2131034213; + + // aapt resource value: 0x7F050066 + public const int material_blue_grey_800 = 2131034214; + + // aapt resource value: 0x7F050067 + public const int material_blue_grey_900 = 2131034215; + + // aapt resource value: 0x7F050068 + public const int material_blue_grey_950 = 2131034216; + + // aapt resource value: 0x7F050069 + public const int material_deep_teal_200 = 2131034217; + + // aapt resource value: 0x7F05006A + public const int material_deep_teal_500 = 2131034218; + + // aapt resource value: 0x7F05006B + public const int material_grey_100 = 2131034219; + + // aapt resource value: 0x7F05006C + public const int material_grey_300 = 2131034220; + + // aapt resource value: 0x7F05006D + public const int material_grey_50 = 2131034221; + + // aapt resource value: 0x7F05006E + public const int material_grey_600 = 2131034222; + + // aapt resource value: 0x7F05006F + public const int material_grey_800 = 2131034223; + + // aapt resource value: 0x7F050070 + public const int material_grey_850 = 2131034224; + + // aapt resource value: 0x7F050071 + public const int material_grey_900 = 2131034225; + + // aapt resource value: 0x7F050072 + public const int material_on_background_disabled = 2131034226; + + // aapt resource value: 0x7F050073 + public const int material_on_background_emphasis_high_type = 2131034227; + + // aapt resource value: 0x7F050074 + public const int material_on_background_emphasis_medium = 2131034228; + + // aapt resource value: 0x7F050075 + public const int material_on_primary_disabled = 2131034229; + + // aapt resource value: 0x7F050076 + public const int material_on_primary_emphasis_high_type = 2131034230; + + // aapt resource value: 0x7F050077 + public const int material_on_primary_emphasis_medium = 2131034231; + + // aapt resource value: 0x7F050078 + public const int material_on_surface_disabled = 2131034232; + + // aapt resource value: 0x7F050079 + public const int material_on_surface_emphasis_high_type = 2131034233; + + // aapt resource value: 0x7F05007A + public const int material_on_surface_emphasis_medium = 2131034234; + + // aapt resource value: 0x7F05007B + public const int material_on_surface_stroke = 2131034235; + + // aapt resource value: 0x7F05007C + public const int material_slider_active_tick_marks_color = 2131034236; + + // aapt resource value: 0x7F05007D + public const int material_slider_active_track_color = 2131034237; + + // aapt resource value: 0x7F05007E + public const int material_slider_halo_color = 2131034238; + + // aapt resource value: 0x7F05007F + public const int material_slider_inactive_tick_marks_color = 2131034239; + + // aapt resource value: 0x7F050080 + public const int material_slider_inactive_track_color = 2131034240; + + // aapt resource value: 0x7F050081 + public const int material_slider_thumb_color = 2131034241; + + // aapt resource value: 0x7F050082 + public const int mtrl_bottom_nav_colored_item_tint = 2131034242; + + // aapt resource value: 0x7F050083 + public const int mtrl_bottom_nav_colored_ripple_color = 2131034243; + + // aapt resource value: 0x7F050084 + public const int mtrl_bottom_nav_item_tint = 2131034244; + + // aapt resource value: 0x7F050085 + public const int mtrl_bottom_nav_ripple_color = 2131034245; + + // aapt resource value: 0x7F050086 + public const int mtrl_btn_bg_color_selector = 2131034246; + + // aapt resource value: 0x7F050087 + public const int mtrl_btn_ripple_color = 2131034247; + + // aapt resource value: 0x7F050088 + public const int mtrl_btn_stroke_color_selector = 2131034248; + + // aapt resource value: 0x7F050089 + public const int mtrl_btn_text_btn_bg_color_selector = 2131034249; + + // aapt resource value: 0x7F05008A + public const int mtrl_btn_text_btn_ripple_color = 2131034250; + + // aapt resource value: 0x7F05008B + public const int mtrl_btn_text_color_disabled = 2131034251; + + // aapt resource value: 0x7F05008C + public const int mtrl_btn_text_color_selector = 2131034252; + + // aapt resource value: 0x7F05008D + public const int mtrl_btn_transparent_bg_color = 2131034253; + + // aapt resource value: 0x7F05008E + public const int mtrl_calendar_item_stroke_color = 2131034254; + + // aapt resource value: 0x7F05008F + public const int mtrl_calendar_selected_range = 2131034255; + + // aapt resource value: 0x7F050090 + public const int mtrl_card_view_foreground = 2131034256; + + // aapt resource value: 0x7F050091 + public const int mtrl_card_view_ripple = 2131034257; + + // aapt resource value: 0x7F050092 + public const int mtrl_chip_background_color = 2131034258; + + // aapt resource value: 0x7F050093 + public const int mtrl_chip_close_icon_tint = 2131034259; + + // aapt resource value: 0x7F050094 + public const int mtrl_chip_ripple_color = 2131034260; + + // aapt resource value: 0x7F050095 + public const int mtrl_chip_surface_color = 2131034261; + + // aapt resource value: 0x7F050096 + public const int mtrl_chip_text_color = 2131034262; + + // aapt resource value: 0x7F050097 + public const int mtrl_choice_chip_background_color = 2131034263; + + // aapt resource value: 0x7F050098 + public const int mtrl_choice_chip_ripple_color = 2131034264; + + // aapt resource value: 0x7F050099 + public const int mtrl_choice_chip_text_color = 2131034265; + + // aapt resource value: 0x7F05009A + public const int mtrl_error = 2131034266; + + // aapt resource value: 0x7F05009B + public const int mtrl_fab_bg_color_selector = 2131034267; + + // aapt resource value: 0x7F05009C + public const int mtrl_fab_icon_text_color_selector = 2131034268; + + // aapt resource value: 0x7F05009D + public const int mtrl_fab_ripple_color = 2131034269; + + // aapt resource value: 0x7F05009E + public const int mtrl_filled_background_color = 2131034270; + + // aapt resource value: 0x7F05009F + public const int mtrl_filled_icon_tint = 2131034271; + + // aapt resource value: 0x7F0500A0 + public const int mtrl_filled_stroke_color = 2131034272; + + // aapt resource value: 0x7F0500A1 + public const int mtrl_indicator_text_color = 2131034273; + + // aapt resource value: 0x7F0500A2 + public const int mtrl_navigation_item_background_color = 2131034274; + + // aapt resource value: 0x7F0500A3 + public const int mtrl_navigation_item_icon_tint = 2131034275; + + // aapt resource value: 0x7F0500A4 + public const int mtrl_navigation_item_text_color = 2131034276; + + // aapt resource value: 0x7F0500A5 + public const int mtrl_on_primary_text_btn_text_color_selector = 2131034277; + + // aapt resource value: 0x7F0500A6 + public const int mtrl_outlined_icon_tint = 2131034278; + + // aapt resource value: 0x7F0500A7 + public const int mtrl_outlined_stroke_color = 2131034279; + + // aapt resource value: 0x7F0500A8 + public const int mtrl_popupmenu_overlay_color = 2131034280; + + // aapt resource value: 0x7F0500A9 + public const int mtrl_scrim_color = 2131034281; + + // aapt resource value: 0x7F0500AA + public const int mtrl_tabs_colored_ripple_color = 2131034282; + + // aapt resource value: 0x7F0500AB + public const int mtrl_tabs_icon_color_selector = 2131034283; + + // aapt resource value: 0x7F0500AC + public const int mtrl_tabs_icon_color_selector_colored = 2131034284; + + // aapt resource value: 0x7F0500AD + public const int mtrl_tabs_legacy_text_color_selector = 2131034285; + + // aapt resource value: 0x7F0500AE + public const int mtrl_tabs_ripple_color = 2131034286; + + // aapt resource value: 0x7F0500B0 + public const int mtrl_textinput_default_box_stroke_color = 2131034288; + + // aapt resource value: 0x7F0500B1 + public const int mtrl_textinput_disabled_color = 2131034289; + + // aapt resource value: 0x7F0500B2 + public const int mtrl_textinput_filled_box_default_background_color = 2131034290; + + // aapt resource value: 0x7F0500B3 + public const int mtrl_textinput_focused_box_stroke_color = 2131034291; + + // aapt resource value: 0x7F0500B4 + public const int mtrl_textinput_hovered_box_stroke_color = 2131034292; + + // aapt resource value: 0x7F0500AF + public const int mtrl_text_btn_text_color_selector = 2131034287; + + // aapt resource value: 0x7F0500B5 + public const int notification_action_color_filter = 2131034293; + + // aapt resource value: 0x7F0500B6 + public const int notification_icon_bg_color = 2131034294; + + // aapt resource value: 0x7F0500B7 + public const int notification_material_background_media_default_color = 2131034295; + + // aapt resource value: 0x7F0500B8 + public const int primary_dark_material_dark = 2131034296; + + // aapt resource value: 0x7F0500B9 + public const int primary_dark_material_light = 2131034297; + + // aapt resource value: 0x7F0500BA + public const int primary_material_dark = 2131034298; + + // aapt resource value: 0x7F0500BB + public const int primary_material_light = 2131034299; + + // aapt resource value: 0x7F0500BC + public const int primary_text_default_material_dark = 2131034300; + + // aapt resource value: 0x7F0500BD + public const int primary_text_default_material_light = 2131034301; + + // aapt resource value: 0x7F0500BE + public const int primary_text_disabled_material_dark = 2131034302; + + // aapt resource value: 0x7F0500BF + public const int primary_text_disabled_material_light = 2131034303; + + // aapt resource value: 0x7F0500C0 + public const int radiobutton_themeable_attribute_color = 2131034304; + + // aapt resource value: 0x7F0500C1 + public const int ripple_material_dark = 2131034305; + + // aapt resource value: 0x7F0500C2 + public const int ripple_material_light = 2131034306; + + // aapt resource value: 0x7F0500C3 + public const int secondary_text_default_material_dark = 2131034307; + + // aapt resource value: 0x7F0500C4 + public const int secondary_text_default_material_light = 2131034308; + + // aapt resource value: 0x7F0500C5 + public const int secondary_text_disabled_material_dark = 2131034309; + + // aapt resource value: 0x7F0500C6 + public const int secondary_text_disabled_material_light = 2131034310; + + // aapt resource value: 0x7F0500C7 + public const int switch_thumb_disabled_material_dark = 2131034311; + + // aapt resource value: 0x7F0500C8 + public const int switch_thumb_disabled_material_light = 2131034312; + + // aapt resource value: 0x7F0500C9 + public const int switch_thumb_material_dark = 2131034313; + + // aapt resource value: 0x7F0500CA + public const int switch_thumb_material_light = 2131034314; + + // aapt resource value: 0x7F0500CB + public const int switch_thumb_normal_material_dark = 2131034315; + + // aapt resource value: 0x7F0500CC + public const int switch_thumb_normal_material_light = 2131034316; + + // aapt resource value: 0x7F0500CD + public const int test_mtrl_calendar_day = 2131034317; + + // aapt resource value: 0x7F0500CE + public const int test_mtrl_calendar_day_selected = 2131034318; + + // aapt resource value: 0x7F0500CF + public const int tooltip_background_dark = 2131034319; + + // aapt resource value: 0x7F0500D0 + public const int tooltip_background_light = 2131034320; + + static Color() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Color() + { + } + } + + public partial class Dimension + { + + // aapt resource value: 0x7F060000 + public const int abc_action_bar_content_inset_material = 2131099648; + + // aapt resource value: 0x7F060001 + public const int abc_action_bar_content_inset_with_nav = 2131099649; + + // aapt resource value: 0x7F060002 + public const int abc_action_bar_default_height_material = 2131099650; + + // aapt resource value: 0x7F060003 + public const int abc_action_bar_default_padding_end_material = 2131099651; + + // aapt resource value: 0x7F060004 + public const int abc_action_bar_default_padding_start_material = 2131099652; + + // aapt resource value: 0x7F060005 + public const int abc_action_bar_elevation_material = 2131099653; + + // aapt resource value: 0x7F060006 + public const int abc_action_bar_icon_vertical_padding_material = 2131099654; + + // aapt resource value: 0x7F060007 + public const int abc_action_bar_overflow_padding_end_material = 2131099655; + + // aapt resource value: 0x7F060008 + public const int abc_action_bar_overflow_padding_start_material = 2131099656; + + // aapt resource value: 0x7F060009 + public const int abc_action_bar_stacked_max_height = 2131099657; + + // aapt resource value: 0x7F06000A + public const int abc_action_bar_stacked_tab_max_width = 2131099658; + + // aapt resource value: 0x7F06000B + public const int abc_action_bar_subtitle_bottom_margin_material = 2131099659; + + // aapt resource value: 0x7F06000C + public const int abc_action_bar_subtitle_top_margin_material = 2131099660; + + // aapt resource value: 0x7F06000D + public const int abc_action_button_min_height_material = 2131099661; + + // aapt resource value: 0x7F06000E + public const int abc_action_button_min_width_material = 2131099662; + + // aapt resource value: 0x7F06000F + public const int abc_action_button_min_width_overflow_material = 2131099663; + + // aapt resource value: 0x7F060010 + public const int abc_alert_dialog_button_bar_height = 2131099664; + + // aapt resource value: 0x7F060011 + public const int abc_alert_dialog_button_dimen = 2131099665; + + // aapt resource value: 0x7F060012 + public const int abc_button_inset_horizontal_material = 2131099666; + + // aapt resource value: 0x7F060013 + public const int abc_button_inset_vertical_material = 2131099667; + + // aapt resource value: 0x7F060014 + public const int abc_button_padding_horizontal_material = 2131099668; + + // aapt resource value: 0x7F060015 + public const int abc_button_padding_vertical_material = 2131099669; + + // aapt resource value: 0x7F060016 + public const int abc_cascading_menus_min_smallest_width = 2131099670; + + // aapt resource value: 0x7F060017 + public const int abc_config_prefDialogWidth = 2131099671; + + // aapt resource value: 0x7F060018 + public const int abc_control_corner_material = 2131099672; + + // aapt resource value: 0x7F060019 + public const int abc_control_inset_material = 2131099673; + + // aapt resource value: 0x7F06001A + public const int abc_control_padding_material = 2131099674; + + // aapt resource value: 0x7F06001B + public const int abc_dialog_corner_radius_material = 2131099675; + + // aapt resource value: 0x7F06001C + public const int abc_dialog_fixed_height_major = 2131099676; + + // aapt resource value: 0x7F06001D + public const int abc_dialog_fixed_height_minor = 2131099677; + + // aapt resource value: 0x7F06001E + public const int abc_dialog_fixed_width_major = 2131099678; + + // aapt resource value: 0x7F06001F + public const int abc_dialog_fixed_width_minor = 2131099679; + + // aapt resource value: 0x7F060020 + public const int abc_dialog_list_padding_bottom_no_buttons = 2131099680; + + // aapt resource value: 0x7F060021 + public const int abc_dialog_list_padding_top_no_title = 2131099681; + + // aapt resource value: 0x7F060022 + public const int abc_dialog_min_width_major = 2131099682; + + // aapt resource value: 0x7F060023 + public const int abc_dialog_min_width_minor = 2131099683; + + // aapt resource value: 0x7F060024 + public const int abc_dialog_padding_material = 2131099684; + + // aapt resource value: 0x7F060025 + public const int abc_dialog_padding_top_material = 2131099685; + + // aapt resource value: 0x7F060026 + public const int abc_dialog_title_divider_material = 2131099686; + + // aapt resource value: 0x7F060027 + public const int abc_disabled_alpha_material_dark = 2131099687; + + // aapt resource value: 0x7F060028 + public const int abc_disabled_alpha_material_light = 2131099688; + + // aapt resource value: 0x7F060029 + public const int abc_dropdownitem_icon_width = 2131099689; + + // aapt resource value: 0x7F06002A + public const int abc_dropdownitem_text_padding_left = 2131099690; + + // aapt resource value: 0x7F06002B + public const int abc_dropdownitem_text_padding_right = 2131099691; + + // aapt resource value: 0x7F06002C + public const int abc_edit_text_inset_bottom_material = 2131099692; + + // aapt resource value: 0x7F06002D + public const int abc_edit_text_inset_horizontal_material = 2131099693; + + // aapt resource value: 0x7F06002E + public const int abc_edit_text_inset_top_material = 2131099694; + + // aapt resource value: 0x7F06002F + public const int abc_floating_window_z = 2131099695; + + // aapt resource value: 0x7F060030 + public const int abc_list_item_height_large_material = 2131099696; + + // aapt resource value: 0x7F060031 + public const int abc_list_item_height_material = 2131099697; + + // aapt resource value: 0x7F060032 + public const int abc_list_item_height_small_material = 2131099698; + + // aapt resource value: 0x7F060033 + public const int abc_list_item_padding_horizontal_material = 2131099699; + + // aapt resource value: 0x7F060034 + public const int abc_panel_menu_list_width = 2131099700; + + // aapt resource value: 0x7F060035 + public const int abc_progress_bar_height_material = 2131099701; + + // aapt resource value: 0x7F060036 + public const int abc_search_view_preferred_height = 2131099702; + + // aapt resource value: 0x7F060037 + public const int abc_search_view_preferred_width = 2131099703; + + // aapt resource value: 0x7F060038 + public const int abc_seekbar_track_background_height_material = 2131099704; + + // aapt resource value: 0x7F060039 + public const int abc_seekbar_track_progress_height_material = 2131099705; + + // aapt resource value: 0x7F06003A + public const int abc_select_dialog_padding_start_material = 2131099706; + + // aapt resource value: 0x7F06003B + public const int abc_switch_padding = 2131099707; + + // aapt resource value: 0x7F06003C + public const int abc_text_size_body_1_material = 2131099708; + + // aapt resource value: 0x7F06003D + public const int abc_text_size_body_2_material = 2131099709; + + // aapt resource value: 0x7F06003E + public const int abc_text_size_button_material = 2131099710; + + // aapt resource value: 0x7F06003F + public const int abc_text_size_caption_material = 2131099711; + + // aapt resource value: 0x7F060040 + public const int abc_text_size_display_1_material = 2131099712; + + // aapt resource value: 0x7F060041 + public const int abc_text_size_display_2_material = 2131099713; + + // aapt resource value: 0x7F060042 + public const int abc_text_size_display_3_material = 2131099714; + + // aapt resource value: 0x7F060043 + public const int abc_text_size_display_4_material = 2131099715; + + // aapt resource value: 0x7F060044 + public const int abc_text_size_headline_material = 2131099716; + + // aapt resource value: 0x7F060045 + public const int abc_text_size_large_material = 2131099717; + + // aapt resource value: 0x7F060046 + public const int abc_text_size_medium_material = 2131099718; + + // aapt resource value: 0x7F060047 + public const int abc_text_size_menu_header_material = 2131099719; + + // aapt resource value: 0x7F060048 + public const int abc_text_size_menu_material = 2131099720; + + // aapt resource value: 0x7F060049 + public const int abc_text_size_small_material = 2131099721; + + // aapt resource value: 0x7F06004A + public const int abc_text_size_subhead_material = 2131099722; + + // aapt resource value: 0x7F06004B + public const int abc_text_size_subtitle_material_toolbar = 2131099723; + + // aapt resource value: 0x7F06004C + public const int abc_text_size_title_material = 2131099724; + + // aapt resource value: 0x7F06004D + public const int abc_text_size_title_material_toolbar = 2131099725; + + // aapt resource value: 0x7F06004E + public const int action_bar_size = 2131099726; + + // aapt resource value: 0x7F06004F + public const int appcompat_dialog_background_inset = 2131099727; + + // aapt resource value: 0x7F060050 + public const int browser_actions_context_menu_max_width = 2131099728; + + // aapt resource value: 0x7F060051 + public const int browser_actions_context_menu_min_padding = 2131099729; + + // aapt resource value: 0x7F060052 + public const int cardview_compat_inset_shadow = 2131099730; + + // aapt resource value: 0x7F060053 + public const int cardview_default_elevation = 2131099731; + + // aapt resource value: 0x7F060054 + public const int cardview_default_radius = 2131099732; + + // aapt resource value: 0x7F060055 + public const int compat_button_inset_horizontal_material = 2131099733; + + // aapt resource value: 0x7F060056 + public const int compat_button_inset_vertical_material = 2131099734; + + // aapt resource value: 0x7F060057 + public const int compat_button_padding_horizontal_material = 2131099735; + + // aapt resource value: 0x7F060058 + public const int compat_button_padding_vertical_material = 2131099736; + + // aapt resource value: 0x7F060059 + public const int compat_control_corner_material = 2131099737; + + // aapt resource value: 0x7F06005A + public const int compat_notification_large_icon_max_height = 2131099738; + + // aapt resource value: 0x7F06005B + public const int compat_notification_large_icon_max_width = 2131099739; + + // aapt resource value: 0x7F06005D + public const int default_dimension = 2131099741; + + // aapt resource value: 0x7F06005C + public const int def_drawer_elevation = 2131099740; + + // aapt resource value: 0x7F06005E + public const int design_appbar_elevation = 2131099742; + + // aapt resource value: 0x7F06005F + public const int design_bottom_navigation_active_item_max_width = 2131099743; + + // aapt resource value: 0x7F060060 + public const int design_bottom_navigation_active_item_min_width = 2131099744; + + // aapt resource value: 0x7F060061 + public const int design_bottom_navigation_active_text_size = 2131099745; + + // aapt resource value: 0x7F060062 + public const int design_bottom_navigation_elevation = 2131099746; + + // aapt resource value: 0x7F060063 + public const int design_bottom_navigation_height = 2131099747; + + // aapt resource value: 0x7F060064 + public const int design_bottom_navigation_icon_size = 2131099748; + + // aapt resource value: 0x7F060065 + public const int design_bottom_navigation_item_max_width = 2131099749; + + // aapt resource value: 0x7F060066 + public const int design_bottom_navigation_item_min_width = 2131099750; + + // aapt resource value: 0x7F060067 + public const int design_bottom_navigation_margin = 2131099751; + + // aapt resource value: 0x7F060068 + public const int design_bottom_navigation_shadow_height = 2131099752; + + // aapt resource value: 0x7F060069 + public const int design_bottom_navigation_text_size = 2131099753; + + // aapt resource value: 0x7F06006A + public const int design_bottom_sheet_elevation = 2131099754; + + // aapt resource value: 0x7F06006B + public const int design_bottom_sheet_modal_elevation = 2131099755; + + // aapt resource value: 0x7F06006C + public const int design_bottom_sheet_peek_height_min = 2131099756; + + // aapt resource value: 0x7F06006D + public const int design_fab_border_width = 2131099757; + + // aapt resource value: 0x7F06006E + public const int design_fab_elevation = 2131099758; + + // aapt resource value: 0x7F06006F + public const int design_fab_image_size = 2131099759; + + // aapt resource value: 0x7F060070 + public const int design_fab_size_mini = 2131099760; + + // aapt resource value: 0x7F060071 + public const int design_fab_size_normal = 2131099761; + + // aapt resource value: 0x7F060072 + public const int design_fab_translation_z_hovered_focused = 2131099762; + + // aapt resource value: 0x7F060073 + public const int design_fab_translation_z_pressed = 2131099763; + + // aapt resource value: 0x7F060074 + public const int design_navigation_elevation = 2131099764; + + // aapt resource value: 0x7F060075 + public const int design_navigation_icon_padding = 2131099765; + + // aapt resource value: 0x7F060076 + public const int design_navigation_icon_size = 2131099766; + + // aapt resource value: 0x7F060077 + public const int design_navigation_item_horizontal_padding = 2131099767; + + // aapt resource value: 0x7F060078 + public const int design_navigation_item_icon_padding = 2131099768; + + // aapt resource value: 0x7F060079 + public const int design_navigation_max_width = 2131099769; + + // aapt resource value: 0x7F06007A + public const int design_navigation_padding_bottom = 2131099770; + + // aapt resource value: 0x7F06007B + public const int design_navigation_separator_vertical_padding = 2131099771; + + // aapt resource value: 0x7F06007C + public const int design_snackbar_action_inline_max_width = 2131099772; + + // aapt resource value: 0x7F06007D + public const int design_snackbar_action_text_color_alpha = 2131099773; + + // aapt resource value: 0x7F06007E + public const int design_snackbar_background_corner_radius = 2131099774; + + // aapt resource value: 0x7F06007F + public const int design_snackbar_elevation = 2131099775; + + // aapt resource value: 0x7F060080 + public const int design_snackbar_extra_spacing_horizontal = 2131099776; + + // aapt resource value: 0x7F060081 + public const int design_snackbar_max_width = 2131099777; + + // aapt resource value: 0x7F060082 + public const int design_snackbar_min_width = 2131099778; + + // aapt resource value: 0x7F060083 + public const int design_snackbar_padding_horizontal = 2131099779; + + // aapt resource value: 0x7F060084 + public const int design_snackbar_padding_vertical = 2131099780; + + // aapt resource value: 0x7F060085 + public const int design_snackbar_padding_vertical_2lines = 2131099781; + + // aapt resource value: 0x7F060086 + public const int design_snackbar_text_size = 2131099782; + + // aapt resource value: 0x7F060087 + public const int design_tab_max_width = 2131099783; + + // aapt resource value: 0x7F060088 + public const int design_tab_scrollable_min_width = 2131099784; + + // aapt resource value: 0x7F060089 + public const int design_tab_text_size = 2131099785; + + // aapt resource value: 0x7F06008A + public const int design_tab_text_size_2line = 2131099786; + + // aapt resource value: 0x7F06008B + public const int design_textinput_caption_translate_y = 2131099787; + + // aapt resource value: 0x7F06008C + public const int disabled_alpha_material_dark = 2131099788; + + // aapt resource value: 0x7F06008D + public const int disabled_alpha_material_light = 2131099789; + + // aapt resource value: 0x7F06008E + public const int fastscroll_default_thickness = 2131099790; + + // aapt resource value: 0x7F06008F + public const int fastscroll_margin = 2131099791; + + // aapt resource value: 0x7F060090 + public const int fastscroll_minimum_range = 2131099792; + + // aapt resource value: 0x7F060091 + public const int highlight_alpha_material_colored = 2131099793; + + // aapt resource value: 0x7F060092 + public const int highlight_alpha_material_dark = 2131099794; + + // aapt resource value: 0x7F060093 + public const int highlight_alpha_material_light = 2131099795; + + // aapt resource value: 0x7F060094 + public const int hint_alpha_material_dark = 2131099796; + + // aapt resource value: 0x7F060095 + public const int hint_alpha_material_light = 2131099797; + + // aapt resource value: 0x7F060096 + public const int hint_pressed_alpha_material_dark = 2131099798; + + // aapt resource value: 0x7F060097 + public const int hint_pressed_alpha_material_light = 2131099799; + + // aapt resource value: 0x7F060098 + public const int item_touch_helper_max_drag_scroll_per_frame = 2131099800; + + // aapt resource value: 0x7F060099 + public const int item_touch_helper_swipe_escape_max_velocity = 2131099801; + + // aapt resource value: 0x7F06009A + public const int item_touch_helper_swipe_escape_velocity = 2131099802; + + // aapt resource value: 0x7F06009B + public const int material_emphasis_disabled = 2131099803; + + // aapt resource value: 0x7F06009C + public const int material_emphasis_high_type = 2131099804; + + // aapt resource value: 0x7F06009D + public const int material_emphasis_medium = 2131099805; + + // aapt resource value: 0x7F06009E + public const int material_text_view_test_line_height = 2131099806; + + // aapt resource value: 0x7F06009F + public const int material_text_view_test_line_height_override = 2131099807; + + // aapt resource value: 0x7F0600A0 + public const int mtrl_alert_dialog_background_inset_bottom = 2131099808; + + // aapt resource value: 0x7F0600A1 + public const int mtrl_alert_dialog_background_inset_end = 2131099809; + + // aapt resource value: 0x7F0600A2 + public const int mtrl_alert_dialog_background_inset_start = 2131099810; + + // aapt resource value: 0x7F0600A3 + public const int mtrl_alert_dialog_background_inset_top = 2131099811; + + // aapt resource value: 0x7F0600A4 + public const int mtrl_alert_dialog_picker_background_inset = 2131099812; + + // aapt resource value: 0x7F0600A5 + public const int mtrl_badge_horizontal_edge_offset = 2131099813; + + // aapt resource value: 0x7F0600A6 + public const int mtrl_badge_long_text_horizontal_padding = 2131099814; + + // aapt resource value: 0x7F0600A7 + public const int mtrl_badge_radius = 2131099815; + + // aapt resource value: 0x7F0600A8 + public const int mtrl_badge_text_horizontal_edge_offset = 2131099816; + + // aapt resource value: 0x7F0600A9 + public const int mtrl_badge_text_size = 2131099817; + + // aapt resource value: 0x7F0600AA + public const int mtrl_badge_with_text_radius = 2131099818; + + // aapt resource value: 0x7F0600AB + public const int mtrl_bottomappbar_fabOffsetEndMode = 2131099819; + + // aapt resource value: 0x7F0600AC + public const int mtrl_bottomappbar_fab_bottom_margin = 2131099820; + + // aapt resource value: 0x7F0600AD + public const int mtrl_bottomappbar_fab_cradle_margin = 2131099821; + + // aapt resource value: 0x7F0600AE + public const int mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 2131099822; + + // aapt resource value: 0x7F0600AF + public const int mtrl_bottomappbar_fab_cradle_vertical_offset = 2131099823; + + // aapt resource value: 0x7F0600B0 + public const int mtrl_bottomappbar_height = 2131099824; + + // aapt resource value: 0x7F0600B1 + public const int mtrl_btn_corner_radius = 2131099825; + + // aapt resource value: 0x7F0600B2 + public const int mtrl_btn_dialog_btn_min_width = 2131099826; + + // aapt resource value: 0x7F0600B3 + public const int mtrl_btn_disabled_elevation = 2131099827; + + // aapt resource value: 0x7F0600B4 + public const int mtrl_btn_disabled_z = 2131099828; + + // aapt resource value: 0x7F0600B5 + public const int mtrl_btn_elevation = 2131099829; + + // aapt resource value: 0x7F0600B6 + public const int mtrl_btn_focused_z = 2131099830; + + // aapt resource value: 0x7F0600B7 + public const int mtrl_btn_hovered_z = 2131099831; + + // aapt resource value: 0x7F0600B8 + public const int mtrl_btn_icon_btn_padding_left = 2131099832; + + // aapt resource value: 0x7F0600B9 + public const int mtrl_btn_icon_padding = 2131099833; + + // aapt resource value: 0x7F0600BA + public const int mtrl_btn_inset = 2131099834; + + // aapt resource value: 0x7F0600BB + public const int mtrl_btn_letter_spacing = 2131099835; + + // aapt resource value: 0x7F0600BC + public const int mtrl_btn_padding_bottom = 2131099836; + + // aapt resource value: 0x7F0600BD + public const int mtrl_btn_padding_left = 2131099837; + + // aapt resource value: 0x7F0600BE + public const int mtrl_btn_padding_right = 2131099838; + + // aapt resource value: 0x7F0600BF + public const int mtrl_btn_padding_top = 2131099839; + + // aapt resource value: 0x7F0600C0 + public const int mtrl_btn_pressed_z = 2131099840; + + // aapt resource value: 0x7F0600C1 + public const int mtrl_btn_stroke_size = 2131099841; + + // aapt resource value: 0x7F0600C2 + public const int mtrl_btn_text_btn_icon_padding = 2131099842; + + // aapt resource value: 0x7F0600C3 + public const int mtrl_btn_text_btn_padding_left = 2131099843; + + // aapt resource value: 0x7F0600C4 + public const int mtrl_btn_text_btn_padding_right = 2131099844; + + // aapt resource value: 0x7F0600C5 + public const int mtrl_btn_text_size = 2131099845; + + // aapt resource value: 0x7F0600C6 + public const int mtrl_btn_z = 2131099846; + + // aapt resource value: 0x7F0600C7 + public const int mtrl_calendar_action_height = 2131099847; + + // aapt resource value: 0x7F0600C8 + public const int mtrl_calendar_action_padding = 2131099848; + + // aapt resource value: 0x7F0600C9 + public const int mtrl_calendar_bottom_padding = 2131099849; + + // aapt resource value: 0x7F0600CA + public const int mtrl_calendar_content_padding = 2131099850; + + // aapt resource value: 0x7F0600D1 + public const int mtrl_calendar_days_of_week_height = 2131099857; + + // aapt resource value: 0x7F0600CB + public const int mtrl_calendar_day_corner = 2131099851; + + // aapt resource value: 0x7F0600CC + public const int mtrl_calendar_day_height = 2131099852; + + // aapt resource value: 0x7F0600CD + public const int mtrl_calendar_day_horizontal_padding = 2131099853; + + // aapt resource value: 0x7F0600CE + public const int mtrl_calendar_day_today_stroke = 2131099854; + + // aapt resource value: 0x7F0600CF + public const int mtrl_calendar_day_vertical_padding = 2131099855; + + // aapt resource value: 0x7F0600D0 + public const int mtrl_calendar_day_width = 2131099856; + + // aapt resource value: 0x7F0600D2 + public const int mtrl_calendar_dialog_background_inset = 2131099858; + + // aapt resource value: 0x7F0600D3 + public const int mtrl_calendar_header_content_padding = 2131099859; + + // aapt resource value: 0x7F0600D4 + public const int mtrl_calendar_header_content_padding_fullscreen = 2131099860; + + // aapt resource value: 0x7F0600D5 + public const int mtrl_calendar_header_divider_thickness = 2131099861; + + // aapt resource value: 0x7F0600D6 + public const int mtrl_calendar_header_height = 2131099862; + + // aapt resource value: 0x7F0600D7 + public const int mtrl_calendar_header_height_fullscreen = 2131099863; + + // aapt resource value: 0x7F0600D8 + public const int mtrl_calendar_header_selection_line_height = 2131099864; + + // aapt resource value: 0x7F0600D9 + public const int mtrl_calendar_header_text_padding = 2131099865; + + // aapt resource value: 0x7F0600DA + public const int mtrl_calendar_header_toggle_margin_bottom = 2131099866; + + // aapt resource value: 0x7F0600DB + public const int mtrl_calendar_header_toggle_margin_top = 2131099867; + + // aapt resource value: 0x7F0600DC + public const int mtrl_calendar_landscape_header_width = 2131099868; + + // aapt resource value: 0x7F0600DD + public const int mtrl_calendar_maximum_default_fullscreen_minor_axis = 2131099869; + + // aapt resource value: 0x7F0600DE + public const int mtrl_calendar_month_horizontal_padding = 2131099870; + + // aapt resource value: 0x7F0600DF + public const int mtrl_calendar_month_vertical_padding = 2131099871; + + // aapt resource value: 0x7F0600E0 + public const int mtrl_calendar_navigation_bottom_padding = 2131099872; + + // aapt resource value: 0x7F0600E1 + public const int mtrl_calendar_navigation_height = 2131099873; + + // aapt resource value: 0x7F0600E2 + public const int mtrl_calendar_navigation_top_padding = 2131099874; + + // aapt resource value: 0x7F0600E3 + public const int mtrl_calendar_pre_l_text_clip_padding = 2131099875; + + // aapt resource value: 0x7F0600E4 + public const int mtrl_calendar_selection_baseline_to_top_fullscreen = 2131099876; + + // aapt resource value: 0x7F0600E5 + public const int mtrl_calendar_selection_text_baseline_to_bottom = 2131099877; + + // aapt resource value: 0x7F0600E6 + public const int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = 2131099878; + + // aapt resource value: 0x7F0600E7 + public const int mtrl_calendar_selection_text_baseline_to_top = 2131099879; + + // aapt resource value: 0x7F0600E8 + public const int mtrl_calendar_text_input_padding_top = 2131099880; + + // aapt resource value: 0x7F0600E9 + public const int mtrl_calendar_title_baseline_to_top = 2131099881; + + // aapt resource value: 0x7F0600EA + public const int mtrl_calendar_title_baseline_to_top_fullscreen = 2131099882; + + // aapt resource value: 0x7F0600EB + public const int mtrl_calendar_year_corner = 2131099883; + + // aapt resource value: 0x7F0600EC + public const int mtrl_calendar_year_height = 2131099884; + + // aapt resource value: 0x7F0600ED + public const int mtrl_calendar_year_horizontal_padding = 2131099885; + + // aapt resource value: 0x7F0600EE + public const int mtrl_calendar_year_vertical_padding = 2131099886; + + // aapt resource value: 0x7F0600EF + public const int mtrl_calendar_year_width = 2131099887; + + // aapt resource value: 0x7F0600F0 + public const int mtrl_card_checked_icon_margin = 2131099888; + + // aapt resource value: 0x7F0600F1 + public const int mtrl_card_checked_icon_size = 2131099889; + + // aapt resource value: 0x7F0600F2 + public const int mtrl_card_corner_radius = 2131099890; + + // aapt resource value: 0x7F0600F3 + public const int mtrl_card_dragged_z = 2131099891; + + // aapt resource value: 0x7F0600F4 + public const int mtrl_card_elevation = 2131099892; + + // aapt resource value: 0x7F0600F5 + public const int mtrl_card_spacing = 2131099893; + + // aapt resource value: 0x7F0600F6 + public const int mtrl_chip_pressed_translation_z = 2131099894; + + // aapt resource value: 0x7F0600F7 + public const int mtrl_chip_text_size = 2131099895; + + // aapt resource value: 0x7F0600F8 + public const int mtrl_edittext_rectangle_top_offset = 2131099896; + + // aapt resource value: 0x7F0600F9 + public const int mtrl_exposed_dropdown_menu_popup_elevation = 2131099897; + + // aapt resource value: 0x7F0600FA + public const int mtrl_exposed_dropdown_menu_popup_vertical_offset = 2131099898; + + // aapt resource value: 0x7F0600FB + public const int mtrl_exposed_dropdown_menu_popup_vertical_padding = 2131099899; + + // aapt resource value: 0x7F0600FC + public const int mtrl_extended_fab_bottom_padding = 2131099900; + + // aapt resource value: 0x7F0600FD + public const int mtrl_extended_fab_corner_radius = 2131099901; + + // aapt resource value: 0x7F0600FE + public const int mtrl_extended_fab_disabled_elevation = 2131099902; + + // aapt resource value: 0x7F0600FF + public const int mtrl_extended_fab_disabled_translation_z = 2131099903; + + // aapt resource value: 0x7F060100 + public const int mtrl_extended_fab_elevation = 2131099904; + + // aapt resource value: 0x7F060101 + public const int mtrl_extended_fab_end_padding = 2131099905; + + // aapt resource value: 0x7F060102 + public const int mtrl_extended_fab_end_padding_icon = 2131099906; + + // aapt resource value: 0x7F060103 + public const int mtrl_extended_fab_icon_size = 2131099907; + + // aapt resource value: 0x7F060104 + public const int mtrl_extended_fab_icon_text_spacing = 2131099908; + + // aapt resource value: 0x7F060105 + public const int mtrl_extended_fab_min_height = 2131099909; + + // aapt resource value: 0x7F060106 + public const int mtrl_extended_fab_min_width = 2131099910; + + // aapt resource value: 0x7F060107 + public const int mtrl_extended_fab_start_padding = 2131099911; + + // aapt resource value: 0x7F060108 + public const int mtrl_extended_fab_start_padding_icon = 2131099912; + + // aapt resource value: 0x7F060109 + public const int mtrl_extended_fab_top_padding = 2131099913; + + // aapt resource value: 0x7F06010A + public const int mtrl_extended_fab_translation_z_base = 2131099914; + + // aapt resource value: 0x7F06010B + public const int mtrl_extended_fab_translation_z_hovered_focused = 2131099915; + + // aapt resource value: 0x7F06010C + public const int mtrl_extended_fab_translation_z_pressed = 2131099916; + + // aapt resource value: 0x7F06010D + public const int mtrl_fab_elevation = 2131099917; + + // aapt resource value: 0x7F06010E + public const int mtrl_fab_min_touch_target = 2131099918; + + // aapt resource value: 0x7F06010F + public const int mtrl_fab_translation_z_hovered_focused = 2131099919; + + // aapt resource value: 0x7F060110 + public const int mtrl_fab_translation_z_pressed = 2131099920; + + // aapt resource value: 0x7F060111 + public const int mtrl_high_ripple_default_alpha = 2131099921; + + // aapt resource value: 0x7F060112 + public const int mtrl_high_ripple_focused_alpha = 2131099922; + + // aapt resource value: 0x7F060113 + public const int mtrl_high_ripple_hovered_alpha = 2131099923; + + // aapt resource value: 0x7F060114 + public const int mtrl_high_ripple_pressed_alpha = 2131099924; + + // aapt resource value: 0x7F060115 + public const int mtrl_large_touch_target = 2131099925; + + // aapt resource value: 0x7F060116 + public const int mtrl_low_ripple_default_alpha = 2131099926; + + // aapt resource value: 0x7F060117 + public const int mtrl_low_ripple_focused_alpha = 2131099927; + + // aapt resource value: 0x7F060118 + public const int mtrl_low_ripple_hovered_alpha = 2131099928; + + // aapt resource value: 0x7F060119 + public const int mtrl_low_ripple_pressed_alpha = 2131099929; + + // aapt resource value: 0x7F06011A + public const int mtrl_min_touch_target_size = 2131099930; + + // aapt resource value: 0x7F06011B + public const int mtrl_navigation_elevation = 2131099931; + + // aapt resource value: 0x7F06011C + public const int mtrl_navigation_item_horizontal_padding = 2131099932; + + // aapt resource value: 0x7F06011D + public const int mtrl_navigation_item_icon_padding = 2131099933; + + // aapt resource value: 0x7F06011E + public const int mtrl_navigation_item_icon_size = 2131099934; + + // aapt resource value: 0x7F06011F + public const int mtrl_navigation_item_shape_horizontal_margin = 2131099935; + + // aapt resource value: 0x7F060120 + public const int mtrl_navigation_item_shape_vertical_margin = 2131099936; + + // aapt resource value: 0x7F060121 + public const int mtrl_shape_corner_size_large_component = 2131099937; + + // aapt resource value: 0x7F060122 + public const int mtrl_shape_corner_size_medium_component = 2131099938; + + // aapt resource value: 0x7F060123 + public const int mtrl_shape_corner_size_small_component = 2131099939; + + // aapt resource value: 0x7F060124 + public const int mtrl_slider_halo_radius = 2131099940; + + // aapt resource value: 0x7F060125 + public const int mtrl_slider_label_padding = 2131099941; + + // aapt resource value: 0x7F060126 + public const int mtrl_slider_label_radius = 2131099942; + + // aapt resource value: 0x7F060127 + public const int mtrl_slider_label_square_side = 2131099943; + + // aapt resource value: 0x7F060128 + public const int mtrl_slider_thumb_elevation = 2131099944; + + // aapt resource value: 0x7F060129 + public const int mtrl_slider_thumb_radius = 2131099945; + + // aapt resource value: 0x7F06012A + public const int mtrl_slider_track_height = 2131099946; + + // aapt resource value: 0x7F06012B + public const int mtrl_slider_track_side_padding = 2131099947; + + // aapt resource value: 0x7F06012C + public const int mtrl_slider_track_top = 2131099948; + + // aapt resource value: 0x7F06012D + public const int mtrl_slider_widget_height = 2131099949; + + // aapt resource value: 0x7F06012E + public const int mtrl_snackbar_action_text_color_alpha = 2131099950; + + // aapt resource value: 0x7F06012F + public const int mtrl_snackbar_background_corner_radius = 2131099951; + + // aapt resource value: 0x7F060130 + public const int mtrl_snackbar_background_overlay_color_alpha = 2131099952; + + // aapt resource value: 0x7F060131 + public const int mtrl_snackbar_margin = 2131099953; + + // aapt resource value: 0x7F060132 + public const int mtrl_switch_thumb_elevation = 2131099954; + + // aapt resource value: 0x7F060133 + public const int mtrl_textinput_box_corner_radius_medium = 2131099955; + + // aapt resource value: 0x7F060134 + public const int mtrl_textinput_box_corner_radius_small = 2131099956; + + // aapt resource value: 0x7F060135 + public const int mtrl_textinput_box_label_cutout_padding = 2131099957; + + // aapt resource value: 0x7F060136 + public const int mtrl_textinput_box_stroke_width_default = 2131099958; + + // aapt resource value: 0x7F060137 + public const int mtrl_textinput_box_stroke_width_focused = 2131099959; + + // aapt resource value: 0x7F060138 + public const int mtrl_textinput_counter_margin_start = 2131099960; + + // aapt resource value: 0x7F060139 + public const int mtrl_textinput_end_icon_margin_start = 2131099961; + + // aapt resource value: 0x7F06013A + public const int mtrl_textinput_outline_box_expanded_padding = 2131099962; + + // aapt resource value: 0x7F06013B + public const int mtrl_textinput_start_icon_margin_end = 2131099963; + + // aapt resource value: 0x7F06013C + public const int mtrl_toolbar_default_height = 2131099964; + + // aapt resource value: 0x7F06013D + public const int mtrl_tooltip_arrowSize = 2131099965; + + // aapt resource value: 0x7F06013E + public const int mtrl_tooltip_cornerSize = 2131099966; + + // aapt resource value: 0x7F06013F + public const int mtrl_tooltip_minHeight = 2131099967; + + // aapt resource value: 0x7F060140 + public const int mtrl_tooltip_minWidth = 2131099968; + + // aapt resource value: 0x7F060141 + public const int mtrl_tooltip_padding = 2131099969; + + // aapt resource value: 0x7F060142 + public const int mtrl_transition_shared_axis_slide_distance = 2131099970; + + // aapt resource value: 0x7F060143 + public const int notification_action_icon_size = 2131099971; + + // aapt resource value: 0x7F060144 + public const int notification_action_text_size = 2131099972; + + // aapt resource value: 0x7F060145 + public const int notification_big_circle_margin = 2131099973; + + // aapt resource value: 0x7F060146 + public const int notification_content_margin_start = 2131099974; + + // aapt resource value: 0x7F060147 + public const int notification_large_icon_height = 2131099975; + + // aapt resource value: 0x7F060148 + public const int notification_large_icon_width = 2131099976; + + // aapt resource value: 0x7F060149 + public const int notification_main_column_padding_top = 2131099977; + + // aapt resource value: 0x7F06014A + public const int notification_media_narrow_margin = 2131099978; + + // aapt resource value: 0x7F06014B + public const int notification_right_icon_size = 2131099979; + + // aapt resource value: 0x7F06014C + public const int notification_right_side_padding_top = 2131099980; + + // aapt resource value: 0x7F06014D + public const int notification_small_icon_background_padding = 2131099981; + + // aapt resource value: 0x7F06014E + public const int notification_small_icon_size_as_large = 2131099982; + + // aapt resource value: 0x7F06014F + public const int notification_subtext_size = 2131099983; + + // aapt resource value: 0x7F060150 + public const int notification_top_pad = 2131099984; + + // aapt resource value: 0x7F060151 + public const int notification_top_pad_large_text = 2131099985; + + // aapt resource value: 0x7F060152 + public const int test_mtrl_calendar_day_cornerSize = 2131099986; + + // aapt resource value: 0x7F060153 + public const int tooltip_corner_radius = 2131099987; + + // aapt resource value: 0x7F060154 + public const int tooltip_horizontal_padding = 2131099988; + + // aapt resource value: 0x7F060155 + public const int tooltip_margin = 2131099989; + + // aapt resource value: 0x7F060156 + public const int tooltip_precise_anchor_extra_offset = 2131099990; + + // aapt resource value: 0x7F060157 + public const int tooltip_precise_anchor_threshold = 2131099991; + + // aapt resource value: 0x7F060158 + public const int tooltip_vertical_padding = 2131099992; + + // aapt resource value: 0x7F060159 + public const int tooltip_y_offset_non_touch = 2131099993; + + // aapt resource value: 0x7F06015A + public const int tooltip_y_offset_touch = 2131099994; + + static Dimension() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Dimension() + { + } + } + + public partial class Drawable + { + + // aapt resource value: 0x7F070006 + public const int abc_ab_share_pack_mtrl_alpha = 2131165190; + + // aapt resource value: 0x7F070007 + public const int abc_action_bar_item_background_material = 2131165191; + + // aapt resource value: 0x7F070008 + public const int abc_btn_borderless_material = 2131165192; + + // aapt resource value: 0x7F070009 + public const int abc_btn_check_material = 2131165193; + + // aapt resource value: 0x7F07000A + public const int abc_btn_check_material_anim = 2131165194; + + // aapt resource value: 0x7F07000B + public const int abc_btn_check_to_on_mtrl_000 = 2131165195; + + // aapt resource value: 0x7F07000C + public const int abc_btn_check_to_on_mtrl_015 = 2131165196; + + // aapt resource value: 0x7F07000D + public const int abc_btn_colored_material = 2131165197; + + // aapt resource value: 0x7F07000E + public const int abc_btn_default_mtrl_shape = 2131165198; + + // aapt resource value: 0x7F07000F + public const int abc_btn_radio_material = 2131165199; + + // aapt resource value: 0x7F070010 + public const int abc_btn_radio_material_anim = 2131165200; + + // aapt resource value: 0x7F070011 + public const int abc_btn_radio_to_on_mtrl_000 = 2131165201; + + // aapt resource value: 0x7F070012 + public const int abc_btn_radio_to_on_mtrl_015 = 2131165202; + + // aapt resource value: 0x7F070013 + public const int abc_btn_switch_to_on_mtrl_00001 = 2131165203; + + // aapt resource value: 0x7F070014 + public const int abc_btn_switch_to_on_mtrl_00012 = 2131165204; + + // aapt resource value: 0x7F070015 + public const int abc_cab_background_internal_bg = 2131165205; + + // aapt resource value: 0x7F070016 + public const int abc_cab_background_top_material = 2131165206; + + // aapt resource value: 0x7F070017 + public const int abc_cab_background_top_mtrl_alpha = 2131165207; + + // aapt resource value: 0x7F070018 + public const int abc_control_background_material = 2131165208; + + // aapt resource value: 0x7F070019 + public const int abc_dialog_material_background = 2131165209; + + // aapt resource value: 0x7F07001A + public const int abc_edit_text_material = 2131165210; + + // aapt resource value: 0x7F07001B + public const int abc_ic_ab_back_material = 2131165211; + + // aapt resource value: 0x7F07001C + public const int abc_ic_arrow_drop_right_black_24dp = 2131165212; + + // aapt resource value: 0x7F07001D + public const int abc_ic_clear_material = 2131165213; + + // aapt resource value: 0x7F07001E + public const int abc_ic_commit_search_api_mtrl_alpha = 2131165214; + + // aapt resource value: 0x7F07001F + public const int abc_ic_go_search_api_material = 2131165215; + + // aapt resource value: 0x7F070020 + public const int abc_ic_menu_copy_mtrl_am_alpha = 2131165216; + + // aapt resource value: 0x7F070021 + public const int abc_ic_menu_cut_mtrl_alpha = 2131165217; + + // aapt resource value: 0x7F070022 + public const int abc_ic_menu_overflow_material = 2131165218; + + // aapt resource value: 0x7F070023 + public const int abc_ic_menu_paste_mtrl_am_alpha = 2131165219; + + // aapt resource value: 0x7F070024 + public const int abc_ic_menu_selectall_mtrl_alpha = 2131165220; + + // aapt resource value: 0x7F070025 + public const int abc_ic_menu_share_mtrl_alpha = 2131165221; + + // aapt resource value: 0x7F070026 + public const int abc_ic_search_api_material = 2131165222; + + // aapt resource value: 0x7F070027 + public const int abc_ic_star_black_16dp = 2131165223; + + // aapt resource value: 0x7F070028 + public const int abc_ic_star_black_36dp = 2131165224; + + // aapt resource value: 0x7F070029 + public const int abc_ic_star_black_48dp = 2131165225; + + // aapt resource value: 0x7F07002A + public const int abc_ic_star_half_black_16dp = 2131165226; + + // aapt resource value: 0x7F07002B + public const int abc_ic_star_half_black_36dp = 2131165227; + + // aapt resource value: 0x7F07002C + public const int abc_ic_star_half_black_48dp = 2131165228; + + // aapt resource value: 0x7F07002D + public const int abc_ic_voice_search_api_material = 2131165229; + + // aapt resource value: 0x7F07002E + public const int abc_item_background_holo_dark = 2131165230; + + // aapt resource value: 0x7F07002F + public const int abc_item_background_holo_light = 2131165231; + + // aapt resource value: 0x7F070030 + public const int abc_list_divider_material = 2131165232; + + // aapt resource value: 0x7F070031 + public const int abc_list_divider_mtrl_alpha = 2131165233; + + // aapt resource value: 0x7F070032 + public const int abc_list_focused_holo = 2131165234; + + // aapt resource value: 0x7F070033 + public const int abc_list_longpressed_holo = 2131165235; + + // aapt resource value: 0x7F070034 + public const int abc_list_pressed_holo_dark = 2131165236; + + // aapt resource value: 0x7F070035 + public const int abc_list_pressed_holo_light = 2131165237; + + // aapt resource value: 0x7F070036 + public const int abc_list_selector_background_transition_holo_dark = 2131165238; + + // aapt resource value: 0x7F070037 + public const int abc_list_selector_background_transition_holo_light = 2131165239; + + // aapt resource value: 0x7F070038 + public const int abc_list_selector_disabled_holo_dark = 2131165240; + + // aapt resource value: 0x7F070039 + public const int abc_list_selector_disabled_holo_light = 2131165241; + + // aapt resource value: 0x7F07003A + public const int abc_list_selector_holo_dark = 2131165242; + + // aapt resource value: 0x7F07003B + public const int abc_list_selector_holo_light = 2131165243; + + // aapt resource value: 0x7F07003C + public const int abc_menu_hardkey_panel_mtrl_mult = 2131165244; + + // aapt resource value: 0x7F07003D + public const int abc_popup_background_mtrl_mult = 2131165245; + + // aapt resource value: 0x7F07003E + public const int abc_ratingbar_indicator_material = 2131165246; + + // aapt resource value: 0x7F07003F + public const int abc_ratingbar_material = 2131165247; + + // aapt resource value: 0x7F070040 + public const int abc_ratingbar_small_material = 2131165248; + + // aapt resource value: 0x7F070041 + public const int abc_scrubber_control_off_mtrl_alpha = 2131165249; + + // aapt resource value: 0x7F070042 + public const int abc_scrubber_control_to_pressed_mtrl_000 = 2131165250; + + // aapt resource value: 0x7F070043 + public const int abc_scrubber_control_to_pressed_mtrl_005 = 2131165251; + + // aapt resource value: 0x7F070044 + public const int abc_scrubber_primary_mtrl_alpha = 2131165252; + + // aapt resource value: 0x7F070045 + public const int abc_scrubber_track_mtrl_alpha = 2131165253; + + // aapt resource value: 0x7F070046 + public const int abc_seekbar_thumb_material = 2131165254; + + // aapt resource value: 0x7F070047 + public const int abc_seekbar_tick_mark_material = 2131165255; + + // aapt resource value: 0x7F070048 + public const int abc_seekbar_track_material = 2131165256; + + // aapt resource value: 0x7F070049 + public const int abc_spinner_mtrl_am_alpha = 2131165257; + + // aapt resource value: 0x7F07004A + public const int abc_spinner_textfield_background_material = 2131165258; + + // aapt resource value: 0x7F07004B + public const int abc_switch_thumb_material = 2131165259; + + // aapt resource value: 0x7F07004C + public const int abc_switch_track_mtrl_alpha = 2131165260; + + // aapt resource value: 0x7F07004D + public const int abc_tab_indicator_material = 2131165261; + + // aapt resource value: 0x7F07004E + public const int abc_tab_indicator_mtrl_alpha = 2131165262; + + // aapt resource value: 0x7F070056 + public const int abc_textfield_activated_mtrl_alpha = 2131165270; + + // aapt resource value: 0x7F070057 + public const int abc_textfield_default_mtrl_alpha = 2131165271; + + // aapt resource value: 0x7F070058 + public const int abc_textfield_search_activated_mtrl_alpha = 2131165272; + + // aapt resource value: 0x7F070059 + public const int abc_textfield_search_default_mtrl_alpha = 2131165273; + + // aapt resource value: 0x7F07005A + public const int abc_textfield_search_material = 2131165274; + + // aapt resource value: 0x7F07004F + public const int abc_text_cursor_material = 2131165263; + + // aapt resource value: 0x7F070050 + public const int abc_text_select_handle_left_mtrl_dark = 2131165264; + + // aapt resource value: 0x7F070051 + public const int abc_text_select_handle_left_mtrl_light = 2131165265; + + // aapt resource value: 0x7F070052 + public const int abc_text_select_handle_middle_mtrl_dark = 2131165266; + + // aapt resource value: 0x7F070053 + public const int abc_text_select_handle_middle_mtrl_light = 2131165267; + + // aapt resource value: 0x7F070054 + public const int abc_text_select_handle_right_mtrl_dark = 2131165268; + + // aapt resource value: 0x7F070055 + public const int abc_text_select_handle_right_mtrl_light = 2131165269; + + // aapt resource value: 0x7F07005B + public const int abc_vector_test = 2131165275; + + // aapt resource value: 0x7F07005C + public const int avd_hide_password = 2131165276; + + // aapt resource value: 0x7F07005D + public const int avd_show_password = 2131165277; + + // aapt resource value: 0x7F07005E + public const int btn_checkbox_checked_mtrl = 2131165278; + + // aapt resource value: 0x7F07005F + public const int btn_checkbox_checked_to_unchecked_mtrl_animation = 2131165279; + + // aapt resource value: 0x7F070060 + public const int btn_checkbox_unchecked_mtrl = 2131165280; + + // aapt resource value: 0x7F070061 + public const int btn_checkbox_unchecked_to_checked_mtrl_animation = 2131165281; + + // aapt resource value: 0x7F070062 + public const int btn_radio_off_mtrl = 2131165282; + + // aapt resource value: 0x7F070063 + public const int btn_radio_off_to_on_mtrl_animation = 2131165283; + + // aapt resource value: 0x7F070064 + public const int btn_radio_on_mtrl = 2131165284; + + // aapt resource value: 0x7F070065 + public const int btn_radio_on_to_off_mtrl_animation = 2131165285; + + // aapt resource value: 0x7F070066 + public const int cal = 2131165286; + + // aapt resource value: 0x7F070067 + public const int design_bottom_navigation_item_background = 2131165287; + + // aapt resource value: 0x7F070068 + public const int design_fab_background = 2131165288; + + // aapt resource value: 0x7F070069 + public const int design_ic_visibility = 2131165289; + + // aapt resource value: 0x7F07006A + public const int design_ic_visibility_off = 2131165290; + + // aapt resource value: 0x7F07006B + public const int design_password_eye = 2131165291; + + // aapt resource value: 0x7F07006C + public const int design_snackbar_background = 2131165292; + + // aapt resource value: 0x7F07006D + public const int dr = 2131165293; + + // aapt resource value: 0x7F07006E + public const int drMessage = 2131165294; + + // aapt resource value: 0x7F07006F + public const int drVideoChat = 2131165295; + + // aapt resource value: 0x7F070070 + public const int ic_mtrl_checked_circle = 2131165296; + + // aapt resource value: 0x7F070071 + public const int ic_mtrl_chip_checked_black = 2131165297; + + // aapt resource value: 0x7F070072 + public const int ic_mtrl_chip_checked_circle = 2131165298; + + // aapt resource value: 0x7F070073 + public const int ic_mtrl_chip_close_circle = 2131165299; + + // aapt resource value: 0x7F070074 + public const int material_ic_calendar_black_24dp = 2131165300; + + // aapt resource value: 0x7F070075 + public const int material_ic_clear_black_24dp = 2131165301; + + // aapt resource value: 0x7F070076 + public const int material_ic_edit_black_24dp = 2131165302; + + // aapt resource value: 0x7F070077 + public const int material_ic_keyboard_arrow_left_black_24dp = 2131165303; + + // aapt resource value: 0x7F070078 + public const int material_ic_keyboard_arrow_right_black_24dp = 2131165304; + + // aapt resource value: 0x7F070079 + public const int material_ic_menu_arrow_down_black_24dp = 2131165305; + + // aapt resource value: 0x7F07007A + public const int material_ic_menu_arrow_up_black_24dp = 2131165306; + + // aapt resource value: 0x7F07007B + public const int message = 2131165307; + + // aapt resource value: 0x7F07007C + public const int messageDr = 2131165308; + + // aapt resource value: 0x7F07007D + public const int mtrl_dialog_background = 2131165309; + + // aapt resource value: 0x7F07007E + public const int mtrl_dropdown_arrow = 2131165310; + + // aapt resource value: 0x7F07007F + public const int mtrl_ic_arrow_drop_down = 2131165311; + + // aapt resource value: 0x7F070080 + public const int mtrl_ic_arrow_drop_up = 2131165312; + + // aapt resource value: 0x7F070081 + public const int mtrl_ic_cancel = 2131165313; + + // aapt resource value: 0x7F070082 + public const int mtrl_ic_error = 2131165314; + + // aapt resource value: 0x7F070083 + public const int mtrl_popupmenu_background = 2131165315; + + // aapt resource value: 0x7F070084 + public const int mtrl_popupmenu_background_dark = 2131165316; + + // aapt resource value: 0x7F070085 + public const int mtrl_tabs_default_indicator = 2131165317; + + // aapt resource value: 0x7F070086 + public const int navigation_empty_icon = 2131165318; + + // aapt resource value: 0x7F070087 + public const int notification_action_background = 2131165319; + + // aapt resource value: 0x7F070088 + public const int notification_bg = 2131165320; + + // aapt resource value: 0x7F070089 + public const int notification_bg_low = 2131165321; + + // aapt resource value: 0x7F07008A + public const int notification_bg_low_normal = 2131165322; + + // aapt resource value: 0x7F07008B + public const int notification_bg_low_pressed = 2131165323; + + // aapt resource value: 0x7F07008C + public const int notification_bg_normal = 2131165324; + + // aapt resource value: 0x7F07008D + public const int notification_bg_normal_pressed = 2131165325; + + // aapt resource value: 0x7F07008E + public const int notification_icon_background = 2131165326; + + // aapt resource value: 0x7F07008F + public const int notification_template_icon_bg = 2131165327; + + // aapt resource value: 0x7F070090 + public const int notification_template_icon_low_bg = 2131165328; + + // aapt resource value: 0x7F070091 + public const int notification_tile_bg = 2131165329; + + // aapt resource value: 0x7F070092 + public const int notify_panel_notification_icon_bg = 2131165330; + + // aapt resource value: 0x7F070093 + public const int nurse = 2131165331; + + // aapt resource value: 0x7F070094 + public const int openTeams = 2131165332; + + // aapt resource value: 0x7F070095 + public const int phone = 2131165333; + + // aapt resource value: 0x7F070096 + public const int test_custom_background = 2131165334; + + // aapt resource value: 0x7F070097 + public const int tooltip_frame_dark = 2131165335; + + // aapt resource value: 0x7F070098 + public const int tooltip_frame_light = 2131165336; + + // aapt resource value: 0x7F070099 + public const int videoChat = 2131165337; + + static Drawable() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Drawable() + { + } + } + + public partial class Id + { + + // aapt resource value: 0x7F08000A + public const int accessibility_action_clickable_span = 2131230730; + + // aapt resource value: 0x7F08000B + public const int accessibility_custom_action_0 = 2131230731; + + // aapt resource value: 0x7F08000C + public const int accessibility_custom_action_1 = 2131230732; + + // aapt resource value: 0x7F08000D + public const int accessibility_custom_action_10 = 2131230733; + + // aapt resource value: 0x7F08000E + public const int accessibility_custom_action_11 = 2131230734; + + // aapt resource value: 0x7F08000F + public const int accessibility_custom_action_12 = 2131230735; + + // aapt resource value: 0x7F080010 + public const int accessibility_custom_action_13 = 2131230736; + + // aapt resource value: 0x7F080011 + public const int accessibility_custom_action_14 = 2131230737; + + // aapt resource value: 0x7F080012 + public const int accessibility_custom_action_15 = 2131230738; + + // aapt resource value: 0x7F080013 + public const int accessibility_custom_action_16 = 2131230739; + + // aapt resource value: 0x7F080014 + public const int accessibility_custom_action_17 = 2131230740; + + // aapt resource value: 0x7F080015 + public const int accessibility_custom_action_18 = 2131230741; + + // aapt resource value: 0x7F080016 + public const int accessibility_custom_action_19 = 2131230742; + + // aapt resource value: 0x7F080017 + public const int accessibility_custom_action_2 = 2131230743; + + // aapt resource value: 0x7F080018 + public const int accessibility_custom_action_20 = 2131230744; + + // aapt resource value: 0x7F080019 + public const int accessibility_custom_action_21 = 2131230745; + + // aapt resource value: 0x7F08001A + public const int accessibility_custom_action_22 = 2131230746; + + // aapt resource value: 0x7F08001B + public const int accessibility_custom_action_23 = 2131230747; + + // aapt resource value: 0x7F08001C + public const int accessibility_custom_action_24 = 2131230748; + + // aapt resource value: 0x7F08001D + public const int accessibility_custom_action_25 = 2131230749; + + // aapt resource value: 0x7F08001E + public const int accessibility_custom_action_26 = 2131230750; + + // aapt resource value: 0x7F08001F + public const int accessibility_custom_action_27 = 2131230751; + + // aapt resource value: 0x7F080020 + public const int accessibility_custom_action_28 = 2131230752; + + // aapt resource value: 0x7F080021 + public const int accessibility_custom_action_29 = 2131230753; + + // aapt resource value: 0x7F080022 + public const int accessibility_custom_action_3 = 2131230754; + + // aapt resource value: 0x7F080023 + public const int accessibility_custom_action_30 = 2131230755; + + // aapt resource value: 0x7F080024 + public const int accessibility_custom_action_31 = 2131230756; + + // aapt resource value: 0x7F080025 + public const int accessibility_custom_action_4 = 2131230757; + + // aapt resource value: 0x7F080026 + public const int accessibility_custom_action_5 = 2131230758; + + // aapt resource value: 0x7F080027 + public const int accessibility_custom_action_6 = 2131230759; + + // aapt resource value: 0x7F080028 + public const int accessibility_custom_action_7 = 2131230760; + + // aapt resource value: 0x7F080029 + public const int accessibility_custom_action_8 = 2131230761; + + // aapt resource value: 0x7F08002A + public const int accessibility_custom_action_9 = 2131230762; + + // aapt resource value: 0x7F08002B + public const int action0 = 2131230763; + + // aapt resource value: 0x7F08003D + public const int actions = 2131230781; + + // aapt resource value: 0x7F08002C + public const int action_bar = 2131230764; + + // aapt resource value: 0x7F08002D + public const int action_bar_activity_content = 2131230765; + + // aapt resource value: 0x7F08002E + public const int action_bar_container = 2131230766; + + // aapt resource value: 0x7F08002F + public const int action_bar_root = 2131230767; + + // aapt resource value: 0x7F080030 + public const int action_bar_spinner = 2131230768; + + // aapt resource value: 0x7F080031 + public const int action_bar_subtitle = 2131230769; + + // aapt resource value: 0x7F080032 + public const int action_bar_title = 2131230770; + + // aapt resource value: 0x7F080033 + public const int action_container = 2131230771; + + // aapt resource value: 0x7F080034 + public const int action_context_bar = 2131230772; + + // aapt resource value: 0x7F080035 + public const int action_divider = 2131230773; + + // aapt resource value: 0x7F080036 + public const int action_image = 2131230774; + + // aapt resource value: 0x7F080037 + public const int action_menu_divider = 2131230775; + + // aapt resource value: 0x7F080038 + public const int action_menu_presenter = 2131230776; + + // aapt resource value: 0x7F080039 + public const int action_mode_bar = 2131230777; + + // aapt resource value: 0x7F08003A + public const int action_mode_bar_stub = 2131230778; + + // aapt resource value: 0x7F08003B + public const int action_mode_close_button = 2131230779; + + // aapt resource value: 0x7F08003C + public const int action_text = 2131230780; + + // aapt resource value: 0x7F08003E + public const int activity_chooser_view_content = 2131230782; + + // aapt resource value: 0x7F08003F + public const int add = 2131230783; + + // aapt resource value: 0x7F080040 + public const int alertTitle = 2131230784; + + // aapt resource value: 0x7F080041 + public const int all = 2131230785; + + // aapt resource value: 0x7F080000 + public const int ALT = 2131230720; + + // aapt resource value: 0x7F080042 + public const int always = 2131230786; + + // aapt resource value: 0x7F080043 + public const int async = 2131230787; + + // aapt resource value: 0x7F080044 + public const int auto = 2131230788; + + // aapt resource value: 0x7F080045 + public const int beginning = 2131230789; + + // aapt resource value: 0x7F080046 + public const int blocking = 2131230790; + + // aapt resource value: 0x7F080047 + public const int bottom = 2131230791; + + // aapt resource value: 0x7F080048 + public const int bottomtab_navarea = 2131230792; + + // aapt resource value: 0x7F080049 + public const int bottomtab_tabbar = 2131230793; + + // aapt resource value: 0x7F080001 + public const int BOTTOM_END = 2131230721; + + // aapt resource value: 0x7F080002 + public const int BOTTOM_START = 2131230722; + + // aapt resource value: 0x7F08004A + public const int browser_actions_header_text = 2131230794; + + // aapt resource value: 0x7F08004D + public const int browser_actions_menu_items = 2131230797; + + // aapt resource value: 0x7F08004B + public const int browser_actions_menu_item_icon = 2131230795; + + // aapt resource value: 0x7F08004C + public const int browser_actions_menu_item_text = 2131230796; + + // aapt resource value: 0x7F08004E + public const int browser_actions_menu_view = 2131230798; + + // aapt resource value: 0x7F08004F + public const int buttonPanel = 2131230799; + + // aapt resource value: 0x7F080050 + public const int cancel_action = 2131230800; + + // aapt resource value: 0x7F080051 + public const int cancel_button = 2131230801; + + // aapt resource value: 0x7F080052 + public const int center = 2131230802; + + // aapt resource value: 0x7F080053 + public const int center_horizontal = 2131230803; + + // aapt resource value: 0x7F080054 + public const int center_vertical = 2131230804; + + // aapt resource value: 0x7F080055 + public const int checkbox = 2131230805; + + // aapt resource value: 0x7F080056 + public const int @checked = 2131230806; + + // aapt resource value: 0x7F080057 + public const int chip = 2131230807; + + // aapt resource value: 0x7F080058 + public const int chip1 = 2131230808; + + // aapt resource value: 0x7F080059 + public const int chip2 = 2131230809; + + // aapt resource value: 0x7F08005A + public const int chip3 = 2131230810; + + // aapt resource value: 0x7F08005B + public const int chip_group = 2131230811; + + // aapt resource value: 0x7F08005C + public const int chronometer = 2131230812; + + // aapt resource value: 0x7F08005D + public const int clear_text = 2131230813; + + // aapt resource value: 0x7F08005E + public const int clip_horizontal = 2131230814; + + // aapt resource value: 0x7F08005F + public const int clip_vertical = 2131230815; + + // aapt resource value: 0x7F080060 + public const int collapseActionView = 2131230816; + + // aapt resource value: 0x7F080061 + public const int confirm_button = 2131230817; + + // aapt resource value: 0x7F080062 + public const int container = 2131230818; + + // aapt resource value: 0x7F080063 + public const int content = 2131230819; + + // aapt resource value: 0x7F080064 + public const int contentPanel = 2131230820; + + // aapt resource value: 0x7F080065 + public const int coordinator = 2131230821; + + // aapt resource value: 0x7F080003 + public const int CTRL = 2131230723; + + // aapt resource value: 0x7F080066 + public const int custom = 2131230822; + + // aapt resource value: 0x7F080067 + public const int customPanel = 2131230823; + + // aapt resource value: 0x7F080068 + public const int cut = 2131230824; + + // aapt resource value: 0x7F080069 + public const int date_picker_actions = 2131230825; + + // aapt resource value: 0x7F08006A + public const int decor_content_parent = 2131230826; + + // aapt resource value: 0x7F08006B + public const int default_activity_button = 2131230827; + + // aapt resource value: 0x7F08006C + public const int design_bottom_sheet = 2131230828; + + // aapt resource value: 0x7F08006D + public const int design_menu_item_action_area = 2131230829; + + // aapt resource value: 0x7F08006E + public const int design_menu_item_action_area_stub = 2131230830; + + // aapt resource value: 0x7F08006F + public const int design_menu_item_text = 2131230831; + + // aapt resource value: 0x7F080070 + public const int design_navigation_view = 2131230832; + + // aapt resource value: 0x7F080071 + public const int dialog_button = 2131230833; + + // aapt resource value: 0x7F080072 + public const int disableHome = 2131230834; + + // aapt resource value: 0x7F080073 + public const int dropdown_menu = 2131230835; + + // aapt resource value: 0x7F080074 + public const int edit_query = 2131230836; + + // aapt resource value: 0x7F080075 + public const int end = 2131230837; + + // aapt resource value: 0x7F080076 + public const int end_padder = 2131230838; + + // aapt resource value: 0x7F080077 + public const int enterAlways = 2131230839; + + // aapt resource value: 0x7F080078 + public const int enterAlwaysCollapsed = 2131230840; + + // aapt resource value: 0x7F080079 + public const int exitUntilCollapsed = 2131230841; + + // aapt resource value: 0x7F08007B + public const int expanded_menu = 2131230843; + + // aapt resource value: 0x7F08007A + public const int expand_activities_button = 2131230842; + + // aapt resource value: 0x7F08007C + public const int fade = 2131230844; + + // aapt resource value: 0x7F08007D + public const int fill = 2131230845; + + // aapt resource value: 0x7F080080 + public const int filled = 2131230848; + + // aapt resource value: 0x7F08007E + public const int fill_horizontal = 2131230846; + + // aapt resource value: 0x7F08007F + public const int fill_vertical = 2131230847; + + // aapt resource value: 0x7F080081 + public const int fitToContents = 2131230849; + + // aapt resource value: 0x7F080082 + public const int @fixed = 2131230850; + + // aapt resource value: 0x7F080083 + public const int floating = 2131230851; + + // aapt resource value: 0x7F080084 + public const int flyoutcontent_appbar = 2131230852; + + // aapt resource value: 0x7F080085 + public const int forever = 2131230853; + + // aapt resource value: 0x7F080086 + public const int fragment_container_view_tag = 2131230854; + + // aapt resource value: 0x7F080004 + public const int FUNCTION = 2131230724; + + // aapt resource value: 0x7F080087 + public const int ghost_view = 2131230855; + + // aapt resource value: 0x7F080088 + public const int ghost_view_holder = 2131230856; + + // aapt resource value: 0x7F080089 + public const int gone = 2131230857; + + // aapt resource value: 0x7F08008A + public const int group_divider = 2131230858; + + // aapt resource value: 0x7F08008B + public const int hideable = 2131230859; + + // aapt resource value: 0x7F08008C + public const int home = 2131230860; + + // aapt resource value: 0x7F08008D + public const int homeAsUp = 2131230861; + + // aapt resource value: 0x7F08008E + public const int icon = 2131230862; + + // aapt resource value: 0x7F08008F + public const int icon_group = 2131230863; + + // aapt resource value: 0x7F080090 + public const int ifRoom = 2131230864; + + // aapt resource value: 0x7F080091 + public const int image = 2131230865; + + // aapt resource value: 0x7F080092 + public const int info = 2131230866; + + // aapt resource value: 0x7F080093 + public const int italic = 2131230867; + + // aapt resource value: 0x7F080094 + public const int item_touch_helper_previous_elevation = 2131230868; + + // aapt resource value: 0x7F080095 + public const int labeled = 2131230869; + + // aapt resource value: 0x7F080096 + public const int largeLabel = 2131230870; + + // aapt resource value: 0x7F080097 + public const int left = 2131230871; + + // aapt resource value: 0x7F080098 + public const int line1 = 2131230872; + + // aapt resource value: 0x7F080099 + public const int line3 = 2131230873; + + // aapt resource value: 0x7F08009A + public const int listMode = 2131230874; + + // aapt resource value: 0x7F08009B + public const int list_item = 2131230875; + + // aapt resource value: 0x7F08009C + public const int main_appbar = 2131230876; + + // aapt resource value: 0x7F08009D + public const int main_tablayout = 2131230877; + + // aapt resource value: 0x7F08009E + public const int main_toolbar = 2131230878; + + // aapt resource value: 0x7F08009F + public const int main_viewpager = 2131230879; + + // aapt resource value: 0x7F0800A0 + public const int masked = 2131230880; + + // aapt resource value: 0x7F0800A1 + public const int media_actions = 2131230881; + + // aapt resource value: 0x7F0800A2 + public const int media_controller_compat_view_tag = 2131230882; + + // aapt resource value: 0x7F0800A3 + public const int message = 2131230883; + + // aapt resource value: 0x7F080005 + public const int META = 2131230725; + + // aapt resource value: 0x7F0800A4 + public const int middle = 2131230884; + + // aapt resource value: 0x7F0800A5 + public const int mini = 2131230885; + + // aapt resource value: 0x7F0800A6 + public const int month_grid = 2131230886; + + // aapt resource value: 0x7F0800A7 + public const int month_navigation_bar = 2131230887; + + // aapt resource value: 0x7F0800A8 + public const int month_navigation_fragment_toggle = 2131230888; + + // aapt resource value: 0x7F0800A9 + public const int month_navigation_next = 2131230889; + + // aapt resource value: 0x7F0800AA + public const int month_navigation_previous = 2131230890; + + // aapt resource value: 0x7F0800AB + public const int month_title = 2131230891; + + // aapt resource value: 0x7F0800AD + public const int mtrl_calendar_days_of_week = 2131230893; + + // aapt resource value: 0x7F0800AC + public const int mtrl_calendar_day_selector_frame = 2131230892; + + // aapt resource value: 0x7F0800AE + public const int mtrl_calendar_frame = 2131230894; + + // aapt resource value: 0x7F0800AF + public const int mtrl_calendar_main_pane = 2131230895; + + // aapt resource value: 0x7F0800B0 + public const int mtrl_calendar_months = 2131230896; + + // aapt resource value: 0x7F0800B1 + public const int mtrl_calendar_selection_frame = 2131230897; + + // aapt resource value: 0x7F0800B2 + public const int mtrl_calendar_text_input_frame = 2131230898; + + // aapt resource value: 0x7F0800B3 + public const int mtrl_calendar_year_selector_frame = 2131230899; + + // aapt resource value: 0x7F0800B4 + public const int mtrl_card_checked_layer_id = 2131230900; + + // aapt resource value: 0x7F0800B5 + public const int mtrl_child_content_container = 2131230901; + + // aapt resource value: 0x7F0800B6 + public const int mtrl_internal_children_alpha_tag = 2131230902; + + // aapt resource value: 0x7F0800B7 + public const int mtrl_motion_snapshot_view = 2131230903; + + // aapt resource value: 0x7F0800B8 + public const int mtrl_picker_fullscreen = 2131230904; + + // aapt resource value: 0x7F0800B9 + public const int mtrl_picker_header = 2131230905; + + // aapt resource value: 0x7F0800BA + public const int mtrl_picker_header_selection_text = 2131230906; + + // aapt resource value: 0x7F0800BB + public const int mtrl_picker_header_title_and_selection = 2131230907; + + // aapt resource value: 0x7F0800BC + public const int mtrl_picker_header_toggle = 2131230908; + + // aapt resource value: 0x7F0800BD + public const int mtrl_picker_text_input_date = 2131230909; + + // aapt resource value: 0x7F0800BE + public const int mtrl_picker_text_input_range_end = 2131230910; + + // aapt resource value: 0x7F0800BF + public const int mtrl_picker_text_input_range_start = 2131230911; + + // aapt resource value: 0x7F0800C0 + public const int mtrl_picker_title_text = 2131230912; + + // aapt resource value: 0x7F0800C1 + public const int multiply = 2131230913; + + // aapt resource value: 0x7F0800C2 + public const int navigation_header_container = 2131230914; + + // aapt resource value: 0x7F0800C3 + public const int never = 2131230915; + + // aapt resource value: 0x7F0800C5 + public const int none = 2131230917; + + // aapt resource value: 0x7F0800C6 + public const int normal = 2131230918; + + // aapt resource value: 0x7F0800C4 + public const int noScroll = 2131230916; + + // aapt resource value: 0x7F0800C7 + public const int notification_background = 2131230919; + + // aapt resource value: 0x7F0800C8 + public const int notification_main_column = 2131230920; + + // aapt resource value: 0x7F0800C9 + public const int notification_main_column_container = 2131230921; + + // aapt resource value: 0x7F0800CA + public const int off = 2131230922; + + // aapt resource value: 0x7F0800CB + public const int on = 2131230923; + + // aapt resource value: 0x7F0800CC + public const int outline = 2131230924; + + // aapt resource value: 0x7F0800CD + public const int parallax = 2131230925; + + // aapt resource value: 0x7F0800CE + public const int parentPanel = 2131230926; + + // aapt resource value: 0x7F0800CF + public const int parent_matrix = 2131230927; + + // aapt resource value: 0x7F0800D0 + public const int password_toggle = 2131230928; + + // aapt resource value: 0x7F0800D1 + public const int peekHeight = 2131230929; + + // aapt resource value: 0x7F0800D2 + public const int pin = 2131230930; + + // aapt resource value: 0x7F0800D3 + public const int progress_circular = 2131230931; + + // aapt resource value: 0x7F0800D4 + public const int progress_horizontal = 2131230932; + + // aapt resource value: 0x7F0800D5 + public const int radio = 2131230933; + + // aapt resource value: 0x7F0800D6 + public const int right = 2131230934; + + // aapt resource value: 0x7F0800D7 + public const int right_icon = 2131230935; + + // aapt resource value: 0x7F0800D8 + public const int right_side = 2131230936; + + // aapt resource value: 0x7F0800D9 + public const int rounded = 2131230937; + + // aapt resource value: 0x7F0800DA + public const int row_index_key = 2131230938; + + // aapt resource value: 0x7F0800DB + public const int save_non_transition_alpha = 2131230939; + + // aapt resource value: 0x7F0800DC + public const int save_overlay_view = 2131230940; + + // aapt resource value: 0x7F0800DD + public const int scale = 2131230941; + + // aapt resource value: 0x7F0800DE + public const int screen = 2131230942; + + // aapt resource value: 0x7F0800DF + public const int scroll = 2131230943; + + // aapt resource value: 0x7F0800E3 + public const int scrollable = 2131230947; + + // aapt resource value: 0x7F0800E0 + public const int scrollIndicatorDown = 2131230944; + + // aapt resource value: 0x7F0800E1 + public const int scrollIndicatorUp = 2131230945; + + // aapt resource value: 0x7F0800E2 + public const int scrollView = 2131230946; + + // aapt resource value: 0x7F0800E4 + public const int search_badge = 2131230948; + + // aapt resource value: 0x7F0800E5 + public const int search_bar = 2131230949; + + // aapt resource value: 0x7F0800E6 + public const int search_button = 2131230950; + + // aapt resource value: 0x7F0800E7 + public const int search_close_btn = 2131230951; + + // aapt resource value: 0x7F0800E8 + public const int search_edit_frame = 2131230952; + + // aapt resource value: 0x7F0800E9 + public const int search_go_btn = 2131230953; + + // aapt resource value: 0x7F0800EA + public const int search_mag_icon = 2131230954; + + // aapt resource value: 0x7F0800EB + public const int search_plate = 2131230955; + + // aapt resource value: 0x7F0800EC + public const int search_src_text = 2131230956; + + // aapt resource value: 0x7F0800ED + public const int search_voice_btn = 2131230957; + + // aapt resource value: 0x7F0800EF + public const int selected = 2131230959; + + // aapt resource value: 0x7F0800EE + public const int select_dialog_listview = 2131230958; + + // aapt resource value: 0x7F0800F0 + public const int shellcontent_appbar = 2131230960; + + // aapt resource value: 0x7F0800F1 + public const int shellcontent_toolbar = 2131230961; + + // aapt resource value: 0x7F080006 + public const int SHIFT = 2131230726; + + // aapt resource value: 0x7F0800F2 + public const int shortcut = 2131230962; + + // aapt resource value: 0x7F0800F3 + public const int showCustom = 2131230963; + + // aapt resource value: 0x7F0800F4 + public const int showHome = 2131230964; + + // aapt resource value: 0x7F0800F5 + public const int showTitle = 2131230965; + + // aapt resource value: 0x7F0800F6 + public const int skipCollapsed = 2131230966; + + // aapt resource value: 0x7F0800F7 + public const int slide = 2131230967; + + // aapt resource value: 0x7F0800F8 + public const int sliding_tabs = 2131230968; + + // aapt resource value: 0x7F0800F9 + public const int smallLabel = 2131230969; + + // aapt resource value: 0x7F0800FA + public const int snackbar_action = 2131230970; + + // aapt resource value: 0x7F0800FB + public const int snackbar_text = 2131230971; + + // aapt resource value: 0x7F0800FC + public const int snap = 2131230972; + + // aapt resource value: 0x7F0800FD + public const int snapMargins = 2131230973; + + // aapt resource value: 0x7F0800FE + public const int spacer = 2131230974; + + // aapt resource value: 0x7F0800FF + public const int split_action_bar = 2131230975; + + // aapt resource value: 0x7F080100 + public const int src_atop = 2131230976; + + // aapt resource value: 0x7F080101 + public const int src_in = 2131230977; + + // aapt resource value: 0x7F080102 + public const int src_over = 2131230978; + + // aapt resource value: 0x7F080103 + public const int start = 2131230979; + + // aapt resource value: 0x7F080104 + public const int status_bar_latest_event_content = 2131230980; + + // aapt resource value: 0x7F080105 + public const int stretch = 2131230981; + + // aapt resource value: 0x7F080106 + public const int submenuarrow = 2131230982; + + // aapt resource value: 0x7F080107 + public const int submit_area = 2131230983; + + // aapt resource value: 0x7F080007 + public const int SYM = 2131230727; + + // aapt resource value: 0x7F080108 + public const int tabMode = 2131230984; + + // aapt resource value: 0x7F080109 + public const int tag_accessibility_actions = 2131230985; + + // aapt resource value: 0x7F08010A + public const int tag_accessibility_clickable_spans = 2131230986; + + // aapt resource value: 0x7F08010B + public const int tag_accessibility_heading = 2131230987; + + // aapt resource value: 0x7F08010C + public const int tag_accessibility_pane_title = 2131230988; + + // aapt resource value: 0x7F08010D + public const int tag_screen_reader_focusable = 2131230989; + + // aapt resource value: 0x7F08010E + public const int tag_transition_group = 2131230990; + + // aapt resource value: 0x7F08010F + public const int tag_unhandled_key_event_manager = 2131230991; + + // aapt resource value: 0x7F080110 + public const int tag_unhandled_key_listeners = 2131230992; + + // aapt resource value: 0x7F080111 + public const int test_checkbox_android_button_tint = 2131230993; + + // aapt resource value: 0x7F080112 + public const int test_checkbox_app_button_tint = 2131230994; + + // aapt resource value: 0x7F080113 + public const int test_radiobutton_android_button_tint = 2131230995; + + // aapt resource value: 0x7F080114 + public const int test_radiobutton_app_button_tint = 2131230996; + + // aapt resource value: 0x7F080115 + public const int text = 2131230997; + + // aapt resource value: 0x7F080116 + public const int text2 = 2131230998; + + // aapt resource value: 0x7F080117 + public const int textEnd = 2131230999; + + // aapt resource value: 0x7F08011D + public const int textinput_counter = 2131231005; + + // aapt resource value: 0x7F08011E + public const int textinput_error = 2131231006; + + // aapt resource value: 0x7F08011F + public const int textinput_helper_text = 2131231007; + + // aapt resource value: 0x7F080120 + public const int textinput_placeholder = 2131231008; + + // aapt resource value: 0x7F080121 + public const int textinput_prefix_text = 2131231009; + + // aapt resource value: 0x7F080122 + public const int textinput_suffix_text = 2131231010; + + // aapt resource value: 0x7F080118 + public const int textSpacerNoButtons = 2131231000; + + // aapt resource value: 0x7F080119 + public const int textSpacerNoTitle = 2131231001; + + // aapt resource value: 0x7F08011A + public const int textStart = 2131231002; + + // aapt resource value: 0x7F08011B + public const int text_input_end_icon = 2131231003; + + // aapt resource value: 0x7F08011C + public const int text_input_start_icon = 2131231004; + + // aapt resource value: 0x7F080123 + public const int time = 2131231011; + + // aapt resource value: 0x7F080124 + public const int title = 2131231012; + + // aapt resource value: 0x7F080125 + public const int titleDividerNoCustom = 2131231013; + + // aapt resource value: 0x7F080126 + public const int title_template = 2131231014; + + // aapt resource value: 0x7F080127 + public const int toolbar = 2131231015; + + // aapt resource value: 0x7F080128 + public const int top = 2131231016; + + // aapt resource value: 0x7F080129 + public const int topPanel = 2131231017; + + // aapt resource value: 0x7F080008 + public const int TOP_END = 2131230728; + + // aapt resource value: 0x7F080009 + public const int TOP_START = 2131230729; + + // aapt resource value: 0x7F08012A + public const int touch_outside = 2131231018; + + // aapt resource value: 0x7F08012B + public const int transition_current_scene = 2131231019; + + // aapt resource value: 0x7F08012C + public const int transition_layout_save = 2131231020; + + // aapt resource value: 0x7F08012D + public const int transition_position = 2131231021; + + // aapt resource value: 0x7F08012E + public const int transition_scene_layoutid_cache = 2131231022; + + // aapt resource value: 0x7F08012F + public const int transition_transform = 2131231023; + + // aapt resource value: 0x7F080130 + public const int @unchecked = 2131231024; + + // aapt resource value: 0x7F080131 + public const int uniform = 2131231025; + + // aapt resource value: 0x7F080132 + public const int unlabeled = 2131231026; + + // aapt resource value: 0x7F080133 + public const int up = 2131231027; + + // aapt resource value: 0x7F080134 + public const int useLogo = 2131231028; + + // aapt resource value: 0x7F080135 + public const int view_offset_helper = 2131231029; + + // aapt resource value: 0x7F080136 + public const int view_tree_saved_state_registry_owner = 2131231030; + + // aapt resource value: 0x7F080137 + public const int visible = 2131231031; + + // aapt resource value: 0x7F080138 + public const int visible_removing_fragment_view_tag = 2131231032; + + // aapt resource value: 0x7F08013A + public const int withinBounds = 2131231034; + + // aapt resource value: 0x7F080139 + public const int withText = 2131231033; + + // aapt resource value: 0x7F08013B + public const int wrap_content = 2131231035; + + // aapt resource value: 0x7F08013C + public const int zero_corner_chip = 2131231036; + + static Id() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Id() + { + } + } + + public partial class Integer + { + + // aapt resource value: 0x7F090000 + public const int abc_config_activityDefaultDur = 2131296256; + + // aapt resource value: 0x7F090001 + public const int abc_config_activityShortDur = 2131296257; + + // aapt resource value: 0x7F090002 + public const int app_bar_elevation_anim_duration = 2131296258; + + // aapt resource value: 0x7F090003 + public const int bottom_sheet_slide_duration = 2131296259; + + // aapt resource value: 0x7F090004 + public const int cancel_button_image_alpha = 2131296260; + + // aapt resource value: 0x7F090005 + public const int config_tooltipAnimTime = 2131296261; + + // aapt resource value: 0x7F090006 + public const int design_snackbar_text_max_lines = 2131296262; + + // aapt resource value: 0x7F090007 + public const int design_tab_indicator_anim_duration_ms = 2131296263; + + // aapt resource value: 0x7F090008 + public const int hide_password_duration = 2131296264; + + // aapt resource value: 0x7F090009 + public const int mtrl_badge_max_character_count = 2131296265; + + // aapt resource value: 0x7F09000A + public const int mtrl_btn_anim_delay_ms = 2131296266; + + // aapt resource value: 0x7F09000B + public const int mtrl_btn_anim_duration_ms = 2131296267; + + // aapt resource value: 0x7F09000C + public const int mtrl_calendar_header_orientation = 2131296268; + + // aapt resource value: 0x7F09000D + public const int mtrl_calendar_selection_text_lines = 2131296269; + + // aapt resource value: 0x7F09000E + public const int mtrl_calendar_year_selector_span = 2131296270; + + // aapt resource value: 0x7F09000F + public const int mtrl_card_anim_delay_ms = 2131296271; + + // aapt resource value: 0x7F090010 + public const int mtrl_card_anim_duration_ms = 2131296272; + + // aapt resource value: 0x7F090011 + public const int mtrl_chip_anim_duration = 2131296273; + + // aapt resource value: 0x7F090012 + public const int mtrl_tab_indicator_anim_duration_ms = 2131296274; + + // aapt resource value: 0x7F090013 + public const int show_password_duration = 2131296275; + + // aapt resource value: 0x7F090014 + public const int status_bar_notification_info_maxnum = 2131296276; + + static Integer() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Integer() + { + } + } + + public partial class Interpolator + { + + // aapt resource value: 0x7F0A0000 + public const int btn_checkbox_checked_mtrl_animation_interpolator_0 = 2131361792; + + // aapt resource value: 0x7F0A0001 + public const int btn_checkbox_checked_mtrl_animation_interpolator_1 = 2131361793; + + // aapt resource value: 0x7F0A0002 + public const int btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 2131361794; + + // aapt resource value: 0x7F0A0003 + public const int btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 2131361795; + + // aapt resource value: 0x7F0A0004 + public const int btn_radio_to_off_mtrl_animation_interpolator_0 = 2131361796; + + // aapt resource value: 0x7F0A0005 + public const int btn_radio_to_on_mtrl_animation_interpolator_0 = 2131361797; + + // aapt resource value: 0x7F0A0006 + public const int fast_out_slow_in = 2131361798; + + // aapt resource value: 0x7F0A0007 + public const int mtrl_fast_out_linear_in = 2131361799; + + // aapt resource value: 0x7F0A0008 + public const int mtrl_fast_out_slow_in = 2131361800; + + // aapt resource value: 0x7F0A0009 + public const int mtrl_linear = 2131361801; + + // aapt resource value: 0x7F0A000A + public const int mtrl_linear_out_slow_in = 2131361802; + + static Interpolator() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Interpolator() + { + } + } + + public partial class Layout + { + + // aapt resource value: 0x7F0B0000 + public const int abc_action_bar_title_item = 2131427328; + + // aapt resource value: 0x7F0B0001 + public const int abc_action_bar_up_container = 2131427329; + + // aapt resource value: 0x7F0B0002 + public const int abc_action_menu_item_layout = 2131427330; + + // aapt resource value: 0x7F0B0003 + public const int abc_action_menu_layout = 2131427331; + + // aapt resource value: 0x7F0B0004 + public const int abc_action_mode_bar = 2131427332; + + // aapt resource value: 0x7F0B0005 + public const int abc_action_mode_close_item_material = 2131427333; + + // aapt resource value: 0x7F0B0006 + public const int abc_activity_chooser_view = 2131427334; + + // aapt resource value: 0x7F0B0007 + public const int abc_activity_chooser_view_list_item = 2131427335; + + // aapt resource value: 0x7F0B0008 + public const int abc_alert_dialog_button_bar_material = 2131427336; + + // aapt resource value: 0x7F0B0009 + public const int abc_alert_dialog_material = 2131427337; + + // aapt resource value: 0x7F0B000A + public const int abc_alert_dialog_title_material = 2131427338; + + // aapt resource value: 0x7F0B000B + public const int abc_cascading_menu_item_layout = 2131427339; + + // aapt resource value: 0x7F0B000C + public const int abc_dialog_title_material = 2131427340; + + // aapt resource value: 0x7F0B000D + public const int abc_expanded_menu_layout = 2131427341; + + // aapt resource value: 0x7F0B000E + public const int abc_list_menu_item_checkbox = 2131427342; + + // aapt resource value: 0x7F0B000F + public const int abc_list_menu_item_icon = 2131427343; + + // aapt resource value: 0x7F0B0010 + public const int abc_list_menu_item_layout = 2131427344; + + // aapt resource value: 0x7F0B0011 + public const int abc_list_menu_item_radio = 2131427345; + + // aapt resource value: 0x7F0B0012 + public const int abc_popup_menu_header_item_layout = 2131427346; + + // aapt resource value: 0x7F0B0013 + public const int abc_popup_menu_item_layout = 2131427347; + + // aapt resource value: 0x7F0B0014 + public const int abc_screen_content_include = 2131427348; + + // aapt resource value: 0x7F0B0015 + public const int abc_screen_simple = 2131427349; + + // aapt resource value: 0x7F0B0016 + public const int abc_screen_simple_overlay_action_mode = 2131427350; + + // aapt resource value: 0x7F0B0017 + public const int abc_screen_toolbar = 2131427351; + + // aapt resource value: 0x7F0B0018 + public const int abc_search_dropdown_item_icons_2line = 2131427352; + + // aapt resource value: 0x7F0B0019 + public const int abc_search_view = 2131427353; + + // aapt resource value: 0x7F0B001A + public const int abc_select_dialog_material = 2131427354; + + // aapt resource value: 0x7F0B001B + public const int abc_tooltip = 2131427355; + + // aapt resource value: 0x7F0B001C + public const int BottomTabLayout = 2131427356; + + // aapt resource value: 0x7F0B001D + public const int browser_actions_context_menu_page = 2131427357; + + // aapt resource value: 0x7F0B001E + public const int browser_actions_context_menu_row = 2131427358; + + // aapt resource value: 0x7F0B001F + public const int custom_dialog = 2131427359; + + // aapt resource value: 0x7F0B0020 + public const int design_bottom_navigation_item = 2131427360; + + // aapt resource value: 0x7F0B0021 + public const int design_bottom_sheet_dialog = 2131427361; + + // aapt resource value: 0x7F0B0022 + public const int design_layout_snackbar = 2131427362; + + // aapt resource value: 0x7F0B0023 + public const int design_layout_snackbar_include = 2131427363; + + // aapt resource value: 0x7F0B0024 + public const int design_layout_tab_icon = 2131427364; + + // aapt resource value: 0x7F0B0025 + public const int design_layout_tab_text = 2131427365; + + // aapt resource value: 0x7F0B0026 + public const int design_menu_item_action_area = 2131427366; + + // aapt resource value: 0x7F0B0027 + public const int design_navigation_item = 2131427367; + + // aapt resource value: 0x7F0B0028 + public const int design_navigation_item_header = 2131427368; + + // aapt resource value: 0x7F0B0029 + public const int design_navigation_item_separator = 2131427369; + + // aapt resource value: 0x7F0B002A + public const int design_navigation_item_subheader = 2131427370; + + // aapt resource value: 0x7F0B002B + public const int design_navigation_menu = 2131427371; + + // aapt resource value: 0x7F0B002C + public const int design_navigation_menu_item = 2131427372; + + // aapt resource value: 0x7F0B002D + public const int design_text_input_end_icon = 2131427373; + + // aapt resource value: 0x7F0B002E + public const int design_text_input_start_icon = 2131427374; + + // aapt resource value: 0x7F0B002F + public const int FallbackTabbarDoNotUse = 2131427375; + + // aapt resource value: 0x7F0B0030 + public const int FallbackToolbarDoNotUse = 2131427376; + + // aapt resource value: 0x7F0B0031 + public const int FlyoutContent = 2131427377; + + // aapt resource value: 0x7F0B0032 + public const int mtrl_alert_dialog = 2131427378; + + // aapt resource value: 0x7F0B0033 + public const int mtrl_alert_dialog_actions = 2131427379; + + // aapt resource value: 0x7F0B0034 + public const int mtrl_alert_dialog_title = 2131427380; + + // aapt resource value: 0x7F0B0035 + public const int mtrl_alert_select_dialog_item = 2131427381; + + // aapt resource value: 0x7F0B0036 + public const int mtrl_alert_select_dialog_multichoice = 2131427382; + + // aapt resource value: 0x7F0B0037 + public const int mtrl_alert_select_dialog_singlechoice = 2131427383; + + // aapt resource value: 0x7F0B0038 + public const int mtrl_calendar_day = 2131427384; + + // aapt resource value: 0x7F0B003A + public const int mtrl_calendar_days_of_week = 2131427386; + + // aapt resource value: 0x7F0B0039 + public const int mtrl_calendar_day_of_week = 2131427385; + + // aapt resource value: 0x7F0B003B + public const int mtrl_calendar_horizontal = 2131427387; + + // aapt resource value: 0x7F0B003C + public const int mtrl_calendar_month = 2131427388; + + // aapt resource value: 0x7F0B003F + public const int mtrl_calendar_months = 2131427391; + + // aapt resource value: 0x7F0B003D + public const int mtrl_calendar_month_labeled = 2131427389; + + // aapt resource value: 0x7F0B003E + public const int mtrl_calendar_month_navigation = 2131427390; + + // aapt resource value: 0x7F0B0040 + public const int mtrl_calendar_vertical = 2131427392; + + // aapt resource value: 0x7F0B0041 + public const int mtrl_calendar_year = 2131427393; + + // aapt resource value: 0x7F0B0042 + public const int mtrl_layout_snackbar = 2131427394; + + // aapt resource value: 0x7F0B0043 + public const int mtrl_layout_snackbar_include = 2131427395; + + // aapt resource value: 0x7F0B0044 + public const int mtrl_picker_actions = 2131427396; + + // aapt resource value: 0x7F0B0045 + public const int mtrl_picker_dialog = 2131427397; + + // aapt resource value: 0x7F0B0046 + public const int mtrl_picker_fullscreen = 2131427398; + + // aapt resource value: 0x7F0B0047 + public const int mtrl_picker_header_dialog = 2131427399; + + // aapt resource value: 0x7F0B0048 + public const int mtrl_picker_header_fullscreen = 2131427400; + + // aapt resource value: 0x7F0B0049 + public const int mtrl_picker_header_selection_text = 2131427401; + + // aapt resource value: 0x7F0B004A + public const int mtrl_picker_header_title_text = 2131427402; + + // aapt resource value: 0x7F0B004B + public const int mtrl_picker_header_toggle = 2131427403; + + // aapt resource value: 0x7F0B004C + public const int mtrl_picker_text_input_date = 2131427404; + + // aapt resource value: 0x7F0B004D + public const int mtrl_picker_text_input_date_range = 2131427405; + + // aapt resource value: 0x7F0B004E + public const int notification_action = 2131427406; + + // aapt resource value: 0x7F0B004F + public const int notification_action_tombstone = 2131427407; + + // aapt resource value: 0x7F0B0050 + public const int notification_media_action = 2131427408; + + // aapt resource value: 0x7F0B0051 + public const int notification_media_cancel_action = 2131427409; + + // aapt resource value: 0x7F0B0052 + public const int notification_template_big_media = 2131427410; + + // aapt resource value: 0x7F0B0053 + public const int notification_template_big_media_custom = 2131427411; + + // aapt resource value: 0x7F0B0054 + public const int notification_template_big_media_narrow = 2131427412; + + // aapt resource value: 0x7F0B0055 + public const int notification_template_big_media_narrow_custom = 2131427413; + + // aapt resource value: 0x7F0B0056 + public const int notification_template_custom_big = 2131427414; + + // aapt resource value: 0x7F0B0057 + public const int notification_template_icon_group = 2131427415; + + // aapt resource value: 0x7F0B0058 + public const int notification_template_lines_media = 2131427416; + + // aapt resource value: 0x7F0B0059 + public const int notification_template_media = 2131427417; + + // aapt resource value: 0x7F0B005A + public const int notification_template_media_custom = 2131427418; + + // aapt resource value: 0x7F0B005B + public const int notification_template_part_chronometer = 2131427419; + + // aapt resource value: 0x7F0B005C + public const int notification_template_part_time = 2131427420; + + // aapt resource value: 0x7F0B005D + public const int RootLayout = 2131427421; + + // aapt resource value: 0x7F0B005E + public const int select_dialog_item_material = 2131427422; + + // aapt resource value: 0x7F0B005F + public const int select_dialog_multichoice_material = 2131427423; + + // aapt resource value: 0x7F0B0060 + public const int select_dialog_singlechoice_material = 2131427424; + + // aapt resource value: 0x7F0B0061 + public const int ShellContent = 2131427425; + + // aapt resource value: 0x7F0B0062 + public const int support_simple_spinner_dropdown_item = 2131427426; + + // aapt resource value: 0x7F0B0063 + public const int Tabbar = 2131427427; + + // aapt resource value: 0x7F0B0064 + public const int test_action_chip = 2131427428; + + // aapt resource value: 0x7F0B0065 + public const int test_chip_zero_corner_radius = 2131427429; + + // aapt resource value: 0x7F0B0066 + public const int test_design_checkbox = 2131427430; + + // aapt resource value: 0x7F0B0067 + public const int test_design_radiobutton = 2131427431; + + // aapt resource value: 0x7F0B0068 + public const int test_reflow_chipgroup = 2131427432; + + // aapt resource value: 0x7F0B0069 + public const int test_toolbar = 2131427433; + + // aapt resource value: 0x7F0B006A + public const int test_toolbar_custom_background = 2131427434; + + // aapt resource value: 0x7F0B006B + public const int test_toolbar_elevation = 2131427435; + + // aapt resource value: 0x7F0B006C + public const int test_toolbar_surface = 2131427436; + + // aapt resource value: 0x7F0B0071 + public const int text_view_without_line_height = 2131427441; + + // aapt resource value: 0x7F0B006D + public const int text_view_with_line_height_from_appearance = 2131427437; + + // aapt resource value: 0x7F0B006E + public const int text_view_with_line_height_from_layout = 2131427438; + + // aapt resource value: 0x7F0B006F + public const int text_view_with_line_height_from_style = 2131427439; + + // aapt resource value: 0x7F0B0070 + public const int text_view_with_theme_line_height = 2131427440; + + // aapt resource value: 0x7F0B0072 + public const int Toolbar = 2131427442; + + static Layout() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Layout() + { + } + } + + public partial class Mipmap + { + + // aapt resource value: 0x7F0C0000 + public const int icon = 2131492864; + + // aapt resource value: 0x7F0C0001 + public const int icon_round = 2131492865; + + // aapt resource value: 0x7F0C0002 + public const int launcher_foreground = 2131492866; + + static Mipmap() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Mipmap() + { + } + } + + public partial class Plurals + { + + // aapt resource value: 0x7F0D0000 + public const int mtrl_badge_content_description = 2131558400; + + static Plurals() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Plurals() + { + } + } + + public partial class String + { + + // aapt resource value: 0x7F0E0000 + public const int abc_action_bar_home_description = 2131623936; + + // aapt resource value: 0x7F0E0001 + public const int abc_action_bar_up_description = 2131623937; + + // aapt resource value: 0x7F0E0002 + public const int abc_action_menu_overflow_description = 2131623938; + + // aapt resource value: 0x7F0E0003 + public const int abc_action_mode_done = 2131623939; + + // aapt resource value: 0x7F0E0005 + public const int abc_activitychooserview_choose_application = 2131623941; + + // aapt resource value: 0x7F0E0004 + public const int abc_activity_chooser_view_see_all = 2131623940; + + // aapt resource value: 0x7F0E0006 + public const int abc_capital_off = 2131623942; + + // aapt resource value: 0x7F0E0007 + public const int abc_capital_on = 2131623943; + + // aapt resource value: 0x7F0E0008 + public const int abc_menu_alt_shortcut_label = 2131623944; + + // aapt resource value: 0x7F0E0009 + public const int abc_menu_ctrl_shortcut_label = 2131623945; + + // aapt resource value: 0x7F0E000A + public const int abc_menu_delete_shortcut_label = 2131623946; + + // aapt resource value: 0x7F0E000B + public const int abc_menu_enter_shortcut_label = 2131623947; + + // aapt resource value: 0x7F0E000C + public const int abc_menu_function_shortcut_label = 2131623948; + + // aapt resource value: 0x7F0E000D + public const int abc_menu_meta_shortcut_label = 2131623949; + + // aapt resource value: 0x7F0E000E + public const int abc_menu_shift_shortcut_label = 2131623950; + + // aapt resource value: 0x7F0E000F + public const int abc_menu_space_shortcut_label = 2131623951; + + // aapt resource value: 0x7F0E0010 + public const int abc_menu_sym_shortcut_label = 2131623952; + + // aapt resource value: 0x7F0E0011 + public const int abc_prepend_shortcut_label = 2131623953; + + // aapt resource value: 0x7F0E0013 + public const int abc_searchview_description_clear = 2131623955; + + // aapt resource value: 0x7F0E0014 + public const int abc_searchview_description_query = 2131623956; + + // aapt resource value: 0x7F0E0015 + public const int abc_searchview_description_search = 2131623957; + + // aapt resource value: 0x7F0E0016 + public const int abc_searchview_description_submit = 2131623958; + + // aapt resource value: 0x7F0E0017 + public const int abc_searchview_description_voice = 2131623959; + + // aapt resource value: 0x7F0E0012 + public const int abc_search_hint = 2131623954; + + // aapt resource value: 0x7F0E0018 + public const int abc_shareactionprovider_share_with = 2131623960; + + // aapt resource value: 0x7F0E0019 + public const int abc_shareactionprovider_share_with_application = 2131623961; + + // aapt resource value: 0x7F0E001A + public const int abc_toolbar_collapse_description = 2131623962; + + // aapt resource value: 0x7F0E001B + public const int appbar_scrolling_view_behavior = 2131623963; + + // aapt resource value: 0x7F0E001C + public const int bottom_sheet_behavior = 2131623964; + + // aapt resource value: 0x7F0E001D + public const int character_counter_content_description = 2131623965; + + // aapt resource value: 0x7F0E001E + public const int character_counter_overflowed_content_description = 2131623966; + + // aapt resource value: 0x7F0E001F + public const int character_counter_pattern = 2131623967; + + // aapt resource value: 0x7F0E0020 + public const int chip_text = 2131623968; + + // aapt resource value: 0x7F0E0021 + public const int clear_text_end_icon_content_description = 2131623969; + + // aapt resource value: 0x7F0E0022 + public const int copy_toast_msg = 2131623970; + + // aapt resource value: 0x7F0E0023 + public const int error_icon_content_description = 2131623971; + + // aapt resource value: 0x7F0E0024 + public const int exposed_dropdown_menu_content_description = 2131623972; + + // aapt resource value: 0x7F0E0025 + public const int fab_transformation_scrim_behavior = 2131623973; + + // aapt resource value: 0x7F0E0026 + public const int fab_transformation_sheet_behavior = 2131623974; + + // aapt resource value: 0x7F0E0027 + public const int fallback_menu_item_copy_link = 2131623975; + + // aapt resource value: 0x7F0E0028 + public const int fallback_menu_item_open_in_browser = 2131623976; + + // aapt resource value: 0x7F0E0029 + public const int fallback_menu_item_share_link = 2131623977; + + // aapt resource value: 0x7F0E002A + public const int hide_bottom_view_on_scroll_behavior = 2131623978; + + // aapt resource value: 0x7F0E002B + public const int icon_content_description = 2131623979; + + // aapt resource value: 0x7F0E002C + public const int item_view_role_description = 2131623980; + + // aapt resource value: 0x7F0E002D + public const int material_slider_range_end = 2131623981; + + // aapt resource value: 0x7F0E002E + public const int material_slider_range_start = 2131623982; + + // aapt resource value: 0x7F0E002F + public const int mtrl_badge_numberless_content_description = 2131623983; + + // aapt resource value: 0x7F0E0030 + public const int mtrl_chip_close_icon_content_description = 2131623984; + + // aapt resource value: 0x7F0E0031 + public const int mtrl_exceed_max_badge_number_content_description = 2131623985; + + // aapt resource value: 0x7F0E0032 + public const int mtrl_exceed_max_badge_number_suffix = 2131623986; + + // aapt resource value: 0x7F0E0033 + public const int mtrl_picker_a11y_next_month = 2131623987; + + // aapt resource value: 0x7F0E0034 + public const int mtrl_picker_a11y_prev_month = 2131623988; + + // aapt resource value: 0x7F0E0035 + public const int mtrl_picker_announce_current_selection = 2131623989; + + // aapt resource value: 0x7F0E0036 + public const int mtrl_picker_cancel = 2131623990; + + // aapt resource value: 0x7F0E0037 + public const int mtrl_picker_confirm = 2131623991; + + // aapt resource value: 0x7F0E0038 + public const int mtrl_picker_date_header_selected = 2131623992; + + // aapt resource value: 0x7F0E0039 + public const int mtrl_picker_date_header_title = 2131623993; + + // aapt resource value: 0x7F0E003A + public const int mtrl_picker_date_header_unselected = 2131623994; + + // aapt resource value: 0x7F0E003B + public const int mtrl_picker_day_of_week_column_header = 2131623995; + + // aapt resource value: 0x7F0E003C + public const int mtrl_picker_invalid_format = 2131623996; + + // aapt resource value: 0x7F0E003D + public const int mtrl_picker_invalid_format_example = 2131623997; + + // aapt resource value: 0x7F0E003E + public const int mtrl_picker_invalid_format_use = 2131623998; + + // aapt resource value: 0x7F0E003F + public const int mtrl_picker_invalid_range = 2131623999; + + // aapt resource value: 0x7F0E0040 + public const int mtrl_picker_navigate_to_year_description = 2131624000; + + // aapt resource value: 0x7F0E0041 + public const int mtrl_picker_out_of_range = 2131624001; + + // aapt resource value: 0x7F0E0042 + public const int mtrl_picker_range_header_only_end_selected = 2131624002; + + // aapt resource value: 0x7F0E0043 + public const int mtrl_picker_range_header_only_start_selected = 2131624003; + + // aapt resource value: 0x7F0E0044 + public const int mtrl_picker_range_header_selected = 2131624004; + + // aapt resource value: 0x7F0E0045 + public const int mtrl_picker_range_header_title = 2131624005; + + // aapt resource value: 0x7F0E0046 + public const int mtrl_picker_range_header_unselected = 2131624006; + + // aapt resource value: 0x7F0E0047 + public const int mtrl_picker_save = 2131624007; + + // aapt resource value: 0x7F0E0048 + public const int mtrl_picker_text_input_date_hint = 2131624008; + + // aapt resource value: 0x7F0E0049 + public const int mtrl_picker_text_input_date_range_end_hint = 2131624009; + + // aapt resource value: 0x7F0E004A + public const int mtrl_picker_text_input_date_range_start_hint = 2131624010; + + // aapt resource value: 0x7F0E004B + public const int mtrl_picker_text_input_day_abbr = 2131624011; + + // aapt resource value: 0x7F0E004C + public const int mtrl_picker_text_input_month_abbr = 2131624012; + + // aapt resource value: 0x7F0E004D + public const int mtrl_picker_text_input_year_abbr = 2131624013; + + // aapt resource value: 0x7F0E004E + public const int mtrl_picker_toggle_to_calendar_input_mode = 2131624014; + + // aapt resource value: 0x7F0E004F + public const int mtrl_picker_toggle_to_day_selection = 2131624015; + + // aapt resource value: 0x7F0E0050 + public const int mtrl_picker_toggle_to_text_input_mode = 2131624016; + + // aapt resource value: 0x7F0E0051 + public const int mtrl_picker_toggle_to_year_selection = 2131624017; + + // aapt resource value: 0x7F0E0052 + public const int overflow_tab_title = 2131624018; + + // aapt resource value: 0x7F0E0053 + public const int password_toggle_content_description = 2131624019; + + // aapt resource value: 0x7F0E0054 + public const int path_password_eye = 2131624020; + + // aapt resource value: 0x7F0E0055 + public const int path_password_eye_mask_strike_through = 2131624021; + + // aapt resource value: 0x7F0E0056 + public const int path_password_eye_mask_visible = 2131624022; + + // aapt resource value: 0x7F0E0057 + public const int path_password_strike_through = 2131624023; + + // aapt resource value: 0x7F0E0058 + public const int search_menu_title = 2131624024; + + // aapt resource value: 0x7F0E0059 + public const int status_bar_notification_info_overflow = 2131624025; + + static String() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private String() + { + } + } + + public partial class Style + { + + // aapt resource value: 0x7F0F0000 + public const int AlertDialog_AppCompat = 2131689472; + + // aapt resource value: 0x7F0F0001 + public const int AlertDialog_AppCompat_Light = 2131689473; + + // aapt resource value: 0x7F0F0002 + public const int AndroidThemeColorAccentYellow = 2131689474; + + // aapt resource value: 0x7F0F0003 + public const int Animation_AppCompat_Dialog = 2131689475; + + // aapt resource value: 0x7F0F0004 + public const int Animation_AppCompat_DropDownUp = 2131689476; + + // aapt resource value: 0x7F0F0005 + public const int Animation_AppCompat_Tooltip = 2131689477; + + // aapt resource value: 0x7F0F0006 + public const int Animation_Design_BottomSheetDialog = 2131689478; + + // aapt resource value: 0x7F0F0007 + public const int Animation_MaterialComponents_BottomSheetDialog = 2131689479; + + // aapt resource value: 0x7F0F0008 + public const int AppCompatDialogStyle = 2131689480; + + // aapt resource value: 0x7F0F0009 + public const int Base_AlertDialog_AppCompat = 2131689481; + + // aapt resource value: 0x7F0F000A + public const int Base_AlertDialog_AppCompat_Light = 2131689482; + + // aapt resource value: 0x7F0F000B + public const int Base_Animation_AppCompat_Dialog = 2131689483; + + // aapt resource value: 0x7F0F000C + public const int Base_Animation_AppCompat_DropDownUp = 2131689484; + + // aapt resource value: 0x7F0F000D + public const int Base_Animation_AppCompat_Tooltip = 2131689485; + + // aapt resource value: 0x7F0F000E + public const int Base_CardView = 2131689486; + + // aapt resource value: 0x7F0F0010 + public const int Base_DialogWindowTitleBackground_AppCompat = 2131689488; + + // aapt resource value: 0x7F0F000F + public const int Base_DialogWindowTitle_AppCompat = 2131689487; + + // aapt resource value: 0x7F0F0011 + public const int Base_MaterialAlertDialog_MaterialComponents_Title_Icon = 2131689489; + + // aapt resource value: 0x7F0F0012 + public const int Base_MaterialAlertDialog_MaterialComponents_Title_Panel = 2131689490; + + // aapt resource value: 0x7F0F0013 + public const int Base_MaterialAlertDialog_MaterialComponents_Title_Text = 2131689491; + + // aapt resource value: 0x7F0F0014 + public const int Base_TextAppearance_AppCompat = 2131689492; + + // aapt resource value: 0x7F0F0015 + public const int Base_TextAppearance_AppCompat_Body1 = 2131689493; + + // aapt resource value: 0x7F0F0016 + public const int Base_TextAppearance_AppCompat_Body2 = 2131689494; + + // aapt resource value: 0x7F0F0017 + public const int Base_TextAppearance_AppCompat_Button = 2131689495; + + // aapt resource value: 0x7F0F0018 + public const int Base_TextAppearance_AppCompat_Caption = 2131689496; + + // aapt resource value: 0x7F0F0019 + public const int Base_TextAppearance_AppCompat_Display1 = 2131689497; + + // aapt resource value: 0x7F0F001A + public const int Base_TextAppearance_AppCompat_Display2 = 2131689498; + + // aapt resource value: 0x7F0F001B + public const int Base_TextAppearance_AppCompat_Display3 = 2131689499; + + // aapt resource value: 0x7F0F001C + public const int Base_TextAppearance_AppCompat_Display4 = 2131689500; + + // aapt resource value: 0x7F0F001D + public const int Base_TextAppearance_AppCompat_Headline = 2131689501; + + // aapt resource value: 0x7F0F001E + public const int Base_TextAppearance_AppCompat_Inverse = 2131689502; + + // aapt resource value: 0x7F0F001F + public const int Base_TextAppearance_AppCompat_Large = 2131689503; + + // aapt resource value: 0x7F0F0020 + public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131689504; + + // aapt resource value: 0x7F0F0021 + public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131689505; + + // aapt resource value: 0x7F0F0022 + public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131689506; + + // aapt resource value: 0x7F0F0023 + public const int Base_TextAppearance_AppCompat_Medium = 2131689507; + + // aapt resource value: 0x7F0F0024 + public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131689508; + + // aapt resource value: 0x7F0F0025 + public const int Base_TextAppearance_AppCompat_Menu = 2131689509; + + // aapt resource value: 0x7F0F0026 + public const int Base_TextAppearance_AppCompat_SearchResult = 2131689510; + + // aapt resource value: 0x7F0F0027 + public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131689511; + + // aapt resource value: 0x7F0F0028 + public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131689512; + + // aapt resource value: 0x7F0F0029 + public const int Base_TextAppearance_AppCompat_Small = 2131689513; + + // aapt resource value: 0x7F0F002A + public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131689514; + + // aapt resource value: 0x7F0F002B + public const int Base_TextAppearance_AppCompat_Subhead = 2131689515; + + // aapt resource value: 0x7F0F002C + public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131689516; + + // aapt resource value: 0x7F0F002D + public const int Base_TextAppearance_AppCompat_Title = 2131689517; + + // aapt resource value: 0x7F0F002E + public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131689518; + + // aapt resource value: 0x7F0F002F + public const int Base_TextAppearance_AppCompat_Tooltip = 2131689519; + + // aapt resource value: 0x7F0F0030 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131689520; + + // aapt resource value: 0x7F0F0031 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131689521; + + // aapt resource value: 0x7F0F0032 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131689522; + + // aapt resource value: 0x7F0F0033 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131689523; + + // aapt resource value: 0x7F0F0034 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131689524; + + // aapt resource value: 0x7F0F0035 + public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131689525; + + // aapt resource value: 0x7F0F0036 + public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131689526; + + // aapt resource value: 0x7F0F0037 + public const int Base_TextAppearance_AppCompat_Widget_Button = 2131689527; + + // aapt resource value: 0x7F0F0038 + public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131689528; + + // aapt resource value: 0x7F0F0039 + public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131689529; + + // aapt resource value: 0x7F0F003A + public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131689530; + + // aapt resource value: 0x7F0F003B + public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131689531; + + // aapt resource value: 0x7F0F003C + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131689532; + + // aapt resource value: 0x7F0F003D + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131689533; + + // aapt resource value: 0x7F0F003E + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131689534; + + // aapt resource value: 0x7F0F003F + public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131689535; + + // aapt resource value: 0x7F0F0040 + public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131689536; + + // aapt resource value: 0x7F0F0041 + public const int Base_TextAppearance_MaterialComponents_Badge = 2131689537; + + // aapt resource value: 0x7F0F0042 + public const int Base_TextAppearance_MaterialComponents_Button = 2131689538; + + // aapt resource value: 0x7F0F0043 + public const int Base_TextAppearance_MaterialComponents_Headline6 = 2131689539; + + // aapt resource value: 0x7F0F0044 + public const int Base_TextAppearance_MaterialComponents_Subtitle2 = 2131689540; + + // aapt resource value: 0x7F0F0045 + public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131689541; + + // aapt resource value: 0x7F0F0046 + public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131689542; + + // aapt resource value: 0x7F0F0047 + public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131689543; + + // aapt resource value: 0x7F0F0069 + public const int Base_ThemeOverlay_AppCompat = 2131689577; + + // aapt resource value: 0x7F0F006A + public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131689578; + + // aapt resource value: 0x7F0F006B + public const int Base_ThemeOverlay_AppCompat_Dark = 2131689579; + + // aapt resource value: 0x7F0F006C + public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131689580; + + // aapt resource value: 0x7F0F006D + public const int Base_ThemeOverlay_AppCompat_Dialog = 2131689581; + + // aapt resource value: 0x7F0F006E + public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131689582; + + // aapt resource value: 0x7F0F006F + public const int Base_ThemeOverlay_AppCompat_Light = 2131689583; + + // aapt resource value: 0x7F0F0070 + public const int Base_ThemeOverlay_MaterialComponents_Dialog = 2131689584; + + // aapt resource value: 0x7F0F0071 + public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131689585; + + // aapt resource value: 0x7F0F0072 + public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = 2131689586; + + // aapt resource value: 0x7F0F0073 + public const int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = 2131689587; + + // aapt resource value: 0x7F0F0074 + public const int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog = 2131689588; + + // aapt resource value: 0x7F0F0048 + public const int Base_Theme_AppCompat = 2131689544; + + // aapt resource value: 0x7F0F0049 + public const int Base_Theme_AppCompat_CompactMenu = 2131689545; + + // aapt resource value: 0x7F0F004A + public const int Base_Theme_AppCompat_Dialog = 2131689546; + + // aapt resource value: 0x7F0F004E + public const int Base_Theme_AppCompat_DialogWhenLarge = 2131689550; + + // aapt resource value: 0x7F0F004B + public const int Base_Theme_AppCompat_Dialog_Alert = 2131689547; + + // aapt resource value: 0x7F0F004C + public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131689548; + + // aapt resource value: 0x7F0F004D + public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131689549; + + // aapt resource value: 0x7F0F004F + public const int Base_Theme_AppCompat_Light = 2131689551; + + // aapt resource value: 0x7F0F0050 + public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131689552; + + // aapt resource value: 0x7F0F0051 + public const int Base_Theme_AppCompat_Light_Dialog = 2131689553; + + // aapt resource value: 0x7F0F0055 + public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131689557; + + // aapt resource value: 0x7F0F0052 + public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131689554; + + // aapt resource value: 0x7F0F0053 + public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131689555; + + // aapt resource value: 0x7F0F0054 + public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131689556; + + // aapt resource value: 0x7F0F0056 + public const int Base_Theme_MaterialComponents = 2131689558; + + // aapt resource value: 0x7F0F0057 + public const int Base_Theme_MaterialComponents_Bridge = 2131689559; + + // aapt resource value: 0x7F0F0058 + public const int Base_Theme_MaterialComponents_CompactMenu = 2131689560; + + // aapt resource value: 0x7F0F0059 + public const int Base_Theme_MaterialComponents_Dialog = 2131689561; + + // aapt resource value: 0x7F0F005E + public const int Base_Theme_MaterialComponents_DialogWhenLarge = 2131689566; + + // aapt resource value: 0x7F0F005A + public const int Base_Theme_MaterialComponents_Dialog_Alert = 2131689562; + + // aapt resource value: 0x7F0F005B + public const int Base_Theme_MaterialComponents_Dialog_Bridge = 2131689563; + + // aapt resource value: 0x7F0F005C + public const int Base_Theme_MaterialComponents_Dialog_FixedSize = 2131689564; + + // aapt resource value: 0x7F0F005D + public const int Base_Theme_MaterialComponents_Dialog_MinWidth = 2131689565; + + // aapt resource value: 0x7F0F005F + public const int Base_Theme_MaterialComponents_Light = 2131689567; + + // aapt resource value: 0x7F0F0060 + public const int Base_Theme_MaterialComponents_Light_Bridge = 2131689568; + + // aapt resource value: 0x7F0F0061 + public const int Base_Theme_MaterialComponents_Light_DarkActionBar = 2131689569; + + // aapt resource value: 0x7F0F0062 + public const int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131689570; + + // aapt resource value: 0x7F0F0063 + public const int Base_Theme_MaterialComponents_Light_Dialog = 2131689571; + + // aapt resource value: 0x7F0F0068 + public const int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 2131689576; + + // aapt resource value: 0x7F0F0064 + public const int Base_Theme_MaterialComponents_Light_Dialog_Alert = 2131689572; + + // aapt resource value: 0x7F0F0065 + public const int Base_Theme_MaterialComponents_Light_Dialog_Bridge = 2131689573; + + // aapt resource value: 0x7F0F0066 + public const int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 2131689574; + + // aapt resource value: 0x7F0F0067 + public const int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 2131689575; + + // aapt resource value: 0x7F0F007E + public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 2131689598; + + // aapt resource value: 0x7F0F007F + public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131689599; + + // aapt resource value: 0x7F0F0080 + public const int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog = 2131689600; + + // aapt resource value: 0x7F0F0075 + public const int Base_V14_Theme_MaterialComponents = 2131689589; + + // aapt resource value: 0x7F0F0076 + public const int Base_V14_Theme_MaterialComponents_Bridge = 2131689590; + + // aapt resource value: 0x7F0F0077 + public const int Base_V14_Theme_MaterialComponents_Dialog = 2131689591; + + // aapt resource value: 0x7F0F0078 + public const int Base_V14_Theme_MaterialComponents_Dialog_Bridge = 2131689592; + + // aapt resource value: 0x7F0F0079 + public const int Base_V14_Theme_MaterialComponents_Light = 2131689593; + + // aapt resource value: 0x7F0F007A + public const int Base_V14_Theme_MaterialComponents_Light_Bridge = 2131689594; + + // aapt resource value: 0x7F0F007B + public const int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131689595; + + // aapt resource value: 0x7F0F007C + public const int Base_V14_Theme_MaterialComponents_Light_Dialog = 2131689596; + + // aapt resource value: 0x7F0F007D + public const int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge = 2131689597; + + // aapt resource value: 0x7F0F0089 + public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131689609; + + // aapt resource value: 0x7F0F0081 + public const int Base_V21_Theme_AppCompat = 2131689601; + + // aapt resource value: 0x7F0F0082 + public const int Base_V21_Theme_AppCompat_Dialog = 2131689602; + + // aapt resource value: 0x7F0F0083 + public const int Base_V21_Theme_AppCompat_Light = 2131689603; + + // aapt resource value: 0x7F0F0084 + public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131689604; + + // aapt resource value: 0x7F0F0085 + public const int Base_V21_Theme_MaterialComponents = 2131689605; + + // aapt resource value: 0x7F0F0086 + public const int Base_V21_Theme_MaterialComponents_Dialog = 2131689606; + + // aapt resource value: 0x7F0F0087 + public const int Base_V21_Theme_MaterialComponents_Light = 2131689607; + + // aapt resource value: 0x7F0F0088 + public const int Base_V21_Theme_MaterialComponents_Light_Dialog = 2131689608; + + // aapt resource value: 0x7F0F008A + public const int Base_V22_Theme_AppCompat = 2131689610; + + // aapt resource value: 0x7F0F008B + public const int Base_V22_Theme_AppCompat_Light = 2131689611; + + // aapt resource value: 0x7F0F008C + public const int Base_V23_Theme_AppCompat = 2131689612; + + // aapt resource value: 0x7F0F008D + public const int Base_V23_Theme_AppCompat_Light = 2131689613; + + // aapt resource value: 0x7F0F008E + public const int Base_V26_Theme_AppCompat = 2131689614; + + // aapt resource value: 0x7F0F008F + public const int Base_V26_Theme_AppCompat_Light = 2131689615; + + // aapt resource value: 0x7F0F0090 + public const int Base_V26_Widget_AppCompat_Toolbar = 2131689616; + + // aapt resource value: 0x7F0F0091 + public const int Base_V28_Theme_AppCompat = 2131689617; + + // aapt resource value: 0x7F0F0092 + public const int Base_V28_Theme_AppCompat_Light = 2131689618; + + // aapt resource value: 0x7F0F0097 + public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131689623; + + // aapt resource value: 0x7F0F0093 + public const int Base_V7_Theme_AppCompat = 2131689619; + + // aapt resource value: 0x7F0F0094 + public const int Base_V7_Theme_AppCompat_Dialog = 2131689620; + + // aapt resource value: 0x7F0F0095 + public const int Base_V7_Theme_AppCompat_Light = 2131689621; + + // aapt resource value: 0x7F0F0096 + public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131689622; + + // aapt resource value: 0x7F0F0098 + public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131689624; + + // aapt resource value: 0x7F0F0099 + public const int Base_V7_Widget_AppCompat_EditText = 2131689625; + + // aapt resource value: 0x7F0F009A + public const int Base_V7_Widget_AppCompat_Toolbar = 2131689626; + + // aapt resource value: 0x7F0F009B + public const int Base_Widget_AppCompat_ActionBar = 2131689627; + + // aapt resource value: 0x7F0F009C + public const int Base_Widget_AppCompat_ActionBar_Solid = 2131689628; + + // aapt resource value: 0x7F0F009D + public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131689629; + + // aapt resource value: 0x7F0F009E + public const int Base_Widget_AppCompat_ActionBar_TabText = 2131689630; + + // aapt resource value: 0x7F0F009F + public const int Base_Widget_AppCompat_ActionBar_TabView = 2131689631; + + // aapt resource value: 0x7F0F00A0 + public const int Base_Widget_AppCompat_ActionButton = 2131689632; + + // aapt resource value: 0x7F0F00A1 + public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131689633; + + // aapt resource value: 0x7F0F00A2 + public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131689634; + + // aapt resource value: 0x7F0F00A3 + public const int Base_Widget_AppCompat_ActionMode = 2131689635; + + // aapt resource value: 0x7F0F00A4 + public const int Base_Widget_AppCompat_ActivityChooserView = 2131689636; + + // aapt resource value: 0x7F0F00A5 + public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131689637; + + // aapt resource value: 0x7F0F00A6 + public const int Base_Widget_AppCompat_Button = 2131689638; + + // aapt resource value: 0x7F0F00AC + public const int Base_Widget_AppCompat_ButtonBar = 2131689644; + + // aapt resource value: 0x7F0F00AD + public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131689645; + + // aapt resource value: 0x7F0F00A7 + public const int Base_Widget_AppCompat_Button_Borderless = 2131689639; + + // aapt resource value: 0x7F0F00A8 + public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131689640; + + // aapt resource value: 0x7F0F00A9 + public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131689641; + + // aapt resource value: 0x7F0F00AA + public const int Base_Widget_AppCompat_Button_Colored = 2131689642; + + // aapt resource value: 0x7F0F00AB + public const int Base_Widget_AppCompat_Button_Small = 2131689643; + + // aapt resource value: 0x7F0F00AE + public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131689646; + + // aapt resource value: 0x7F0F00AF + public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131689647; + + // aapt resource value: 0x7F0F00B0 + public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131689648; + + // aapt resource value: 0x7F0F00B1 + public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131689649; + + // aapt resource value: 0x7F0F00B2 + public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131689650; + + // aapt resource value: 0x7F0F00B3 + public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131689651; + + // aapt resource value: 0x7F0F00B4 + public const int Base_Widget_AppCompat_EditText = 2131689652; + + // aapt resource value: 0x7F0F00B5 + public const int Base_Widget_AppCompat_ImageButton = 2131689653; + + // aapt resource value: 0x7F0F00B6 + public const int Base_Widget_AppCompat_Light_ActionBar = 2131689654; + + // aapt resource value: 0x7F0F00B7 + public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131689655; + + // aapt resource value: 0x7F0F00B8 + public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131689656; + + // aapt resource value: 0x7F0F00B9 + public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131689657; + + // aapt resource value: 0x7F0F00BA + public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131689658; + + // aapt resource value: 0x7F0F00BB + public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131689659; + + // aapt resource value: 0x7F0F00BC + public const int Base_Widget_AppCompat_Light_PopupMenu = 2131689660; + + // aapt resource value: 0x7F0F00BD + public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131689661; + + // aapt resource value: 0x7F0F00BE + public const int Base_Widget_AppCompat_ListMenuView = 2131689662; + + // aapt resource value: 0x7F0F00BF + public const int Base_Widget_AppCompat_ListPopupWindow = 2131689663; + + // aapt resource value: 0x7F0F00C0 + public const int Base_Widget_AppCompat_ListView = 2131689664; + + // aapt resource value: 0x7F0F00C1 + public const int Base_Widget_AppCompat_ListView_DropDown = 2131689665; + + // aapt resource value: 0x7F0F00C2 + public const int Base_Widget_AppCompat_ListView_Menu = 2131689666; + + // aapt resource value: 0x7F0F00C3 + public const int Base_Widget_AppCompat_PopupMenu = 2131689667; + + // aapt resource value: 0x7F0F00C4 + public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131689668; + + // aapt resource value: 0x7F0F00C5 + public const int Base_Widget_AppCompat_PopupWindow = 2131689669; + + // aapt resource value: 0x7F0F00C6 + public const int Base_Widget_AppCompat_ProgressBar = 2131689670; + + // aapt resource value: 0x7F0F00C7 + public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131689671; + + // aapt resource value: 0x7F0F00C8 + public const int Base_Widget_AppCompat_RatingBar = 2131689672; + + // aapt resource value: 0x7F0F00C9 + public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131689673; + + // aapt resource value: 0x7F0F00CA + public const int Base_Widget_AppCompat_RatingBar_Small = 2131689674; + + // aapt resource value: 0x7F0F00CB + public const int Base_Widget_AppCompat_SearchView = 2131689675; + + // aapt resource value: 0x7F0F00CC + public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131689676; + + // aapt resource value: 0x7F0F00CD + public const int Base_Widget_AppCompat_SeekBar = 2131689677; + + // aapt resource value: 0x7F0F00CE + public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131689678; + + // aapt resource value: 0x7F0F00CF + public const int Base_Widget_AppCompat_Spinner = 2131689679; + + // aapt resource value: 0x7F0F00D0 + public const int Base_Widget_AppCompat_Spinner_Underlined = 2131689680; + + // aapt resource value: 0x7F0F00D1 + public const int Base_Widget_AppCompat_TextView = 2131689681; + + // aapt resource value: 0x7F0F00D2 + public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131689682; + + // aapt resource value: 0x7F0F00D3 + public const int Base_Widget_AppCompat_Toolbar = 2131689683; + + // aapt resource value: 0x7F0F00D4 + public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131689684; + + // aapt resource value: 0x7F0F00D5 + public const int Base_Widget_Design_TabLayout = 2131689685; + + // aapt resource value: 0x7F0F00D6 + public const int Base_Widget_MaterialComponents_AutoCompleteTextView = 2131689686; + + // aapt resource value: 0x7F0F00D7 + public const int Base_Widget_MaterialComponents_CheckedTextView = 2131689687; + + // aapt resource value: 0x7F0F00D8 + public const int Base_Widget_MaterialComponents_Chip = 2131689688; + + // aapt resource value: 0x7F0F00D9 + public const int Base_Widget_MaterialComponents_PopupMenu = 2131689689; + + // aapt resource value: 0x7F0F00DA + public const int Base_Widget_MaterialComponents_PopupMenu_ContextMenu = 2131689690; + + // aapt resource value: 0x7F0F00DB + public const int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow = 2131689691; + + // aapt resource value: 0x7F0F00DC + public const int Base_Widget_MaterialComponents_PopupMenu_Overflow = 2131689692; + + // aapt resource value: 0x7F0F00DD + public const int Base_Widget_MaterialComponents_Slider = 2131689693; + + // aapt resource value: 0x7F0F00DE + public const int Base_Widget_MaterialComponents_TextInputEditText = 2131689694; + + // aapt resource value: 0x7F0F00DF + public const int Base_Widget_MaterialComponents_TextInputLayout = 2131689695; + + // aapt resource value: 0x7F0F00E0 + public const int Base_Widget_MaterialComponents_TextView = 2131689696; + + // aapt resource value: 0x7F0F00E1 + public const int CardView = 2131689697; + + // aapt resource value: 0x7F0F00E2 + public const int CardView_Dark = 2131689698; + + // aapt resource value: 0x7F0F00E3 + public const int CardView_Light = 2131689699; + + // aapt resource value: 0x7F0F02BC + public const int collectionViewTheme = 2131690172; + + // aapt resource value: 0x7F0F00E4 + public const int EmptyTheme = 2131689700; + + // aapt resource value: 0x7F0F00E5 + public const int MainTheme = 2131689701; + + // aapt resource value: 0x7F0F00E6 + public const int MainTheme_Base = 2131689702; + + // aapt resource value: 0x7F0F00E7 + public const int MaterialAlertDialog_MaterialComponents = 2131689703; + + // aapt resource value: 0x7F0F00E8 + public const int MaterialAlertDialog_MaterialComponents_Body_Text = 2131689704; + + // aapt resource value: 0x7F0F00E9 + public const int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar = 2131689705; + + // aapt resource value: 0x7F0F00EA + public const int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner = 2131689706; + + // aapt resource value: 0x7F0F00EB + public const int MaterialAlertDialog_MaterialComponents_Title_Icon = 2131689707; + + // aapt resource value: 0x7F0F00EC + public const int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked = 2131689708; + + // aapt resource value: 0x7F0F00ED + public const int MaterialAlertDialog_MaterialComponents_Title_Panel = 2131689709; + + // aapt resource value: 0x7F0F00EE + public const int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked = 2131689710; + + // aapt resource value: 0x7F0F00EF + public const int MaterialAlertDialog_MaterialComponents_Title_Text = 2131689711; + + // aapt resource value: 0x7F0F00F0 + public const int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked = 2131689712; + + // aapt resource value: 0x7F0F00F1 + public const int Platform_AppCompat = 2131689713; + + // aapt resource value: 0x7F0F00F2 + public const int Platform_AppCompat_Light = 2131689714; + + // aapt resource value: 0x7F0F00F3 + public const int Platform_MaterialComponents = 2131689715; + + // aapt resource value: 0x7F0F00F4 + public const int Platform_MaterialComponents_Dialog = 2131689716; + + // aapt resource value: 0x7F0F00F5 + public const int Platform_MaterialComponents_Light = 2131689717; + + // aapt resource value: 0x7F0F00F6 + public const int Platform_MaterialComponents_Light_Dialog = 2131689718; + + // aapt resource value: 0x7F0F00F7 + public const int Platform_ThemeOverlay_AppCompat = 2131689719; + + // aapt resource value: 0x7F0F00F8 + public const int Platform_ThemeOverlay_AppCompat_Dark = 2131689720; + + // aapt resource value: 0x7F0F00F9 + public const int Platform_ThemeOverlay_AppCompat_Light = 2131689721; + + // aapt resource value: 0x7F0F00FA + public const int Platform_V21_AppCompat = 2131689722; + + // aapt resource value: 0x7F0F00FB + public const int Platform_V21_AppCompat_Light = 2131689723; + + // aapt resource value: 0x7F0F00FC + public const int Platform_V25_AppCompat = 2131689724; + + // aapt resource value: 0x7F0F00FD + public const int Platform_V25_AppCompat_Light = 2131689725; + + // aapt resource value: 0x7F0F00FE + public const int Platform_Widget_AppCompat_Spinner = 2131689726; + + // aapt resource value: 0x7F0F00FF + public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131689727; + + // aapt resource value: 0x7F0F0100 + public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131689728; + + // aapt resource value: 0x7F0F0101 + public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131689729; + + // aapt resource value: 0x7F0F0102 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131689730; + + // aapt resource value: 0x7F0F0103 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131689731; + + // aapt resource value: 0x7F0F0104 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131689732; + + // aapt resource value: 0x7F0F0105 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131689733; + + // aapt resource value: 0x7F0F0106 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131689734; + + // aapt resource value: 0x7F0F0107 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131689735; + + // aapt resource value: 0x7F0F010D + public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131689741; + + // aapt resource value: 0x7F0F0108 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131689736; + + // aapt resource value: 0x7F0F0109 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131689737; + + // aapt resource value: 0x7F0F010A + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131689738; + + // aapt resource value: 0x7F0F010B + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131689739; + + // aapt resource value: 0x7F0F010C + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131689740; + + // aapt resource value: 0x7F0F010E + public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131689742; + + // aapt resource value: 0x7F0F010F + public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131689743; + + // aapt resource value: 0x7F0F02BD + public const int scrollViewScrollBars = 2131690173; + + // aapt resource value: 0x7F0F02BE + public const int scrollViewTheme = 2131690174; + + // aapt resource value: 0x7F0F0116 + public const int ShapeAppearanceOverlay = 2131689750; + + // aapt resource value: 0x7F0F0117 + public const int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize = 2131689751; + + // aapt resource value: 0x7F0F0118 + public const int ShapeAppearanceOverlay_BottomRightCut = 2131689752; + + // aapt resource value: 0x7F0F0119 + public const int ShapeAppearanceOverlay_Cut = 2131689753; + + // aapt resource value: 0x7F0F011A + public const int ShapeAppearanceOverlay_DifferentCornerSize = 2131689754; + + // aapt resource value: 0x7F0F011B + public const int ShapeAppearanceOverlay_MaterialComponents_BottomSheet = 2131689755; + + // aapt resource value: 0x7F0F011C + public const int ShapeAppearanceOverlay_MaterialComponents_Chip = 2131689756; + + // aapt resource value: 0x7F0F011D + public const int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton = 2131689757; + + // aapt resource value: 0x7F0F011E + public const int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton = 2131689758; + + // aapt resource value: 0x7F0F011F + public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = 2131689759; + + // aapt resource value: 0x7F0F0120 + public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen = 2131689760; + + // aapt resource value: 0x7F0F0121 + public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year = 2131689761; + + // aapt resource value: 0x7F0F0122 + public const int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox = 2131689762; + + // aapt resource value: 0x7F0F0123 + public const int ShapeAppearanceOverlay_TopLeftCut = 2131689763; + + // aapt resource value: 0x7F0F0124 + public const int ShapeAppearanceOverlay_TopRightDifferentCornerSize = 2131689764; + + // aapt resource value: 0x7F0F0110 + public const int ShapeAppearance_MaterialComponents = 2131689744; + + // aapt resource value: 0x7F0F0111 + public const int ShapeAppearance_MaterialComponents_LargeComponent = 2131689745; + + // aapt resource value: 0x7F0F0112 + public const int ShapeAppearance_MaterialComponents_MediumComponent = 2131689746; + + // aapt resource value: 0x7F0F0113 + public const int ShapeAppearance_MaterialComponents_SmallComponent = 2131689747; + + // aapt resource value: 0x7F0F0114 + public const int ShapeAppearance_MaterialComponents_Test = 2131689748; + + // aapt resource value: 0x7F0F0115 + public const int ShapeAppearance_MaterialComponents_Tooltip = 2131689749; + + // aapt resource value: 0x7F0F012A + public const int TestStyleWithLineHeight = 2131689770; + + // aapt resource value: 0x7F0F012B + public const int TestStyleWithLineHeightAppearance = 2131689771; + + // aapt resource value: 0x7F0F012D + public const int TestStyleWithoutLineHeight = 2131689773; + + // aapt resource value: 0x7F0F012C + public const int TestStyleWithThemeLineHeightAttribute = 2131689772; + + // aapt resource value: 0x7F0F012E + public const int TestThemeWithLineHeight = 2131689774; + + // aapt resource value: 0x7F0F012F + public const int TestThemeWithLineHeightDisabled = 2131689775; + + // aapt resource value: 0x7F0F0125 + public const int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = 2131689765; + + // aapt resource value: 0x7F0F0126 + public const int Test_Theme_MaterialComponents_MaterialCalendar = 2131689766; + + // aapt resource value: 0x7F0F0127 + public const int Test_Widget_MaterialComponents_MaterialCalendar = 2131689767; + + // aapt resource value: 0x7F0F0128 + public const int Test_Widget_MaterialComponents_MaterialCalendar_Day = 2131689768; + + // aapt resource value: 0x7F0F0129 + public const int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected = 2131689769; + + // aapt resource value: 0x7F0F0130 + public const int TextAppearance_AppCompat = 2131689776; + + // aapt resource value: 0x7F0F0131 + public const int TextAppearance_AppCompat_Body1 = 2131689777; + + // aapt resource value: 0x7F0F0132 + public const int TextAppearance_AppCompat_Body2 = 2131689778; + + // aapt resource value: 0x7F0F0133 + public const int TextAppearance_AppCompat_Button = 2131689779; + + // aapt resource value: 0x7F0F0134 + public const int TextAppearance_AppCompat_Caption = 2131689780; + + // aapt resource value: 0x7F0F0135 + public const int TextAppearance_AppCompat_Display1 = 2131689781; + + // aapt resource value: 0x7F0F0136 + public const int TextAppearance_AppCompat_Display2 = 2131689782; + + // aapt resource value: 0x7F0F0137 + public const int TextAppearance_AppCompat_Display3 = 2131689783; + + // aapt resource value: 0x7F0F0138 + public const int TextAppearance_AppCompat_Display4 = 2131689784; + + // aapt resource value: 0x7F0F0139 + public const int TextAppearance_AppCompat_Headline = 2131689785; + + // aapt resource value: 0x7F0F013A + public const int TextAppearance_AppCompat_Inverse = 2131689786; + + // aapt resource value: 0x7F0F013B + public const int TextAppearance_AppCompat_Large = 2131689787; + + // aapt resource value: 0x7F0F013C + public const int TextAppearance_AppCompat_Large_Inverse = 2131689788; + + // aapt resource value: 0x7F0F013D + public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131689789; + + // aapt resource value: 0x7F0F013E + public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131689790; + + // aapt resource value: 0x7F0F013F + public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131689791; + + // aapt resource value: 0x7F0F0140 + public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131689792; + + // aapt resource value: 0x7F0F0141 + public const int TextAppearance_AppCompat_Medium = 2131689793; + + // aapt resource value: 0x7F0F0142 + public const int TextAppearance_AppCompat_Medium_Inverse = 2131689794; + + // aapt resource value: 0x7F0F0143 + public const int TextAppearance_AppCompat_Menu = 2131689795; + + // aapt resource value: 0x7F0F0144 + public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131689796; + + // aapt resource value: 0x7F0F0145 + public const int TextAppearance_AppCompat_SearchResult_Title = 2131689797; + + // aapt resource value: 0x7F0F0146 + public const int TextAppearance_AppCompat_Small = 2131689798; + + // aapt resource value: 0x7F0F0147 + public const int TextAppearance_AppCompat_Small_Inverse = 2131689799; + + // aapt resource value: 0x7F0F0148 + public const int TextAppearance_AppCompat_Subhead = 2131689800; + + // aapt resource value: 0x7F0F0149 + public const int TextAppearance_AppCompat_Subhead_Inverse = 2131689801; + + // aapt resource value: 0x7F0F014A + public const int TextAppearance_AppCompat_Title = 2131689802; + + // aapt resource value: 0x7F0F014B + public const int TextAppearance_AppCompat_Title_Inverse = 2131689803; + + // aapt resource value: 0x7F0F014C + public const int TextAppearance_AppCompat_Tooltip = 2131689804; + + // aapt resource value: 0x7F0F014D + public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131689805; + + // aapt resource value: 0x7F0F014E + public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131689806; + + // aapt resource value: 0x7F0F014F + public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131689807; + + // aapt resource value: 0x7F0F0150 + public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131689808; + + // aapt resource value: 0x7F0F0151 + public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131689809; + + // aapt resource value: 0x7F0F0152 + public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131689810; + + // aapt resource value: 0x7F0F0153 + public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131689811; + + // aapt resource value: 0x7F0F0154 + public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131689812; + + // aapt resource value: 0x7F0F0155 + public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131689813; + + // aapt resource value: 0x7F0F0156 + public const int TextAppearance_AppCompat_Widget_Button = 2131689814; + + // aapt resource value: 0x7F0F0157 + public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131689815; + + // aapt resource value: 0x7F0F0158 + public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131689816; + + // aapt resource value: 0x7F0F0159 + public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131689817; + + // aapt resource value: 0x7F0F015A + public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131689818; + + // aapt resource value: 0x7F0F015B + public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131689819; + + // aapt resource value: 0x7F0F015C + public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131689820; + + // aapt resource value: 0x7F0F015D + public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131689821; + + // aapt resource value: 0x7F0F015E + public const int TextAppearance_AppCompat_Widget_Switch = 2131689822; + + // aapt resource value: 0x7F0F015F + public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131689823; + + // aapt resource value: 0x7F0F0160 + public const int TextAppearance_Compat_Notification = 2131689824; + + // aapt resource value: 0x7F0F0161 + public const int TextAppearance_Compat_Notification_Info = 2131689825; + + // aapt resource value: 0x7F0F0162 + public const int TextAppearance_Compat_Notification_Info_Media = 2131689826; + + // aapt resource value: 0x7F0F0163 + public const int TextAppearance_Compat_Notification_Line2 = 2131689827; + + // aapt resource value: 0x7F0F0164 + public const int TextAppearance_Compat_Notification_Line2_Media = 2131689828; + + // aapt resource value: 0x7F0F0165 + public const int TextAppearance_Compat_Notification_Media = 2131689829; + + // aapt resource value: 0x7F0F0166 + public const int TextAppearance_Compat_Notification_Time = 2131689830; + + // aapt resource value: 0x7F0F0167 + public const int TextAppearance_Compat_Notification_Time_Media = 2131689831; + + // aapt resource value: 0x7F0F0168 + public const int TextAppearance_Compat_Notification_Title = 2131689832; + + // aapt resource value: 0x7F0F0169 + public const int TextAppearance_Compat_Notification_Title_Media = 2131689833; + + // aapt resource value: 0x7F0F016A + public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131689834; + + // aapt resource value: 0x7F0F016B + public const int TextAppearance_Design_Counter = 2131689835; + + // aapt resource value: 0x7F0F016C + public const int TextAppearance_Design_Counter_Overflow = 2131689836; + + // aapt resource value: 0x7F0F016D + public const int TextAppearance_Design_Error = 2131689837; + + // aapt resource value: 0x7F0F016E + public const int TextAppearance_Design_HelperText = 2131689838; + + // aapt resource value: 0x7F0F016F + public const int TextAppearance_Design_Hint = 2131689839; + + // aapt resource value: 0x7F0F0170 + public const int TextAppearance_Design_Placeholder = 2131689840; + + // aapt resource value: 0x7F0F0171 + public const int TextAppearance_Design_Prefix = 2131689841; + + // aapt resource value: 0x7F0F0172 + public const int TextAppearance_Design_Snackbar_Message = 2131689842; + + // aapt resource value: 0x7F0F0173 + public const int TextAppearance_Design_Suffix = 2131689843; + + // aapt resource value: 0x7F0F0174 + public const int TextAppearance_Design_Tab = 2131689844; + + // aapt resource value: 0x7F0F0175 + public const int TextAppearance_MaterialComponents_Badge = 2131689845; + + // aapt resource value: 0x7F0F0176 + public const int TextAppearance_MaterialComponents_Body1 = 2131689846; + + // aapt resource value: 0x7F0F0177 + public const int TextAppearance_MaterialComponents_Body2 = 2131689847; + + // aapt resource value: 0x7F0F0178 + public const int TextAppearance_MaterialComponents_Button = 2131689848; + + // aapt resource value: 0x7F0F0179 + public const int TextAppearance_MaterialComponents_Caption = 2131689849; + + // aapt resource value: 0x7F0F017A + public const int TextAppearance_MaterialComponents_Chip = 2131689850; + + // aapt resource value: 0x7F0F017B + public const int TextAppearance_MaterialComponents_Headline1 = 2131689851; + + // aapt resource value: 0x7F0F017C + public const int TextAppearance_MaterialComponents_Headline2 = 2131689852; + + // aapt resource value: 0x7F0F017D + public const int TextAppearance_MaterialComponents_Headline3 = 2131689853; + + // aapt resource value: 0x7F0F017E + public const int TextAppearance_MaterialComponents_Headline4 = 2131689854; + + // aapt resource value: 0x7F0F017F + public const int TextAppearance_MaterialComponents_Headline5 = 2131689855; + + // aapt resource value: 0x7F0F0180 + public const int TextAppearance_MaterialComponents_Headline6 = 2131689856; + + // aapt resource value: 0x7F0F0181 + public const int TextAppearance_MaterialComponents_Overline = 2131689857; + + // aapt resource value: 0x7F0F0182 + public const int TextAppearance_MaterialComponents_Subtitle1 = 2131689858; + + // aapt resource value: 0x7F0F0183 + public const int TextAppearance_MaterialComponents_Subtitle2 = 2131689859; + + // aapt resource value: 0x7F0F0184 + public const int TextAppearance_MaterialComponents_Tooltip = 2131689860; + + // aapt resource value: 0x7F0F0185 + public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131689861; + + // aapt resource value: 0x7F0F0186 + public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131689862; + + // aapt resource value: 0x7F0F0187 + public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131689863; + + // aapt resource value: 0x7F0F0204 + public const int ThemeOverlayColorAccentRed = 2131689988; + + // aapt resource value: 0x7F0F01D5 + public const int ThemeOverlay_AppCompat = 2131689941; + + // aapt resource value: 0x7F0F01D6 + public const int ThemeOverlay_AppCompat_ActionBar = 2131689942; + + // aapt resource value: 0x7F0F01D7 + public const int ThemeOverlay_AppCompat_Dark = 2131689943; + + // aapt resource value: 0x7F0F01D8 + public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131689944; + + // aapt resource value: 0x7F0F01D9 + public const int ThemeOverlay_AppCompat_DayNight = 2131689945; + + // aapt resource value: 0x7F0F01DA + public const int ThemeOverlay_AppCompat_DayNight_ActionBar = 2131689946; + + // aapt resource value: 0x7F0F01DB + public const int ThemeOverlay_AppCompat_Dialog = 2131689947; + + // aapt resource value: 0x7F0F01DC + public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131689948; + + // aapt resource value: 0x7F0F01DD + public const int ThemeOverlay_AppCompat_Light = 2131689949; + + // aapt resource value: 0x7F0F01DE + public const int ThemeOverlay_Design_TextInputEditText = 2131689950; + + // aapt resource value: 0x7F0F01DF + public const int ThemeOverlay_MaterialComponents = 2131689951; + + // aapt resource value: 0x7F0F01E0 + public const int ThemeOverlay_MaterialComponents_ActionBar = 2131689952; + + // aapt resource value: 0x7F0F01E1 + public const int ThemeOverlay_MaterialComponents_ActionBar_Primary = 2131689953; + + // aapt resource value: 0x7F0F01E2 + public const int ThemeOverlay_MaterialComponents_ActionBar_Surface = 2131689954; + + // aapt resource value: 0x7F0F01E3 + public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView = 2131689955; + + // aapt resource value: 0x7F0F01E4 + public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox = 2131689956; + + // aapt resource value: 0x7F0F01E5 + public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 2131689957; + + // aapt resource value: 0x7F0F01E6 + public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox = 2131689958; + + // aapt resource value: 0x7F0F01E7 + public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 2131689959; + + // aapt resource value: 0x7F0F01E8 + public const int ThemeOverlay_MaterialComponents_BottomAppBar_Primary = 2131689960; + + // aapt resource value: 0x7F0F01E9 + public const int ThemeOverlay_MaterialComponents_BottomAppBar_Surface = 2131689961; + + // aapt resource value: 0x7F0F01EA + public const int ThemeOverlay_MaterialComponents_BottomSheetDialog = 2131689962; + + // aapt resource value: 0x7F0F01EB + public const int ThemeOverlay_MaterialComponents_Dark = 2131689963; + + // aapt resource value: 0x7F0F01EC + public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131689964; + + // aapt resource value: 0x7F0F01ED + public const int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog = 2131689965; + + // aapt resource value: 0x7F0F01EE + public const int ThemeOverlay_MaterialComponents_Dialog = 2131689966; + + // aapt resource value: 0x7F0F01EF + public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131689967; + + // aapt resource value: 0x7F0F01F0 + public const int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = 2131689968; + + // aapt resource value: 0x7F0F01F1 + public const int ThemeOverlay_MaterialComponents_Light = 2131689969; + + // aapt resource value: 0x7F0F01F2 + public const int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog = 2131689970; + + // aapt resource value: 0x7F0F01F3 + public const int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = 2131689971; + + // aapt resource value: 0x7F0F01F4 + public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog = 2131689972; + + // aapt resource value: 0x7F0F01F5 + public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered = 2131689973; + + // aapt resource value: 0x7F0F01F6 + public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date = 2131689974; + + // aapt resource value: 0x7F0F01F7 + public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar = 2131689975; + + // aapt resource value: 0x7F0F01F8 + public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text = 2131689976; + + // aapt resource value: 0x7F0F01F9 + public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day = 2131689977; + + // aapt resource value: 0x7F0F01FA + public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner = 2131689978; + + // aapt resource value: 0x7F0F01FB + public const int ThemeOverlay_MaterialComponents_MaterialCalendar = 2131689979; + + // aapt resource value: 0x7F0F01FC + public const int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen = 2131689980; + + // aapt resource value: 0x7F0F01FD + public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131689981; + + // aapt resource value: 0x7F0F01FE + public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131689982; + + // aapt resource value: 0x7F0F01FF + public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131689983; + + // aapt resource value: 0x7F0F0200 + public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131689984; + + // aapt resource value: 0x7F0F0201 + public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131689985; + + // aapt resource value: 0x7F0F0202 + public const int ThemeOverlay_MaterialComponents_Toolbar_Primary = 2131689986; + + // aapt resource value: 0x7F0F0203 + public const int ThemeOverlay_MaterialComponents_Toolbar_Surface = 2131689987; + + // aapt resource value: 0x7F0F0188 + public const int Theme_AppCompat = 2131689864; + + // aapt resource value: 0x7F0F0189 + public const int Theme_AppCompat_CompactMenu = 2131689865; + + // aapt resource value: 0x7F0F018A + public const int Theme_AppCompat_DayNight = 2131689866; + + // aapt resource value: 0x7F0F018B + public const int Theme_AppCompat_DayNight_DarkActionBar = 2131689867; + + // aapt resource value: 0x7F0F018C + public const int Theme_AppCompat_DayNight_Dialog = 2131689868; + + // aapt resource value: 0x7F0F018F + public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131689871; + + // aapt resource value: 0x7F0F018D + public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131689869; + + // aapt resource value: 0x7F0F018E + public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131689870; + + // aapt resource value: 0x7F0F0190 + public const int Theme_AppCompat_DayNight_NoActionBar = 2131689872; + + // aapt resource value: 0x7F0F0191 + public const int Theme_AppCompat_Dialog = 2131689873; + + // aapt resource value: 0x7F0F0194 + public const int Theme_AppCompat_DialogWhenLarge = 2131689876; + + // aapt resource value: 0x7F0F0192 + public const int Theme_AppCompat_Dialog_Alert = 2131689874; + + // aapt resource value: 0x7F0F0193 + public const int Theme_AppCompat_Dialog_MinWidth = 2131689875; + + // aapt resource value: 0x7F0F0195 + public const int Theme_AppCompat_Empty = 2131689877; + + // aapt resource value: 0x7F0F0196 + public const int Theme_AppCompat_Light = 2131689878; + + // aapt resource value: 0x7F0F0197 + public const int Theme_AppCompat_Light_DarkActionBar = 2131689879; + + // aapt resource value: 0x7F0F0198 + public const int Theme_AppCompat_Light_Dialog = 2131689880; + + // aapt resource value: 0x7F0F019B + public const int Theme_AppCompat_Light_DialogWhenLarge = 2131689883; + + // aapt resource value: 0x7F0F0199 + public const int Theme_AppCompat_Light_Dialog_Alert = 2131689881; + + // aapt resource value: 0x7F0F019A + public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131689882; + + // aapt resource value: 0x7F0F019C + public const int Theme_AppCompat_Light_NoActionBar = 2131689884; + + // aapt resource value: 0x7F0F019D + public const int Theme_AppCompat_NoActionBar = 2131689885; + + // aapt resource value: 0x7F0F019E + public const int Theme_Design = 2131689886; + + // aapt resource value: 0x7F0F019F + public const int Theme_Design_BottomSheetDialog = 2131689887; + + // aapt resource value: 0x7F0F01A0 + public const int Theme_Design_Light = 2131689888; + + // aapt resource value: 0x7F0F01A1 + public const int Theme_Design_Light_BottomSheetDialog = 2131689889; + + // aapt resource value: 0x7F0F01A2 + public const int Theme_Design_Light_NoActionBar = 2131689890; + + // aapt resource value: 0x7F0F01A3 + public const int Theme_Design_NoActionBar = 2131689891; + + // aapt resource value: 0x7F0F01A4 + public const int Theme_MaterialComponents = 2131689892; + + // aapt resource value: 0x7F0F01A5 + public const int Theme_MaterialComponents_BottomSheetDialog = 2131689893; + + // aapt resource value: 0x7F0F01A6 + public const int Theme_MaterialComponents_Bridge = 2131689894; + + // aapt resource value: 0x7F0F01A7 + public const int Theme_MaterialComponents_CompactMenu = 2131689895; + + // aapt resource value: 0x7F0F01A8 + public const int Theme_MaterialComponents_DayNight = 2131689896; + + // aapt resource value: 0x7F0F01A9 + public const int Theme_MaterialComponents_DayNight_BottomSheetDialog = 2131689897; + + // aapt resource value: 0x7F0F01AA + public const int Theme_MaterialComponents_DayNight_Bridge = 2131689898; + + // aapt resource value: 0x7F0F01AB + public const int Theme_MaterialComponents_DayNight_DarkActionBar = 2131689899; + + // aapt resource value: 0x7F0F01AC + public const int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge = 2131689900; + + // aapt resource value: 0x7F0F01AD + public const int Theme_MaterialComponents_DayNight_Dialog = 2131689901; + + // aapt resource value: 0x7F0F01B5 + public const int Theme_MaterialComponents_DayNight_DialogWhenLarge = 2131689909; + + // aapt resource value: 0x7F0F01AE + public const int Theme_MaterialComponents_DayNight_Dialog_Alert = 2131689902; + + // aapt resource value: 0x7F0F01AF + public const int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge = 2131689903; + + // aapt resource value: 0x7F0F01B0 + public const int Theme_MaterialComponents_DayNight_Dialog_Bridge = 2131689904; + + // aapt resource value: 0x7F0F01B1 + public const int Theme_MaterialComponents_DayNight_Dialog_FixedSize = 2131689905; + + // aapt resource value: 0x7F0F01B2 + public const int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge = 2131689906; + + // aapt resource value: 0x7F0F01B3 + public const int Theme_MaterialComponents_DayNight_Dialog_MinWidth = 2131689907; + + // aapt resource value: 0x7F0F01B4 + public const int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge = 2131689908; + + // aapt resource value: 0x7F0F01B6 + public const int Theme_MaterialComponents_DayNight_NoActionBar = 2131689910; + + // aapt resource value: 0x7F0F01B7 + public const int Theme_MaterialComponents_DayNight_NoActionBar_Bridge = 2131689911; + + // aapt resource value: 0x7F0F01B8 + public const int Theme_MaterialComponents_Dialog = 2131689912; + + // aapt resource value: 0x7F0F01C0 + public const int Theme_MaterialComponents_DialogWhenLarge = 2131689920; + + // aapt resource value: 0x7F0F01B9 + public const int Theme_MaterialComponents_Dialog_Alert = 2131689913; + + // aapt resource value: 0x7F0F01BA + public const int Theme_MaterialComponents_Dialog_Alert_Bridge = 2131689914; + + // aapt resource value: 0x7F0F01BB + public const int Theme_MaterialComponents_Dialog_Bridge = 2131689915; + + // aapt resource value: 0x7F0F01BC + public const int Theme_MaterialComponents_Dialog_FixedSize = 2131689916; + + // aapt resource value: 0x7F0F01BD + public const int Theme_MaterialComponents_Dialog_FixedSize_Bridge = 2131689917; + + // aapt resource value: 0x7F0F01BE + public const int Theme_MaterialComponents_Dialog_MinWidth = 2131689918; + + // aapt resource value: 0x7F0F01BF + public const int Theme_MaterialComponents_Dialog_MinWidth_Bridge = 2131689919; + + // aapt resource value: 0x7F0F01C1 + public const int Theme_MaterialComponents_Light = 2131689921; + + // aapt resource value: 0x7F0F01C2 + public const int Theme_MaterialComponents_Light_BarSize = 2131689922; + + // aapt resource value: 0x7F0F01C3 + public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131689923; + + // aapt resource value: 0x7F0F01C4 + public const int Theme_MaterialComponents_Light_Bridge = 2131689924; + + // aapt resource value: 0x7F0F01C5 + public const int Theme_MaterialComponents_Light_DarkActionBar = 2131689925; + + // aapt resource value: 0x7F0F01C6 + public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131689926; + + // aapt resource value: 0x7F0F01C7 + public const int Theme_MaterialComponents_Light_Dialog = 2131689927; + + // aapt resource value: 0x7F0F01CF + public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131689935; + + // aapt resource value: 0x7F0F01C8 + public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131689928; + + // aapt resource value: 0x7F0F01C9 + public const int Theme_MaterialComponents_Light_Dialog_Alert_Bridge = 2131689929; + + // aapt resource value: 0x7F0F01CA + public const int Theme_MaterialComponents_Light_Dialog_Bridge = 2131689930; + + // aapt resource value: 0x7F0F01CB + public const int Theme_MaterialComponents_Light_Dialog_FixedSize = 2131689931; + + // aapt resource value: 0x7F0F01CC + public const int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge = 2131689932; + + // aapt resource value: 0x7F0F01CD + public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131689933; + + // aapt resource value: 0x7F0F01CE + public const int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge = 2131689934; + + // aapt resource value: 0x7F0F01D0 + public const int Theme_MaterialComponents_Light_LargeTouch = 2131689936; + + // aapt resource value: 0x7F0F01D1 + public const int Theme_MaterialComponents_Light_NoActionBar = 2131689937; + + // aapt resource value: 0x7F0F01D2 + public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131689938; + + // aapt resource value: 0x7F0F01D3 + public const int Theme_MaterialComponents_NoActionBar = 2131689939; + + // aapt resource value: 0x7F0F01D4 + public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131689940; + + // aapt resource value: 0x7F0F0205 + public const int Widget_AppCompat_ActionBar = 2131689989; + + // aapt resource value: 0x7F0F0206 + public const int Widget_AppCompat_ActionBar_Solid = 2131689990; + + // aapt resource value: 0x7F0F0207 + public const int Widget_AppCompat_ActionBar_TabBar = 2131689991; + + // aapt resource value: 0x7F0F0208 + public const int Widget_AppCompat_ActionBar_TabText = 2131689992; + + // aapt resource value: 0x7F0F0209 + public const int Widget_AppCompat_ActionBar_TabView = 2131689993; + + // aapt resource value: 0x7F0F020A + public const int Widget_AppCompat_ActionButton = 2131689994; + + // aapt resource value: 0x7F0F020B + public const int Widget_AppCompat_ActionButton_CloseMode = 2131689995; + + // aapt resource value: 0x7F0F020C + public const int Widget_AppCompat_ActionButton_Overflow = 2131689996; + + // aapt resource value: 0x7F0F020D + public const int Widget_AppCompat_ActionMode = 2131689997; + + // aapt resource value: 0x7F0F020E + public const int Widget_AppCompat_ActivityChooserView = 2131689998; + + // aapt resource value: 0x7F0F020F + public const int Widget_AppCompat_AutoCompleteTextView = 2131689999; + + // aapt resource value: 0x7F0F0210 + public const int Widget_AppCompat_Button = 2131690000; + + // aapt resource value: 0x7F0F0216 + public const int Widget_AppCompat_ButtonBar = 2131690006; + + // aapt resource value: 0x7F0F0217 + public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131690007; + + // aapt resource value: 0x7F0F0211 + public const int Widget_AppCompat_Button_Borderless = 2131690001; + + // aapt resource value: 0x7F0F0212 + public const int Widget_AppCompat_Button_Borderless_Colored = 2131690002; + + // aapt resource value: 0x7F0F0213 + public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131690003; + + // aapt resource value: 0x7F0F0214 + public const int Widget_AppCompat_Button_Colored = 2131690004; + + // aapt resource value: 0x7F0F0215 + public const int Widget_AppCompat_Button_Small = 2131690005; + + // aapt resource value: 0x7F0F0218 + public const int Widget_AppCompat_CompoundButton_CheckBox = 2131690008; + + // aapt resource value: 0x7F0F0219 + public const int Widget_AppCompat_CompoundButton_RadioButton = 2131690009; + + // aapt resource value: 0x7F0F021A + public const int Widget_AppCompat_CompoundButton_Switch = 2131690010; + + // aapt resource value: 0x7F0F021B + public const int Widget_AppCompat_DrawerArrowToggle = 2131690011; + + // aapt resource value: 0x7F0F021C + public const int Widget_AppCompat_DropDownItem_Spinner = 2131690012; + + // aapt resource value: 0x7F0F021D + public const int Widget_AppCompat_EditText = 2131690013; + + // aapt resource value: 0x7F0F021E + public const int Widget_AppCompat_ImageButton = 2131690014; + + // aapt resource value: 0x7F0F021F + public const int Widget_AppCompat_Light_ActionBar = 2131690015; + + // aapt resource value: 0x7F0F0220 + public const int Widget_AppCompat_Light_ActionBar_Solid = 2131690016; + + // aapt resource value: 0x7F0F0221 + public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131690017; + + // aapt resource value: 0x7F0F0222 + public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131690018; + + // aapt resource value: 0x7F0F0223 + public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131690019; + + // aapt resource value: 0x7F0F0224 + public const int Widget_AppCompat_Light_ActionBar_TabText = 2131690020; + + // aapt resource value: 0x7F0F0225 + public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131690021; + + // aapt resource value: 0x7F0F0226 + public const int Widget_AppCompat_Light_ActionBar_TabView = 2131690022; + + // aapt resource value: 0x7F0F0227 + public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131690023; + + // aapt resource value: 0x7F0F0228 + public const int Widget_AppCompat_Light_ActionButton = 2131690024; + + // aapt resource value: 0x7F0F0229 + public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131690025; + + // aapt resource value: 0x7F0F022A + public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131690026; + + // aapt resource value: 0x7F0F022B + public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131690027; + + // aapt resource value: 0x7F0F022C + public const int Widget_AppCompat_Light_ActivityChooserView = 2131690028; + + // aapt resource value: 0x7F0F022D + public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131690029; + + // aapt resource value: 0x7F0F022E + public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131690030; + + // aapt resource value: 0x7F0F022F + public const int Widget_AppCompat_Light_ListPopupWindow = 2131690031; + + // aapt resource value: 0x7F0F0230 + public const int Widget_AppCompat_Light_ListView_DropDown = 2131690032; + + // aapt resource value: 0x7F0F0231 + public const int Widget_AppCompat_Light_PopupMenu = 2131690033; + + // aapt resource value: 0x7F0F0232 + public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131690034; + + // aapt resource value: 0x7F0F0233 + public const int Widget_AppCompat_Light_SearchView = 2131690035; + + // aapt resource value: 0x7F0F0234 + public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131690036; + + // aapt resource value: 0x7F0F0235 + public const int Widget_AppCompat_ListMenuView = 2131690037; + + // aapt resource value: 0x7F0F0236 + public const int Widget_AppCompat_ListPopupWindow = 2131690038; + + // aapt resource value: 0x7F0F0237 + public const int Widget_AppCompat_ListView = 2131690039; + + // aapt resource value: 0x7F0F0238 + public const int Widget_AppCompat_ListView_DropDown = 2131690040; + + // aapt resource value: 0x7F0F0239 + public const int Widget_AppCompat_ListView_Menu = 2131690041; + + // aapt resource value: 0x7F0F023A + public const int Widget_AppCompat_PopupMenu = 2131690042; + + // aapt resource value: 0x7F0F023B + public const int Widget_AppCompat_PopupMenu_Overflow = 2131690043; + + // aapt resource value: 0x7F0F023C + public const int Widget_AppCompat_PopupWindow = 2131690044; + + // aapt resource value: 0x7F0F023D + public const int Widget_AppCompat_ProgressBar = 2131690045; + + // aapt resource value: 0x7F0F023E + public const int Widget_AppCompat_ProgressBar_Horizontal = 2131690046; + + // aapt resource value: 0x7F0F023F + public const int Widget_AppCompat_RatingBar = 2131690047; + + // aapt resource value: 0x7F0F0240 + public const int Widget_AppCompat_RatingBar_Indicator = 2131690048; + + // aapt resource value: 0x7F0F0241 + public const int Widget_AppCompat_RatingBar_Small = 2131690049; + + // aapt resource value: 0x7F0F0242 + public const int Widget_AppCompat_SearchView = 2131690050; + + // aapt resource value: 0x7F0F0243 + public const int Widget_AppCompat_SearchView_ActionBar = 2131690051; + + // aapt resource value: 0x7F0F0244 + public const int Widget_AppCompat_SeekBar = 2131690052; + + // aapt resource value: 0x7F0F0245 + public const int Widget_AppCompat_SeekBar_Discrete = 2131690053; + + // aapt resource value: 0x7F0F0246 + public const int Widget_AppCompat_Spinner = 2131690054; + + // aapt resource value: 0x7F0F0247 + public const int Widget_AppCompat_Spinner_DropDown = 2131690055; + + // aapt resource value: 0x7F0F0248 + public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131690056; + + // aapt resource value: 0x7F0F0249 + public const int Widget_AppCompat_Spinner_Underlined = 2131690057; + + // aapt resource value: 0x7F0F024A + public const int Widget_AppCompat_TextView = 2131690058; + + // aapt resource value: 0x7F0F024B + public const int Widget_AppCompat_TextView_SpinnerItem = 2131690059; + + // aapt resource value: 0x7F0F024C + public const int Widget_AppCompat_Toolbar = 2131690060; + + // aapt resource value: 0x7F0F024D + public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131690061; + + // aapt resource value: 0x7F0F024E + public const int Widget_Compat_NotificationActionContainer = 2131690062; + + // aapt resource value: 0x7F0F024F + public const int Widget_Compat_NotificationActionText = 2131690063; + + // aapt resource value: 0x7F0F0250 + public const int Widget_Design_AppBarLayout = 2131690064; + + // aapt resource value: 0x7F0F0251 + public const int Widget_Design_BottomNavigationView = 2131690065; + + // aapt resource value: 0x7F0F0252 + public const int Widget_Design_BottomSheet_Modal = 2131690066; + + // aapt resource value: 0x7F0F0253 + public const int Widget_Design_CollapsingToolbar = 2131690067; + + // aapt resource value: 0x7F0F0254 + public const int Widget_Design_FloatingActionButton = 2131690068; + + // aapt resource value: 0x7F0F0255 + public const int Widget_Design_NavigationView = 2131690069; + + // aapt resource value: 0x7F0F0256 + public const int Widget_Design_ScrimInsetsFrameLayout = 2131690070; + + // aapt resource value: 0x7F0F0257 + public const int Widget_Design_Snackbar = 2131690071; + + // aapt resource value: 0x7F0F0258 + public const int Widget_Design_TabLayout = 2131690072; + + // aapt resource value: 0x7F0F0259 + public const int Widget_Design_TextInputEditText = 2131690073; + + // aapt resource value: 0x7F0F025A + public const int Widget_Design_TextInputLayout = 2131690074; + + // aapt resource value: 0x7F0F025B + public const int Widget_MaterialComponents_ActionBar_Primary = 2131690075; + + // aapt resource value: 0x7F0F025C + public const int Widget_MaterialComponents_ActionBar_PrimarySurface = 2131690076; + + // aapt resource value: 0x7F0F025D + public const int Widget_MaterialComponents_ActionBar_Solid = 2131690077; + + // aapt resource value: 0x7F0F025E + public const int Widget_MaterialComponents_ActionBar_Surface = 2131690078; + + // aapt resource value: 0x7F0F025F + public const int Widget_MaterialComponents_AppBarLayout_Primary = 2131690079; + + // aapt resource value: 0x7F0F0260 + public const int Widget_MaterialComponents_AppBarLayout_PrimarySurface = 2131690080; + + // aapt resource value: 0x7F0F0261 + public const int Widget_MaterialComponents_AppBarLayout_Surface = 2131690081; + + // aapt resource value: 0x7F0F0262 + public const int Widget_MaterialComponents_AutoCompleteTextView_FilledBox = 2131690082; + + // aapt resource value: 0x7F0F0263 + public const int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 2131690083; + + // aapt resource value: 0x7F0F0264 + public const int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox = 2131690084; + + // aapt resource value: 0x7F0F0265 + public const int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 2131690085; + + // aapt resource value: 0x7F0F0266 + public const int Widget_MaterialComponents_Badge = 2131690086; + + // aapt resource value: 0x7F0F0267 + public const int Widget_MaterialComponents_BottomAppBar = 2131690087; + + // aapt resource value: 0x7F0F0268 + public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131690088; + + // aapt resource value: 0x7F0F0269 + public const int Widget_MaterialComponents_BottomAppBar_PrimarySurface = 2131690089; + + // aapt resource value: 0x7F0F026A + public const int Widget_MaterialComponents_BottomNavigationView = 2131690090; + + // aapt resource value: 0x7F0F026B + public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131690091; + + // aapt resource value: 0x7F0F026C + public const int Widget_MaterialComponents_BottomNavigationView_PrimarySurface = 2131690092; + + // aapt resource value: 0x7F0F026D + public const int Widget_MaterialComponents_BottomSheet = 2131690093; + + // aapt resource value: 0x7F0F026E + public const int Widget_MaterialComponents_BottomSheet_Modal = 2131690094; + + // aapt resource value: 0x7F0F026F + public const int Widget_MaterialComponents_Button = 2131690095; + + // aapt resource value: 0x7F0F0270 + public const int Widget_MaterialComponents_Button_Icon = 2131690096; + + // aapt resource value: 0x7F0F0271 + public const int Widget_MaterialComponents_Button_OutlinedButton = 2131690097; + + // aapt resource value: 0x7F0F0272 + public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131690098; + + // aapt resource value: 0x7F0F0273 + public const int Widget_MaterialComponents_Button_TextButton = 2131690099; + + // aapt resource value: 0x7F0F0274 + public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131690100; + + // aapt resource value: 0x7F0F0275 + public const int Widget_MaterialComponents_Button_TextButton_Dialog_Flush = 2131690101; + + // aapt resource value: 0x7F0F0276 + public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131690102; + + // aapt resource value: 0x7F0F0277 + public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131690103; + + // aapt resource value: 0x7F0F0278 + public const int Widget_MaterialComponents_Button_TextButton_Snackbar = 2131690104; + + // aapt resource value: 0x7F0F0279 + public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131690105; + + // aapt resource value: 0x7F0F027A + public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131690106; + + // aapt resource value: 0x7F0F027B + public const int Widget_MaterialComponents_CardView = 2131690107; + + // aapt resource value: 0x7F0F027C + public const int Widget_MaterialComponents_CheckedTextView = 2131690108; + + // aapt resource value: 0x7F0F0281 + public const int Widget_MaterialComponents_ChipGroup = 2131690113; + + // aapt resource value: 0x7F0F027D + public const int Widget_MaterialComponents_Chip_Action = 2131690109; + + // aapt resource value: 0x7F0F027E + public const int Widget_MaterialComponents_Chip_Choice = 2131690110; + + // aapt resource value: 0x7F0F027F + public const int Widget_MaterialComponents_Chip_Entry = 2131690111; + + // aapt resource value: 0x7F0F0280 + public const int Widget_MaterialComponents_Chip_Filter = 2131690112; + + // aapt resource value: 0x7F0F0282 + public const int Widget_MaterialComponents_CompoundButton_CheckBox = 2131690114; + + // aapt resource value: 0x7F0F0283 + public const int Widget_MaterialComponents_CompoundButton_RadioButton = 2131690115; + + // aapt resource value: 0x7F0F0284 + public const int Widget_MaterialComponents_CompoundButton_Switch = 2131690116; + + // aapt resource value: 0x7F0F0285 + public const int Widget_MaterialComponents_ExtendedFloatingActionButton = 2131690117; + + // aapt resource value: 0x7F0F0286 + public const int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon = 2131690118; + + // aapt resource value: 0x7F0F0287 + public const int Widget_MaterialComponents_FloatingActionButton = 2131690119; + + // aapt resource value: 0x7F0F0288 + public const int Widget_MaterialComponents_Light_ActionBar_Solid = 2131690120; + + // aapt resource value: 0x7F0F0289 + public const int Widget_MaterialComponents_MaterialButtonToggleGroup = 2131690121; + + // aapt resource value: 0x7F0F028A + public const int Widget_MaterialComponents_MaterialCalendar = 2131690122; + + // aapt resource value: 0x7F0F028B + public const int Widget_MaterialComponents_MaterialCalendar_Day = 2131690123; + + // aapt resource value: 0x7F0F028F + public const int Widget_MaterialComponents_MaterialCalendar_DayTextView = 2131690127; + + // aapt resource value: 0x7F0F028C + public const int Widget_MaterialComponents_MaterialCalendar_Day_Invalid = 2131690124; + + // aapt resource value: 0x7F0F028D + public const int Widget_MaterialComponents_MaterialCalendar_Day_Selected = 2131690125; + + // aapt resource value: 0x7F0F028E + public const int Widget_MaterialComponents_MaterialCalendar_Day_Today = 2131690126; + + // aapt resource value: 0x7F0F0290 + public const int Widget_MaterialComponents_MaterialCalendar_Fullscreen = 2131690128; + + // aapt resource value: 0x7F0F0291 + public const int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton = 2131690129; + + // aapt resource value: 0x7F0F0292 + public const int Widget_MaterialComponents_MaterialCalendar_HeaderDivider = 2131690130; + + // aapt resource value: 0x7F0F0293 + public const int Widget_MaterialComponents_MaterialCalendar_HeaderLayout = 2131690131; + + // aapt resource value: 0x7F0F0294 + public const int Widget_MaterialComponents_MaterialCalendar_HeaderSelection = 2131690132; + + // aapt resource value: 0x7F0F0295 + public const int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen = 2131690133; + + // aapt resource value: 0x7F0F0296 + public const int Widget_MaterialComponents_MaterialCalendar_HeaderTitle = 2131690134; + + // aapt resource value: 0x7F0F0297 + public const int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = 2131690135; + + // aapt resource value: 0x7F0F0298 + public const int Widget_MaterialComponents_MaterialCalendar_Item = 2131690136; + + // aapt resource value: 0x7F0F0299 + public const int Widget_MaterialComponents_MaterialCalendar_Year = 2131690137; + + // aapt resource value: 0x7F0F029A + public const int Widget_MaterialComponents_MaterialCalendar_Year_Selected = 2131690138; + + // aapt resource value: 0x7F0F029B + public const int Widget_MaterialComponents_MaterialCalendar_Year_Today = 2131690139; + + // aapt resource value: 0x7F0F029C + public const int Widget_MaterialComponents_NavigationView = 2131690140; + + // aapt resource value: 0x7F0F029D + public const int Widget_MaterialComponents_PopupMenu = 2131690141; + + // aapt resource value: 0x7F0F029E + public const int Widget_MaterialComponents_PopupMenu_ContextMenu = 2131690142; + + // aapt resource value: 0x7F0F029F + public const int Widget_MaterialComponents_PopupMenu_ListPopupWindow = 2131690143; + + // aapt resource value: 0x7F0F02A0 + public const int Widget_MaterialComponents_PopupMenu_Overflow = 2131690144; + + // aapt resource value: 0x7F0F02A1 + public const int Widget_MaterialComponents_ShapeableImageView = 2131690145; + + // aapt resource value: 0x7F0F02A2 + public const int Widget_MaterialComponents_Slider = 2131690146; + + // aapt resource value: 0x7F0F02A3 + public const int Widget_MaterialComponents_Snackbar = 2131690147; + + // aapt resource value: 0x7F0F02A4 + public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131690148; + + // aapt resource value: 0x7F0F02A5 + public const int Widget_MaterialComponents_Snackbar_TextView = 2131690149; + + // aapt resource value: 0x7F0F02A6 + public const int Widget_MaterialComponents_TabLayout = 2131690150; + + // aapt resource value: 0x7F0F02A7 + public const int Widget_MaterialComponents_TabLayout_Colored = 2131690151; + + // aapt resource value: 0x7F0F02A8 + public const int Widget_MaterialComponents_TabLayout_PrimarySurface = 2131690152; + + // aapt resource value: 0x7F0F02A9 + public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131690153; + + // aapt resource value: 0x7F0F02AA + public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131690154; + + // aapt resource value: 0x7F0F02AB + public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131690155; + + // aapt resource value: 0x7F0F02AC + public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131690156; + + // aapt resource value: 0x7F0F02AD + public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131690157; + + // aapt resource value: 0x7F0F02AE + public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131690158; + + // aapt resource value: 0x7F0F02AF + public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = 2131690159; + + // aapt resource value: 0x7F0F02B0 + public const int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu = 2131690160; + + // aapt resource value: 0x7F0F02B1 + public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131690161; + + // aapt resource value: 0x7F0F02B2 + public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131690162; + + // aapt resource value: 0x7F0F02B3 + public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = 2131690163; + + // aapt resource value: 0x7F0F02B4 + public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu = 2131690164; + + // aapt resource value: 0x7F0F02B5 + public const int Widget_MaterialComponents_TextView = 2131690165; + + // aapt resource value: 0x7F0F02B6 + public const int Widget_MaterialComponents_Toolbar = 2131690166; + + // aapt resource value: 0x7F0F02B7 + public const int Widget_MaterialComponents_Toolbar_Primary = 2131690167; + + // aapt resource value: 0x7F0F02B8 + public const int Widget_MaterialComponents_Toolbar_PrimarySurface = 2131690168; + + // aapt resource value: 0x7F0F02B9 + public const int Widget_MaterialComponents_Toolbar_Surface = 2131690169; + + // aapt resource value: 0x7F0F02BA + public const int Widget_MaterialComponents_Tooltip = 2131690170; + + // aapt resource value: 0x7F0F02BB + public const int Widget_Support_CoordinatorLayout = 2131690171; + + static Style() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Style() + { + } + } + + public partial class Styleable + { + + // aapt resource value: { 0x7F030034,0x7F03003B,0x7F03003C,0x7F0300B5,0x7F0300B6,0x7F0300B7,0x7F0300B8,0x7F0300B9,0x7F0300BA,0x7F0300D4,0x7F0300DD,0x7F0300DE,0x7F0300F2,0x7F030130,0x7F030136,0x7F03013C,0x7F03013D,0x7F030140,0x7F03014A,0x7F030157,0x7F03018B,0x7F0301AC,0x7F0301C5,0x7F0301CC,0x7F0301CD,0x7F03020E,0x7F030211,0x7F030264,0x7F03026E } + public static int[] ActionBar = new int[] { + 2130903092, + 2130903099, + 2130903100, + 2130903221, + 2130903222, + 2130903223, + 2130903224, + 2130903225, + 2130903226, + 2130903252, + 2130903261, + 2130903262, + 2130903282, + 2130903344, + 2130903350, + 2130903356, + 2130903357, + 2130903360, + 2130903370, + 2130903383, + 2130903435, + 2130903468, + 2130903493, + 2130903500, + 2130903501, + 2130903566, + 2130903569, + 2130903652, + 2130903662}; + + // aapt resource value: { 0x10100B3 } + public static int[] ActionBarLayout = new int[] { + 16842931}; + + // aapt resource value: 0 + public const int ActionBarLayout_android_layout_gravity = 0; + + // aapt resource value: 0 + public const int ActionBar_background = 0; + + // aapt resource value: 1 + public const int ActionBar_backgroundSplit = 1; + + // aapt resource value: 2 + public const int ActionBar_backgroundStacked = 2; + + // aapt resource value: 3 + public const int ActionBar_contentInsetEnd = 3; + + // aapt resource value: 4 + public const int ActionBar_contentInsetEndWithActions = 4; + + // aapt resource value: 5 + public const int ActionBar_contentInsetLeft = 5; + + // aapt resource value: 6 + public const int ActionBar_contentInsetRight = 6; + + // aapt resource value: 7 + public const int ActionBar_contentInsetStart = 7; + + // aapt resource value: 8 + public const int ActionBar_contentInsetStartWithNavigation = 8; + + // aapt resource value: 9 + public const int ActionBar_customNavigationLayout = 9; + + // aapt resource value: 10 + public const int ActionBar_displayOptions = 10; + + // aapt resource value: 11 + public const int ActionBar_divider = 11; + + // aapt resource value: 12 + public const int ActionBar_elevation = 12; + + // aapt resource value: 13 + public const int ActionBar_height = 13; + + // aapt resource value: 14 + public const int ActionBar_hideOnContentScroll = 14; + + // aapt resource value: 15 + public const int ActionBar_homeAsUpIndicator = 15; + + // aapt resource value: 16 + public const int ActionBar_homeLayout = 16; + + // aapt resource value: 17 + public const int ActionBar_icon = 17; + + // aapt resource value: 18 + public const int ActionBar_indeterminateProgressStyle = 18; + + // aapt resource value: 19 + public const int ActionBar_itemPadding = 19; + + // aapt resource value: 20 + public const int ActionBar_logo = 20; + + // aapt resource value: 21 + public const int ActionBar_navigationMode = 21; + + // aapt resource value: 22 + public const int ActionBar_popupTheme = 22; + + // aapt resource value: 23 + public const int ActionBar_progressBarPadding = 23; + + // aapt resource value: 24 + public const int ActionBar_progressBarStyle = 24; + + // aapt resource value: 25 + public const int ActionBar_subtitle = 25; + + // aapt resource value: 26 + public const int ActionBar_subtitleTextStyle = 26; + + // aapt resource value: 27 + public const int ActionBar_title = 27; + + // aapt resource value: 28 + public const int ActionBar_titleTextStyle = 28; + + // aapt resource value: { 0x101013F } + public static int[] ActionMenuItemView = new int[] { + 16843071}; + + // aapt resource value: 0 + public const int ActionMenuItemView_android_minWidth = 0; + + // aapt resource value: { 0xFFFFFFFF } + public static int[] ActionMenuView = new int[] { + -1}; + + // aapt resource value: { 0x7F030034,0x7F03003B,0x7F030097,0x7F030130,0x7F030211,0x7F03026E } + public static int[] ActionMode = new int[] { + 2130903092, + 2130903099, + 2130903191, + 2130903344, + 2130903569, + 2130903662}; + + // aapt resource value: 0 + public const int ActionMode_background = 0; + + // aapt resource value: 1 + public const int ActionMode_backgroundSplit = 1; + + // aapt resource value: 2 + public const int ActionMode_closeItemLayout = 2; + + // aapt resource value: 3 + public const int ActionMode_height = 3; + + // aapt resource value: 4 + public const int ActionMode_subtitleTextStyle = 4; + + // aapt resource value: 5 + public const int ActionMode_titleTextStyle = 5; + + // aapt resource value: { 0x7F030105,0x7F03014B } + public static int[] ActivityChooserView = new int[] { + 2130903301, + 2130903371}; + + // aapt resource value: 0 + public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + + // aapt resource value: 1 + public const int ActivityChooserView_initialActivityCount = 1; + + // aapt resource value: { 0x10100F2,0x7F030066,0x7F030067,0x7F030180,0x7F030181,0x7F0301A9,0x7F0301EC,0x7F0301EE } + public static int[] AlertDialog = new int[] { + 16842994, + 2130903142, + 2130903143, + 2130903424, + 2130903425, + 2130903465, + 2130903532, + 2130903534}; + + // aapt resource value: 0 + public const int AlertDialog_android_layout = 0; + + // aapt resource value: 1 + public const int AlertDialog_buttonIconDimen = 1; + + // aapt resource value: 2 + public const int AlertDialog_buttonPanelSideLayout = 2; + + // aapt resource value: 3 + public const int AlertDialog_listItemLayout = 3; + + // aapt resource value: 4 + public const int AlertDialog_listLayout = 4; + + // aapt resource value: 5 + public const int AlertDialog_multiChoiceItemLayout = 5; + + // aapt resource value: 6 + public const int AlertDialog_showTitle = 6; + + // aapt resource value: 7 + public const int AlertDialog_singleChoiceItemLayout = 7; + + // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D } + public static int[] AnimatedStateListDrawableCompat = new int[] { + 16843036, + 16843156, + 16843157, + 16843158, + 16843532, + 16843533}; + + // aapt resource value: 3 + public const int AnimatedStateListDrawableCompat_android_constantSize = 3; + + // aapt resource value: 0 + public const int AnimatedStateListDrawableCompat_android_dither = 0; + + // aapt resource value: 4 + public const int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; + + // aapt resource value: 5 + public const int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; + + // aapt resource value: 2 + public const int AnimatedStateListDrawableCompat_android_variablePadding = 2; + + // aapt resource value: 1 + public const int AnimatedStateListDrawableCompat_android_visible = 1; + + // aapt resource value: { 0x10100D0,0x1010199 } + public static int[] AnimatedStateListDrawableItem = new int[] { + 16842960, + 16843161}; + + // aapt resource value: 1 + public const int AnimatedStateListDrawableItem_android_drawable = 1; + + // aapt resource value: 0 + public const int AnimatedStateListDrawableItem_android_id = 0; + + // aapt resource value: { 0x1010199,0x1010449,0x101044A,0x101044B } + public static int[] AnimatedStateListDrawableTransition = new int[] { + 16843161, + 16843849, + 16843850, + 16843851}; + + // aapt resource value: 0 + public const int AnimatedStateListDrawableTransition_android_drawable = 0; + + // aapt resource value: 2 + public const int AnimatedStateListDrawableTransition_android_fromId = 2; + + // aapt resource value: 3 + public const int AnimatedStateListDrawableTransition_android_reversible = 3; + + // aapt resource value: 1 + public const int AnimatedStateListDrawableTransition_android_toId = 1; + + // aapt resource value: { 0x10100D4,0x101048F,0x1010540,0x7F0300F2,0x7F030106,0x7F030178,0x7F030179,0x7F030208 } + public static int[] AppBarLayout = new int[] { + 16842964, + 16843919, + 16844096, + 2130903282, + 2130903302, + 2130903416, + 2130903417, + 2130903560}; + + // aapt resource value: { 0x7F030202,0x7F030203,0x7F030205,0x7F030206 } + public static int[] AppBarLayoutStates = new int[] { + 2130903554, + 2130903555, + 2130903557, + 2130903558}; + + // aapt resource value: 0 + public const int AppBarLayoutStates_state_collapsed = 0; + + // aapt resource value: 1 + public const int AppBarLayoutStates_state_collapsible = 1; + + // aapt resource value: 2 + public const int AppBarLayoutStates_state_liftable = 2; + + // aapt resource value: 3 + public const int AppBarLayoutStates_state_lifted = 3; + + // aapt resource value: 0 + public const int AppBarLayout_android_background = 0; + + // aapt resource value: 2 + public const int AppBarLayout_android_keyboardNavigationCluster = 2; + + // aapt resource value: 1 + public const int AppBarLayout_android_touchscreenBlocksFocus = 1; + + // aapt resource value: 3 + public const int AppBarLayout_elevation = 3; + + // aapt resource value: 4 + public const int AppBarLayout_expanded = 4; + + // aapt resource value: { 0x7F030176,0x7F030177 } + public static int[] AppBarLayout_Layout = new int[] { + 2130903414, + 2130903415}; + + // aapt resource value: 0 + public const int AppBarLayout_Layout_layout_scrollFlags = 0; + + // aapt resource value: 1 + public const int AppBarLayout_Layout_layout_scrollInterpolator = 1; + + // aapt resource value: 5 + public const int AppBarLayout_liftOnScroll = 5; + + // aapt resource value: 6 + public const int AppBarLayout_liftOnScrollTargetViewId = 6; + + // aapt resource value: 7 + public const int AppBarLayout_statusBarForeground = 7; + + // aapt resource value: { 0x1010119,0x7F0301FA,0x7F030262,0x7F030263 } + public static int[] AppCompatImageView = new int[] { + 16843033, + 2130903546, + 2130903650, + 2130903651}; + + // aapt resource value: 0 + public const int AppCompatImageView_android_src = 0; + + // aapt resource value: 1 + public const int AppCompatImageView_srcCompat = 1; + + // aapt resource value: 2 + public const int AppCompatImageView_tint = 2; + + // aapt resource value: 3 + public const int AppCompatImageView_tintMode = 3; + + // aapt resource value: { 0x1010142,0x7F03025F,0x7F030260,0x7F030261 } + public static int[] AppCompatSeekBar = new int[] { + 16843074, + 2130903647, + 2130903648, + 2130903649}; + + // aapt resource value: 0 + public const int AppCompatSeekBar_android_thumb = 0; + + // aapt resource value: 1 + public const int AppCompatSeekBar_tickMark = 1; + + // aapt resource value: 2 + public const int AppCompatSeekBar_tickMarkTint = 2; + + // aapt resource value: 3 + public const int AppCompatSeekBar_tickMarkTintMode = 3; + + // aapt resource value: { 0x1010034,0x101016D,0x101016E,0x101016F,0x1010170,0x1010392,0x1010393 } + public static int[] AppCompatTextHelper = new int[] { + 16842804, + 16843117, + 16843118, + 16843119, + 16843120, + 16843666, + 16843667}; + + // aapt resource value: 2 + public const int AppCompatTextHelper_android_drawableBottom = 2; + + // aapt resource value: 6 + public const int AppCompatTextHelper_android_drawableEnd = 6; + + // aapt resource value: 3 + public const int AppCompatTextHelper_android_drawableLeft = 3; + + // aapt resource value: 4 + public const int AppCompatTextHelper_android_drawableRight = 4; + + // aapt resource value: 5 + public const int AppCompatTextHelper_android_drawableStart = 5; + + // aapt resource value: 1 + public const int AppCompatTextHelper_android_drawableTop = 1; + + // aapt resource value: 0 + public const int AppCompatTextHelper_android_textAppearance = 0; + + // aapt resource value: { 0x1010034,0x7F03002F,0x7F030030,0x7F030031,0x7F030032,0x7F030033,0x7F0300E2,0x7F0300E3,0x7F0300E4,0x7F0300E5,0x7F0300E7,0x7F0300E8,0x7F0300E9,0x7F0300EA,0x7F03011C,0x7F03011F,0x7F030127,0x7F03016B,0x7F03017A,0x7F030235,0x7F030251 } + public static int[] AppCompatTextView = new int[] { + 16842804, + 2130903087, + 2130903088, + 2130903089, + 2130903090, + 2130903091, + 2130903266, + 2130903267, + 2130903268, + 2130903269, + 2130903271, + 2130903272, + 2130903273, + 2130903274, + 2130903324, + 2130903327, + 2130903335, + 2130903403, + 2130903418, + 2130903605, + 2130903633}; + + // aapt resource value: 0 + public const int AppCompatTextView_android_textAppearance = 0; + + // aapt resource value: 1 + public const int AppCompatTextView_autoSizeMaxTextSize = 1; + + // aapt resource value: 2 + public const int AppCompatTextView_autoSizeMinTextSize = 2; + + // aapt resource value: 3 + public const int AppCompatTextView_autoSizePresetSizes = 3; + + // aapt resource value: 4 + public const int AppCompatTextView_autoSizeStepGranularity = 4; + + // aapt resource value: 5 + public const int AppCompatTextView_autoSizeTextType = 5; + + // aapt resource value: 6 + public const int AppCompatTextView_drawableBottomCompat = 6; + + // aapt resource value: 7 + public const int AppCompatTextView_drawableEndCompat = 7; + + // aapt resource value: 8 + public const int AppCompatTextView_drawableLeftCompat = 8; + + // aapt resource value: 9 + public const int AppCompatTextView_drawableRightCompat = 9; + + // aapt resource value: 10 + public const int AppCompatTextView_drawableStartCompat = 10; + + // aapt resource value: 11 + public const int AppCompatTextView_drawableTint = 11; + + // aapt resource value: 12 + public const int AppCompatTextView_drawableTintMode = 12; + + // aapt resource value: 13 + public const int AppCompatTextView_drawableTopCompat = 13; + + // aapt resource value: 14 + public const int AppCompatTextView_firstBaselineToTopHeight = 14; + + // aapt resource value: 15 + public const int AppCompatTextView_fontFamily = 15; + + // aapt resource value: 16 + public const int AppCompatTextView_fontVariationSettings = 16; + + // aapt resource value: 17 + public const int AppCompatTextView_lastBaselineToBottomHeight = 17; + + // aapt resource value: 18 + public const int AppCompatTextView_lineHeight = 18; + + // aapt resource value: 19 + public const int AppCompatTextView_textAllCaps = 19; + + // aapt resource value: 20 + public const int AppCompatTextView_textLocale = 20; + + // aapt resource value: { 0x1010057,0x10100AE,0x7F030000,0x7F030001,0x7F030002,0x7F030003,0x7F030004,0x7F030005,0x7F030006,0x7F030007,0x7F030008,0x7F030009,0x7F03000A,0x7F03000B,0x7F03000C,0x7F03000E,0x7F03000F,0x7F030010,0x7F030011,0x7F030012,0x7F030013,0x7F030014,0x7F030015,0x7F030016,0x7F030017,0x7F030018,0x7F030019,0x7F03001A,0x7F03001B,0x7F03001C,0x7F03001D,0x7F03001E,0x7F030022,0x7F030023,0x7F030024,0x7F030025,0x7F030026,0x7F03002E,0x7F03004F,0x7F03005F,0x7F030060,0x7F030061,0x7F030062,0x7F030063,0x7F030068,0x7F030069,0x7F030074,0x7F03007B,0x7F03009E,0x7F03009F,0x7F0300A0,0x7F0300A1,0x7F0300A2,0x7F0300A3,0x7F0300A4,0x7F0300AB,0x7F0300AC,0x7F0300B2,0x7F0300C1,0x7F0300DA,0x7F0300DB,0x7F0300DC,0x7F0300DF,0x7F0300E1,0x7F0300ED,0x7F0300EE,0x7F0300EF,0x7F0300F0,0x7F0300F1,0x7F03013C,0x7F030149,0x7F03017C,0x7F03017D,0x7F03017E,0x7F03017F,0x7F030182,0x7F030183,0x7F030184,0x7F030185,0x7F030186,0x7F030187,0x7F030188,0x7F030189,0x7F03018A,0x7F0301B8,0x7F0301B9,0x7F0301BA,0x7F0301C4,0x7F0301C6,0x7F0301D0,0x7F0301D2,0x7F0301D3,0x7F0301D4,0x7F0301DE,0x7F0301DF,0x7F0301E0,0x7F0301E1,0x7F0301F7,0x7F0301F8,0x7F030219,0x7F030240,0x7F030242,0x7F030243,0x7F030244,0x7F030246,0x7F030247,0x7F030248,0x7F030249,0x7F03024C,0x7F03024D,0x7F030270,0x7F030271,0x7F030272,0x7F030273,0x7F030283,0x7F030285,0x7F030286,0x7F030287,0x7F030288,0x7F030289,0x7F03028A,0x7F03028B,0x7F03028C,0x7F03028D,0x7F03028E } + public static int[] AppCompatTheme = new int[] { + 16842839, + 16842926, + 2130903040, + 2130903041, + 2130903042, + 2130903043, + 2130903044, + 2130903045, + 2130903046, + 2130903047, + 2130903048, + 2130903049, + 2130903050, + 2130903051, + 2130903052, + 2130903054, + 2130903055, + 2130903056, + 2130903057, + 2130903058, + 2130903059, + 2130903060, + 2130903061, + 2130903062, + 2130903063, + 2130903064, + 2130903065, + 2130903066, + 2130903067, + 2130903068, + 2130903069, + 2130903070, + 2130903074, + 2130903075, + 2130903076, + 2130903077, + 2130903078, + 2130903086, + 2130903119, + 2130903135, + 2130903136, + 2130903137, + 2130903138, + 2130903139, + 2130903144, + 2130903145, + 2130903156, + 2130903163, + 2130903198, + 2130903199, + 2130903200, + 2130903201, + 2130903202, + 2130903203, + 2130903204, + 2130903211, + 2130903212, + 2130903218, + 2130903233, + 2130903258, + 2130903259, + 2130903260, + 2130903263, + 2130903265, + 2130903277, + 2130903278, + 2130903279, + 2130903280, + 2130903281, + 2130903356, + 2130903369, + 2130903420, + 2130903421, + 2130903422, + 2130903423, + 2130903426, + 2130903427, + 2130903428, + 2130903429, + 2130903430, + 2130903431, + 2130903432, + 2130903433, + 2130903434, + 2130903480, + 2130903481, + 2130903482, + 2130903492, + 2130903494, + 2130903504, + 2130903506, + 2130903507, + 2130903508, + 2130903518, + 2130903519, + 2130903520, + 2130903521, + 2130903543, + 2130903544, + 2130903577, + 2130903616, + 2130903618, + 2130903619, + 2130903620, + 2130903622, + 2130903623, + 2130903624, + 2130903625, + 2130903628, + 2130903629, + 2130903664, + 2130903665, + 2130903666, + 2130903667, + 2130903683, + 2130903685, + 2130903686, + 2130903687, + 2130903688, + 2130903689, + 2130903690, + 2130903691, + 2130903692, + 2130903693, + 2130903694}; + + // aapt resource value: 2 + public const int AppCompatTheme_actionBarDivider = 2; + + // aapt resource value: 3 + public const int AppCompatTheme_actionBarItemBackground = 3; + + // aapt resource value: 4 + public const int AppCompatTheme_actionBarPopupTheme = 4; + + // aapt resource value: 5 + public const int AppCompatTheme_actionBarSize = 5; + + // aapt resource value: 6 + public const int AppCompatTheme_actionBarSplitStyle = 6; + + // aapt resource value: 7 + public const int AppCompatTheme_actionBarStyle = 7; + + // aapt resource value: 8 + public const int AppCompatTheme_actionBarTabBarStyle = 8; + + // aapt resource value: 9 + public const int AppCompatTheme_actionBarTabStyle = 9; + + // aapt resource value: 10 + public const int AppCompatTheme_actionBarTabTextStyle = 10; + + // aapt resource value: 11 + public const int AppCompatTheme_actionBarTheme = 11; + + // aapt resource value: 12 + public const int AppCompatTheme_actionBarWidgetTheme = 12; + + // aapt resource value: 13 + public const int AppCompatTheme_actionButtonStyle = 13; + + // aapt resource value: 14 + public const int AppCompatTheme_actionDropDownStyle = 14; + + // aapt resource value: 15 + public const int AppCompatTheme_actionMenuTextAppearance = 15; + + // aapt resource value: 16 + public const int AppCompatTheme_actionMenuTextColor = 16; + + // aapt resource value: 17 + public const int AppCompatTheme_actionModeBackground = 17; + + // aapt resource value: 18 + public const int AppCompatTheme_actionModeCloseButtonStyle = 18; + + // aapt resource value: 19 + public const int AppCompatTheme_actionModeCloseDrawable = 19; + + // aapt resource value: 20 + public const int AppCompatTheme_actionModeCopyDrawable = 20; + + // aapt resource value: 21 + public const int AppCompatTheme_actionModeCutDrawable = 21; + + // aapt resource value: 22 + public const int AppCompatTheme_actionModeFindDrawable = 22; + + // aapt resource value: 23 + public const int AppCompatTheme_actionModePasteDrawable = 23; + + // aapt resource value: 24 + public const int AppCompatTheme_actionModePopupWindowStyle = 24; + + // aapt resource value: 25 + public const int AppCompatTheme_actionModeSelectAllDrawable = 25; + + // aapt resource value: 26 + public const int AppCompatTheme_actionModeShareDrawable = 26; + + // aapt resource value: 27 + public const int AppCompatTheme_actionModeSplitBackground = 27; + + // aapt resource value: 28 + public const int AppCompatTheme_actionModeStyle = 28; + + // aapt resource value: 29 + public const int AppCompatTheme_actionModeWebSearchDrawable = 29; + + // aapt resource value: 30 + public const int AppCompatTheme_actionOverflowButtonStyle = 30; + + // aapt resource value: 31 + public const int AppCompatTheme_actionOverflowMenuStyle = 31; + + // aapt resource value: 32 + public const int AppCompatTheme_activityChooserViewStyle = 32; + + // aapt resource value: 33 + public const int AppCompatTheme_alertDialogButtonGroupStyle = 33; + + // aapt resource value: 34 + public const int AppCompatTheme_alertDialogCenterButtons = 34; + + // aapt resource value: 35 + public const int AppCompatTheme_alertDialogStyle = 35; + + // aapt resource value: 36 + public const int AppCompatTheme_alertDialogTheme = 36; + + // aapt resource value: 1 + public const int AppCompatTheme_android_windowAnimationStyle = 1; + + // aapt resource value: 0 + public const int AppCompatTheme_android_windowIsFloating = 0; + + // aapt resource value: 37 + public const int AppCompatTheme_autoCompleteTextViewStyle = 37; + + // aapt resource value: 38 + public const int AppCompatTheme_borderlessButtonStyle = 38; + + // aapt resource value: 39 + public const int AppCompatTheme_buttonBarButtonStyle = 39; + + // aapt resource value: 40 + public const int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + + // aapt resource value: 41 + public const int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + + // aapt resource value: 42 + public const int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + + // aapt resource value: 43 + public const int AppCompatTheme_buttonBarStyle = 43; + + // aapt resource value: 44 + public const int AppCompatTheme_buttonStyle = 44; + + // aapt resource value: 45 + public const int AppCompatTheme_buttonStyleSmall = 45; + + // aapt resource value: 46 + public const int AppCompatTheme_checkboxStyle = 46; + + // aapt resource value: 47 + public const int AppCompatTheme_checkedTextViewStyle = 47; + + // aapt resource value: 48 + public const int AppCompatTheme_colorAccent = 48; + + // aapt resource value: 49 + public const int AppCompatTheme_colorBackgroundFloating = 49; + + // aapt resource value: 50 + public const int AppCompatTheme_colorButtonNormal = 50; + + // aapt resource value: 51 + public const int AppCompatTheme_colorControlActivated = 51; + + // aapt resource value: 52 + public const int AppCompatTheme_colorControlHighlight = 52; + + // aapt resource value: 53 + public const int AppCompatTheme_colorControlNormal = 53; + + // aapt resource value: 54 + public const int AppCompatTheme_colorError = 54; + + // aapt resource value: 55 + public const int AppCompatTheme_colorPrimary = 55; + + // aapt resource value: 56 + public const int AppCompatTheme_colorPrimaryDark = 56; + + // aapt resource value: 57 + public const int AppCompatTheme_colorSwitchThumbNormal = 57; + + // aapt resource value: 58 + public const int AppCompatTheme_controlBackground = 58; + + // aapt resource value: 59 + public const int AppCompatTheme_dialogCornerRadius = 59; + + // aapt resource value: 60 + public const int AppCompatTheme_dialogPreferredPadding = 60; + + // aapt resource value: 61 + public const int AppCompatTheme_dialogTheme = 61; + + // aapt resource value: 62 + public const int AppCompatTheme_dividerHorizontal = 62; + + // aapt resource value: 63 + public const int AppCompatTheme_dividerVertical = 63; + + // aapt resource value: 65 + public const int AppCompatTheme_dropdownListPreferredItemHeight = 65; + + // aapt resource value: 64 + public const int AppCompatTheme_dropDownListViewStyle = 64; + + // aapt resource value: 66 + public const int AppCompatTheme_editTextBackground = 66; + + // aapt resource value: 67 + public const int AppCompatTheme_editTextColor = 67; + + // aapt resource value: 68 + public const int AppCompatTheme_editTextStyle = 68; + + // aapt resource value: 69 + public const int AppCompatTheme_homeAsUpIndicator = 69; + + // aapt resource value: 70 + public const int AppCompatTheme_imageButtonStyle = 70; + + // aapt resource value: 71 + public const int AppCompatTheme_listChoiceBackgroundIndicator = 71; + + // aapt resource value: 72 + public const int AppCompatTheme_listChoiceIndicatorMultipleAnimated = 72; + + // aapt resource value: 73 + public const int AppCompatTheme_listChoiceIndicatorSingleAnimated = 73; + + // aapt resource value: 74 + public const int AppCompatTheme_listDividerAlertDialog = 74; + + // aapt resource value: 75 + public const int AppCompatTheme_listMenuViewStyle = 75; + + // aapt resource value: 76 + public const int AppCompatTheme_listPopupWindowStyle = 76; + + // aapt resource value: 77 + public const int AppCompatTheme_listPreferredItemHeight = 77; + + // aapt resource value: 78 + public const int AppCompatTheme_listPreferredItemHeightLarge = 78; + + // aapt resource value: 79 + public const int AppCompatTheme_listPreferredItemHeightSmall = 79; + + // aapt resource value: 80 + public const int AppCompatTheme_listPreferredItemPaddingEnd = 80; + + // aapt resource value: 81 + public const int AppCompatTheme_listPreferredItemPaddingLeft = 81; + + // aapt resource value: 82 + public const int AppCompatTheme_listPreferredItemPaddingRight = 82; + + // aapt resource value: 83 + public const int AppCompatTheme_listPreferredItemPaddingStart = 83; + + // aapt resource value: 84 + public const int AppCompatTheme_panelBackground = 84; + + // aapt resource value: 85 + public const int AppCompatTheme_panelMenuListTheme = 85; + + // aapt resource value: 86 + public const int AppCompatTheme_panelMenuListWidth = 86; + + // aapt resource value: 87 + public const int AppCompatTheme_popupMenuStyle = 87; + + // aapt resource value: 88 + public const int AppCompatTheme_popupWindowStyle = 88; + + // aapt resource value: 89 + public const int AppCompatTheme_radioButtonStyle = 89; + + // aapt resource value: 90 + public const int AppCompatTheme_ratingBarStyle = 90; + + // aapt resource value: 91 + public const int AppCompatTheme_ratingBarStyleIndicator = 91; + + // aapt resource value: 92 + public const int AppCompatTheme_ratingBarStyleSmall = 92; + + // aapt resource value: 93 + public const int AppCompatTheme_searchViewStyle = 93; + + // aapt resource value: 94 + public const int AppCompatTheme_seekBarStyle = 94; + + // aapt resource value: 95 + public const int AppCompatTheme_selectableItemBackground = 95; + + // aapt resource value: 96 + public const int AppCompatTheme_selectableItemBackgroundBorderless = 96; + + // aapt resource value: 97 + public const int AppCompatTheme_spinnerDropDownItemStyle = 97; + + // aapt resource value: 98 + public const int AppCompatTheme_spinnerStyle = 98; + + // aapt resource value: 99 + public const int AppCompatTheme_switchStyle = 99; + + // aapt resource value: 100 + public const int AppCompatTheme_textAppearanceLargePopupMenu = 100; + + // aapt resource value: 101 + public const int AppCompatTheme_textAppearanceListItem = 101; + + // aapt resource value: 102 + public const int AppCompatTheme_textAppearanceListItemSecondary = 102; + + // aapt resource value: 103 + public const int AppCompatTheme_textAppearanceListItemSmall = 103; + + // aapt resource value: 104 + public const int AppCompatTheme_textAppearancePopupMenuHeader = 104; + + // aapt resource value: 105 + public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 105; + + // aapt resource value: 106 + public const int AppCompatTheme_textAppearanceSearchResultTitle = 106; + + // aapt resource value: 107 + public const int AppCompatTheme_textAppearanceSmallPopupMenu = 107; + + // aapt resource value: 108 + public const int AppCompatTheme_textColorAlertDialogListItem = 108; + + // aapt resource value: 109 + public const int AppCompatTheme_textColorSearchUrl = 109; + + // aapt resource value: 110 + public const int AppCompatTheme_toolbarNavigationButtonStyle = 110; + + // aapt resource value: 111 + public const int AppCompatTheme_toolbarStyle = 111; + + // aapt resource value: 112 + public const int AppCompatTheme_tooltipForegroundColor = 112; + + // aapt resource value: 113 + public const int AppCompatTheme_tooltipFrameBackground = 113; + + // aapt resource value: 114 + public const int AppCompatTheme_viewInflaterClass = 114; + + // aapt resource value: 115 + public const int AppCompatTheme_windowActionBar = 115; + + // aapt resource value: 116 + public const int AppCompatTheme_windowActionBarOverlay = 116; + + // aapt resource value: 117 + public const int AppCompatTheme_windowActionModeOverlay = 117; + + // aapt resource value: 118 + public const int AppCompatTheme_windowFixedHeightMajor = 118; + + // aapt resource value: 119 + public const int AppCompatTheme_windowFixedHeightMinor = 119; + + // aapt resource value: 120 + public const int AppCompatTheme_windowFixedWidthMajor = 120; + + // aapt resource value: 121 + public const int AppCompatTheme_windowFixedWidthMinor = 121; + + // aapt resource value: 122 + public const int AppCompatTheme_windowMinWidthMajor = 122; + + // aapt resource value: 123 + public const int AppCompatTheme_windowMinWidthMinor = 123; + + // aapt resource value: 124 + public const int AppCompatTheme_windowNoTitle = 124; + + // aapt resource value: { 0x7F030035,0x7F03003F,0x7F030041,0x7F03013E,0x7F0301A3,0x7F0301AE,0x7F030282 } + public static int[] Badge = new int[] { + 2130903093, + 2130903103, + 2130903105, + 2130903358, + 2130903459, + 2130903470, + 2130903682}; + + // aapt resource value: 0 + public const int Badge_backgroundColor = 0; + + // aapt resource value: 1 + public const int Badge_badgeGravity = 1; + + // aapt resource value: 2 + public const int Badge_badgeTextColor = 2; + + // aapt resource value: 3 + public const int Badge_horizontalOffset = 3; + + // aapt resource value: 4 + public const int Badge_maxCharacterCount = 4; + + // aapt resource value: 5 + public const int Badge_number = 5; + + // aapt resource value: 6 + public const int Badge_verticalOffset = 6; + + // aapt resource value: { 0x7F03003D,0x7F0300F2,0x7F030110,0x7F030111,0x7F030112,0x7F030113,0x7F030114,0x7F030137,0x7F0301B2,0x7F0301B4,0x7F0301B5 } + public static int[] BottomAppBar = new int[] { + 2130903101, + 2130903282, + 2130903312, + 2130903313, + 2130903314, + 2130903315, + 2130903316, + 2130903351, + 2130903474, + 2130903476, + 2130903477}; + + // aapt resource value: 0 + public const int BottomAppBar_backgroundTint = 0; + + // aapt resource value: 1 + public const int BottomAppBar_elevation = 1; + + // aapt resource value: 2 + public const int BottomAppBar_fabAlignmentMode = 2; + + // aapt resource value: 3 + public const int BottomAppBar_fabAnimationMode = 3; + + // aapt resource value: 4 + public const int BottomAppBar_fabCradleMargin = 4; + + // aapt resource value: 5 + public const int BottomAppBar_fabCradleRoundedCornerRadius = 5; + + // aapt resource value: 6 + public const int BottomAppBar_fabCradleVerticalOffset = 6; + + // aapt resource value: 7 + public const int BottomAppBar_hideOnScroll = 7; + + // aapt resource value: 8 + public const int BottomAppBar_paddingBottomSystemWindowInsets = 8; + + // aapt resource value: 9 + public const int BottomAppBar_paddingLeftSystemWindowInsets = 9; + + // aapt resource value: 10 + public const int BottomAppBar_paddingRightSystemWindowInsets = 10; + + // aapt resource value: { 0x7F03003D,0x7F0300F2,0x7F03014F,0x7F030152,0x7F030154,0x7F030155,0x7F030158,0x7F030164,0x7F030165,0x7F030166,0x7F03016A,0x7F0301A7 } + public static int[] BottomNavigationView = new int[] { + 2130903101, + 2130903282, + 2130903375, + 2130903378, + 2130903380, + 2130903381, + 2130903384, + 2130903396, + 2130903397, + 2130903398, + 2130903402, + 2130903463}; + + // aapt resource value: 0 + public const int BottomNavigationView_backgroundTint = 0; + + // aapt resource value: 1 + public const int BottomNavigationView_elevation = 1; + + // aapt resource value: 2 + public const int BottomNavigationView_itemBackground = 2; + + // aapt resource value: 3 + public const int BottomNavigationView_itemHorizontalTranslationEnabled = 3; + + // aapt resource value: 4 + public const int BottomNavigationView_itemIconSize = 4; + + // aapt resource value: 5 + public const int BottomNavigationView_itemIconTint = 5; + + // aapt resource value: 6 + public const int BottomNavigationView_itemRippleColor = 6; + + // aapt resource value: 7 + public const int BottomNavigationView_itemTextAppearanceActive = 7; + + // aapt resource value: 8 + public const int BottomNavigationView_itemTextAppearanceInactive = 8; + + // aapt resource value: 9 + public const int BottomNavigationView_itemTextColor = 9; + + // aapt resource value: 10 + public const int BottomNavigationView_labelVisibilityMode = 10; + + // aapt resource value: 11 + public const int BottomNavigationView_menu = 11; + + // aapt resource value: { 0x1010440,0x7F03003D,0x7F030045,0x7F030046,0x7F030047,0x7F030048,0x7F030049,0x7F03004B,0x7F03004C,0x7F03004D,0x7F03012B,0x7F0301E3,0x7F0301E6 } + public static int[] BottomSheetBehavior_Layout = new int[] { + 16843840, + 2130903101, + 2130903109, + 2130903110, + 2130903111, + 2130903112, + 2130903113, + 2130903115, + 2130903116, + 2130903117, + 2130903339, + 2130903523, + 2130903526}; + + // aapt resource value: 0 + public const int BottomSheetBehavior_Layout_android_elevation = 0; + + // aapt resource value: 1 + public const int BottomSheetBehavior_Layout_backgroundTint = 1; + + // aapt resource value: 2 + public const int BottomSheetBehavior_Layout_behavior_draggable = 2; + + // aapt resource value: 3 + public const int BottomSheetBehavior_Layout_behavior_expandedOffset = 3; + + // aapt resource value: 4 + public const int BottomSheetBehavior_Layout_behavior_fitToContents = 4; + + // aapt resource value: 5 + public const int BottomSheetBehavior_Layout_behavior_halfExpandedRatio = 5; + + // aapt resource value: 6 + public const int BottomSheetBehavior_Layout_behavior_hideable = 6; + + // aapt resource value: 7 + public const int BottomSheetBehavior_Layout_behavior_peekHeight = 7; + + // aapt resource value: 8 + public const int BottomSheetBehavior_Layout_behavior_saveFlags = 8; + + // aapt resource value: 9 + public const int BottomSheetBehavior_Layout_behavior_skipCollapsed = 9; + + // aapt resource value: 10 + public const int BottomSheetBehavior_Layout_gestureInsetBottomIgnored = 10; + + // aapt resource value: 11 + public const int BottomSheetBehavior_Layout_shapeAppearance = 11; + + // aapt resource value: 12 + public const int BottomSheetBehavior_Layout_shapeAppearanceOverlay = 12; + + // aapt resource value: { 0x7F030027 } + public static int[] ButtonBarLayout = new int[] { + 2130903079}; + + // aapt resource value: 0 + public const int ButtonBarLayout_allowStacking = 0; + + // aapt resource value: { 0x101013F,0x1010140,0x7F03006C,0x7F03006D,0x7F03006E,0x7F030070,0x7F030071,0x7F030072,0x7F0300BB,0x7F0300BC,0x7F0300BD,0x7F0300BE,0x7F0300BF } + public static int[] CardView = new int[] { + 16843071, + 16843072, + 2130903148, + 2130903149, + 2130903150, + 2130903152, + 2130903153, + 2130903154, + 2130903227, + 2130903228, + 2130903229, + 2130903230, + 2130903231}; + + // aapt resource value: 1 + public const int CardView_android_minHeight = 1; + + // aapt resource value: 0 + public const int CardView_android_minWidth = 0; + + // aapt resource value: 2 + public const int CardView_cardBackgroundColor = 2; + + // aapt resource value: 3 + public const int CardView_cardCornerRadius = 3; + + // aapt resource value: 4 + public const int CardView_cardElevation = 4; + + // aapt resource value: 5 + public const int CardView_cardMaxElevation = 5; + + // aapt resource value: 6 + public const int CardView_cardPreventCornerOverlap = 6; + + // aapt resource value: 7 + public const int CardView_cardUseCompatPadding = 7; + + // aapt resource value: 8 + public const int CardView_contentPadding = 8; + + // aapt resource value: 9 + public const int CardView_contentPaddingBottom = 9; + + // aapt resource value: 10 + public const int CardView_contentPaddingLeft = 10; + + // aapt resource value: 11 + public const int CardView_contentPaddingRight = 11; + + // aapt resource value: 12 + public const int CardView_contentPaddingTop = 12; + + // aapt resource value: { 0x1010034,0x1010098,0x10100AB,0x101011F,0x101014F,0x10101E5,0x7F030077,0x7F030078,0x7F030079,0x7F03007A,0x7F03007C,0x7F03007D,0x7F03007E,0x7F030080,0x7F030081,0x7F030082,0x7F030083,0x7F030084,0x7F030085,0x7F030086,0x7F03008B,0x7F03008C,0x7F03008D,0x7F03008F,0x7F030090,0x7F030091,0x7F030092,0x7F030093,0x7F030094,0x7F030095,0x7F030096,0x7F0300FD,0x7F030135,0x7F030141,0x7F030145,0x7F0301D7,0x7F0301E3,0x7F0301E6,0x7F0301EA,0x7F03024E,0x7F030252 } + public static int[] Chip = new int[] { + 16842804, + 16842904, + 16842923, + 16843039, + 16843087, + 16843237, + 2130903159, + 2130903160, + 2130903161, + 2130903162, + 2130903164, + 2130903165, + 2130903166, + 2130903168, + 2130903169, + 2130903170, + 2130903171, + 2130903172, + 2130903173, + 2130903174, + 2130903179, + 2130903180, + 2130903181, + 2130903183, + 2130903184, + 2130903185, + 2130903186, + 2130903187, + 2130903188, + 2130903189, + 2130903190, + 2130903293, + 2130903349, + 2130903361, + 2130903365, + 2130903511, + 2130903523, + 2130903526, + 2130903530, + 2130903630, + 2130903634}; + + // aapt resource value: { 0x7F030076,0x7F030087,0x7F030088,0x7F030089,0x7F0301E2,0x7F0301EF,0x7F0301F0 } + public static int[] ChipGroup = new int[] { + 2130903158, + 2130903175, + 2130903176, + 2130903177, + 2130903522, + 2130903535, + 2130903536}; + + // aapt resource value: 0 + public const int ChipGroup_checkedChip = 0; + + // aapt resource value: 1 + public const int ChipGroup_chipSpacing = 1; + + // aapt resource value: 2 + public const int ChipGroup_chipSpacingHorizontal = 2; + + // aapt resource value: 3 + public const int ChipGroup_chipSpacingVertical = 3; + + // aapt resource value: 4 + public const int ChipGroup_selectionRequired = 4; + + // aapt resource value: 5 + public const int ChipGroup_singleLine = 5; + + // aapt resource value: 6 + public const int ChipGroup_singleSelection = 6; + + // aapt resource value: 5 + public const int Chip_android_checkable = 5; + + // aapt resource value: 2 + public const int Chip_android_ellipsize = 2; + + // aapt resource value: 3 + public const int Chip_android_maxWidth = 3; + + // aapt resource value: 4 + public const int Chip_android_text = 4; + + // aapt resource value: 0 + public const int Chip_android_textAppearance = 0; + + // aapt resource value: 1 + public const int Chip_android_textColor = 1; + + // aapt resource value: 6 + public const int Chip_checkedIcon = 6; + + // aapt resource value: 7 + public const int Chip_checkedIconEnabled = 7; + + // aapt resource value: 8 + public const int Chip_checkedIconTint = 8; + + // aapt resource value: 9 + public const int Chip_checkedIconVisible = 9; + + // aapt resource value: 10 + public const int Chip_chipBackgroundColor = 10; + + // aapt resource value: 11 + public const int Chip_chipCornerRadius = 11; + + // aapt resource value: 12 + public const int Chip_chipEndPadding = 12; + + // aapt resource value: 13 + public const int Chip_chipIcon = 13; + + // aapt resource value: 14 + public const int Chip_chipIconEnabled = 14; + + // aapt resource value: 15 + public const int Chip_chipIconSize = 15; + + // aapt resource value: 16 + public const int Chip_chipIconTint = 16; + + // aapt resource value: 17 + public const int Chip_chipIconVisible = 17; + + // aapt resource value: 18 + public const int Chip_chipMinHeight = 18; + + // aapt resource value: 19 + public const int Chip_chipMinTouchTargetSize = 19; + + // aapt resource value: 20 + public const int Chip_chipStartPadding = 20; + + // aapt resource value: 21 + public const int Chip_chipStrokeColor = 21; + + // aapt resource value: 22 + public const int Chip_chipStrokeWidth = 22; + + // aapt resource value: 23 + public const int Chip_chipSurfaceColor = 23; + + // aapt resource value: 24 + public const int Chip_closeIcon = 24; + + // aapt resource value: 25 + public const int Chip_closeIconEnabled = 25; + + // aapt resource value: 26 + public const int Chip_closeIconEndPadding = 26; + + // aapt resource value: 27 + public const int Chip_closeIconSize = 27; + + // aapt resource value: 28 + public const int Chip_closeIconStartPadding = 28; + + // aapt resource value: 29 + public const int Chip_closeIconTint = 29; + + // aapt resource value: 30 + public const int Chip_closeIconVisible = 30; + + // aapt resource value: 31 + public const int Chip_ensureMinTouchTargetSize = 31; + + // aapt resource value: 32 + public const int Chip_hideMotionSpec = 32; + + // aapt resource value: 33 + public const int Chip_iconEndPadding = 33; + + // aapt resource value: 34 + public const int Chip_iconStartPadding = 34; + + // aapt resource value: 35 + public const int Chip_rippleColor = 35; + + // aapt resource value: 36 + public const int Chip_shapeAppearance = 36; + + // aapt resource value: 37 + public const int Chip_shapeAppearanceOverlay = 37; + + // aapt resource value: 38 + public const int Chip_showMotionSpec = 38; + + // aapt resource value: 39 + public const int Chip_textEndPadding = 39; + + // aapt resource value: 40 + public const int Chip_textStartPadding = 40; + + // aapt resource value: { 0x7F03009A,0x7F03009B,0x7F0300C0,0x7F030107,0x7F030108,0x7F030109,0x7F03010A,0x7F03010B,0x7F03010C,0x7F03010D,0x7F0301A5,0x7F0301D8,0x7F0301DA,0x7F030209,0x7F030264,0x7F030265,0x7F03026F } + public static int[] CollapsingToolbarLayout = new int[] { + 2130903194, + 2130903195, + 2130903232, + 2130903303, + 2130903304, + 2130903305, + 2130903306, + 2130903307, + 2130903308, + 2130903309, + 2130903461, + 2130903512, + 2130903514, + 2130903561, + 2130903652, + 2130903653, + 2130903663}; + + // aapt resource value: 0 + public const int CollapsingToolbarLayout_collapsedTitleGravity = 0; + + // aapt resource value: 1 + public const int CollapsingToolbarLayout_collapsedTitleTextAppearance = 1; + + // aapt resource value: 2 + public const int CollapsingToolbarLayout_contentScrim = 2; + + // aapt resource value: 3 + public const int CollapsingToolbarLayout_expandedTitleGravity = 3; + + // aapt resource value: 4 + public const int CollapsingToolbarLayout_expandedTitleMargin = 4; + + // aapt resource value: 5 + public const int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + + // aapt resource value: 6 + public const int CollapsingToolbarLayout_expandedTitleMarginEnd = 6; + + // aapt resource value: 7 + public const int CollapsingToolbarLayout_expandedTitleMarginStart = 7; + + // aapt resource value: 8 + public const int CollapsingToolbarLayout_expandedTitleMarginTop = 8; + + // aapt resource value: 9 + public const int CollapsingToolbarLayout_expandedTitleTextAppearance = 9; + + // aapt resource value: { 0x7F030171,0x7F030172 } + public static int[] CollapsingToolbarLayout_Layout = new int[] { + 2130903409, + 2130903410}; + + // aapt resource value: 0 + public const int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + + // aapt resource value: 1 + public const int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + + // aapt resource value: 10 + public const int CollapsingToolbarLayout_maxLines = 10; + + // aapt resource value: 11 + public const int CollapsingToolbarLayout_scrimAnimationDuration = 11; + + // aapt resource value: 12 + public const int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 12; + + // aapt resource value: 13 + public const int CollapsingToolbarLayout_statusBarScrim = 13; + + // aapt resource value: 14 + public const int CollapsingToolbarLayout_title = 14; + + // aapt resource value: 15 + public const int CollapsingToolbarLayout_titleEnabled = 15; + + // aapt resource value: 16 + public const int CollapsingToolbarLayout_toolbarId = 16; + + // aapt resource value: { 0x10101A5,0x101031F,0x7F030028 } + public static int[] ColorStateListItem = new int[] { + 16843173, + 16843551, + 2130903080}; + + // aapt resource value: 2 + public const int ColorStateListItem_alpha = 2; + + // aapt resource value: 1 + public const int ColorStateListItem_android_alpha = 1; + + // aapt resource value: 0 + public const int ColorStateListItem_android_color = 0; + + // aapt resource value: { 0x1010107,0x7F030064,0x7F03006A,0x7F03006B } + public static int[] CompoundButton = new int[] { + 16843015, + 2130903140, + 2130903146, + 2130903147}; + + // aapt resource value: 0 + public const int CompoundButton_android_button = 0; + + // aapt resource value: 1 + public const int CompoundButton_buttonCompat = 1; + + // aapt resource value: 2 + public const int CompoundButton_buttonTint = 2; + + // aapt resource value: 3 + public const int CompoundButton_buttonTintMode = 3; + + // aapt resource value: { 0x7F030167,0x7F030207 } + public static int[] CoordinatorLayout = new int[] { + 2130903399, + 2130903559}; + + // aapt resource value: 0 + public const int CoordinatorLayout_keylines = 0; + + // aapt resource value: { 0x10100B3,0x7F03016E,0x7F03016F,0x7F030170,0x7F030173,0x7F030174,0x7F030175 } + public static int[] CoordinatorLayout_Layout = new int[] { + 16842931, + 2130903406, + 2130903407, + 2130903408, + 2130903411, + 2130903412, + 2130903413}; + + // aapt resource value: 0 + public const int CoordinatorLayout_Layout_android_layout_gravity = 0; + + // aapt resource value: 1 + public const int CoordinatorLayout_Layout_layout_anchor = 1; + + // aapt resource value: 2 + public const int CoordinatorLayout_Layout_layout_anchorGravity = 2; + + // aapt resource value: 3 + public const int CoordinatorLayout_Layout_layout_behavior = 3; + + // aapt resource value: 4 + public const int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + + // aapt resource value: 5 + public const int CoordinatorLayout_Layout_layout_insetEdge = 5; + + // aapt resource value: 6 + public const int CoordinatorLayout_Layout_layout_keyline = 6; + + // aapt resource value: 1 + public const int CoordinatorLayout_statusBarBackground = 1; + + // aapt resource value: { 0x7F03002C,0x7F03002D,0x7F030042,0x7F03009D,0x7F0300E6,0x7F03012A,0x7F0301F6,0x7F030255 } + public static int[] DrawerArrowToggle = new int[] { + 2130903084, + 2130903085, + 2130903106, + 2130903197, + 2130903270, + 2130903338, + 2130903542, + 2130903637}; + + // aapt resource value: 0 + public const int DrawerArrowToggle_arrowHeadLength = 0; + + // aapt resource value: 1 + public const int DrawerArrowToggle_arrowShaftLength = 1; + + // aapt resource value: 2 + public const int DrawerArrowToggle_barLength = 2; + + // aapt resource value: 3 + public const int DrawerArrowToggle_color = 3; + + // aapt resource value: 4 + public const int DrawerArrowToggle_drawableSize = 4; + + // aapt resource value: 5 + public const int DrawerArrowToggle_gapBetweenBars = 5; + + // aapt resource value: 6 + public const int DrawerArrowToggle_spinBars = 6; + + // aapt resource value: 7 + public const int DrawerArrowToggle_thickness = 7; + + // aapt resource value: { 0x7F0300F2 } + public static int[] DrawerLayout = new int[] { + 2130903282}; + + // aapt resource value: 0 + public const int DrawerLayout_elevation = 0; + + // aapt resource value: { 0x7F0300F2,0x7F03010E,0x7F030135,0x7F0301EA,0x7F0301ED } + public static int[] ExtendedFloatingActionButton = new int[] { + 2130903282, + 2130903310, + 2130903349, + 2130903530, + 2130903533}; + + // aapt resource value: { 0x7F030043,0x7F030044 } + public static int[] ExtendedFloatingActionButton_Behavior_Layout = new int[] { + 2130903107, + 2130903108}; + + // aapt resource value: 0 + public const int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + + // aapt resource value: 1 + public const int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink = 1; + + // aapt resource value: 0 + public const int ExtendedFloatingActionButton_elevation = 0; + + // aapt resource value: 1 + public const int ExtendedFloatingActionButton_extendMotionSpec = 1; + + // aapt resource value: 2 + public const int ExtendedFloatingActionButton_hideMotionSpec = 2; + + // aapt resource value: 3 + public const int ExtendedFloatingActionButton_showMotionSpec = 3; + + // aapt resource value: 4 + public const int ExtendedFloatingActionButton_shrinkMotionSpec = 4; + + // aapt resource value: { 0x101000E,0x7F03003D,0x7F03003E,0x7F03004E,0x7F0300F2,0x7F0300FD,0x7F030115,0x7F030116,0x7F030135,0x7F03013F,0x7F0301A4,0x7F0301CB,0x7F0301D7,0x7F0301E3,0x7F0301E6,0x7F0301EA,0x7F03027F } + public static int[] FloatingActionButton = new int[] { + 16842766, + 2130903101, + 2130903102, + 2130903118, + 2130903282, + 2130903293, + 2130903317, + 2130903318, + 2130903349, + 2130903359, + 2130903460, + 2130903499, + 2130903511, + 2130903523, + 2130903526, + 2130903530, + 2130903679}; + + // aapt resource value: 0 + public const int FloatingActionButton_android_enabled = 0; + + // aapt resource value: 1 + public const int FloatingActionButton_backgroundTint = 1; + + // aapt resource value: 2 + public const int FloatingActionButton_backgroundTintMode = 2; + + // aapt resource value: { 0x7F030043 } + public static int[] FloatingActionButton_Behavior_Layout = new int[] { + 2130903107}; + + // aapt resource value: 0 + public const int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + + // aapt resource value: 3 + public const int FloatingActionButton_borderWidth = 3; + + // aapt resource value: 4 + public const int FloatingActionButton_elevation = 4; + + // aapt resource value: 5 + public const int FloatingActionButton_ensureMinTouchTargetSize = 5; + + // aapt resource value: 6 + public const int FloatingActionButton_fabCustomSize = 6; + + // aapt resource value: 7 + public const int FloatingActionButton_fabSize = 7; + + // aapt resource value: 8 + public const int FloatingActionButton_hideMotionSpec = 8; + + // aapt resource value: 9 + public const int FloatingActionButton_hoveredFocusedTranslationZ = 9; + + // aapt resource value: 10 + public const int FloatingActionButton_maxImageSize = 10; + + // aapt resource value: 11 + public const int FloatingActionButton_pressedTranslationZ = 11; + + // aapt resource value: 12 + public const int FloatingActionButton_rippleColor = 12; + + // aapt resource value: 13 + public const int FloatingActionButton_shapeAppearance = 13; + + // aapt resource value: 14 + public const int FloatingActionButton_shapeAppearanceOverlay = 14; + + // aapt resource value: 15 + public const int FloatingActionButton_showMotionSpec = 15; + + // aapt resource value: 16 + public const int FloatingActionButton_useCompatPadding = 16; + + // aapt resource value: { 0x7F030160,0x7F03017B } + public static int[] FlowLayout = new int[] { + 2130903392, + 2130903419}; + + // aapt resource value: 0 + public const int FlowLayout_itemSpacing = 0; + + // aapt resource value: 1 + public const int FlowLayout_lineSpacing = 1; + + // aapt resource value: { 0x7F030120,0x7F030121,0x7F030122,0x7F030123,0x7F030124,0x7F030125 } + public static int[] FontFamily = new int[] { + 2130903328, + 2130903329, + 2130903330, + 2130903331, + 2130903332, + 2130903333}; + + // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F03011E,0x7F030126,0x7F030127,0x7F030128,0x7F03027E } + public static int[] FontFamilyFont = new int[] { + 16844082, + 16844083, + 16844095, + 16844143, + 16844144, + 2130903326, + 2130903334, + 2130903335, + 2130903336, + 2130903678}; + + // aapt resource value: 0 + public const int FontFamilyFont_android_font = 0; + + // aapt resource value: 2 + public const int FontFamilyFont_android_fontStyle = 2; + + // aapt resource value: 4 + public const int FontFamilyFont_android_fontVariationSettings = 4; + + // aapt resource value: 1 + public const int FontFamilyFont_android_fontWeight = 1; + + // aapt resource value: 3 + public const int FontFamilyFont_android_ttcIndex = 3; + + // aapt resource value: 5 + public const int FontFamilyFont_font = 5; + + // aapt resource value: 6 + public const int FontFamilyFont_fontStyle = 6; + + // aapt resource value: 7 + public const int FontFamilyFont_fontVariationSettings = 7; + + // aapt resource value: 8 + public const int FontFamilyFont_fontWeight = 8; + + // aapt resource value: 9 + public const int FontFamilyFont_ttcIndex = 9; + + // aapt resource value: 0 + public const int FontFamily_fontProviderAuthority = 0; + + // aapt resource value: 1 + public const int FontFamily_fontProviderCerts = 1; + + // aapt resource value: 2 + public const int FontFamily_fontProviderFetchStrategy = 2; + + // aapt resource value: 3 + public const int FontFamily_fontProviderFetchTimeout = 3; + + // aapt resource value: 4 + public const int FontFamily_fontProviderPackage = 4; + + // aapt resource value: 5 + public const int FontFamily_fontProviderQuery = 5; + + // aapt resource value: { 0x1010109,0x1010200,0x7F030129 } + public static int[] ForegroundLinearLayout = new int[] { + 16843017, + 16843264, + 2130903337}; + + // aapt resource value: 0 + public const int ForegroundLinearLayout_android_foreground = 0; + + // aapt resource value: 1 + public const int ForegroundLinearLayout_android_foregroundGravity = 1; + + // aapt resource value: 2 + public const int ForegroundLinearLayout_foregroundInsidePadding = 2; + + // aapt resource value: { 0x1010003,0x10100D0,0x10100D1 } + public static int[] Fragment = new int[] { + 16842755, + 16842960, + 16842961}; + + // aapt resource value: { 0x1010003,0x10100D1 } + public static int[] FragmentContainerView = new int[] { + 16842755, + 16842961}; + + // aapt resource value: 0 + public const int FragmentContainerView_android_name = 0; + + // aapt resource value: 1 + public const int FragmentContainerView_android_tag = 1; + + // aapt resource value: 1 + public const int Fragment_android_id = 1; + + // aapt resource value: 0 + public const int Fragment_android_name = 0; + + // aapt resource value: 2 + public const int Fragment_android_tag = 2; + + // aapt resource value: { 0x101019D,0x101019E,0x10101A1,0x10101A2,0x10101A3,0x10101A4,0x1010201,0x101020B,0x1010510,0x1010511,0x1010512,0x1010513 } + public static int[] GradientColor = new int[] { + 16843165, + 16843166, + 16843169, + 16843170, + 16843171, + 16843172, + 16843265, + 16843275, + 16844048, + 16844049, + 16844050, + 16844051}; + + // aapt resource value: { 0x10101A5,0x1010514 } + public static int[] GradientColorItem = new int[] { + 16843173, + 16844052}; + + // aapt resource value: 0 + public const int GradientColorItem_android_color = 0; + + // aapt resource value: 1 + public const int GradientColorItem_android_offset = 1; + + // aapt resource value: 7 + public const int GradientColor_android_centerColor = 7; + + // aapt resource value: 3 + public const int GradientColor_android_centerX = 3; + + // aapt resource value: 4 + public const int GradientColor_android_centerY = 4; + + // aapt resource value: 1 + public const int GradientColor_android_endColor = 1; + + // aapt resource value: 10 + public const int GradientColor_android_endX = 10; + + // aapt resource value: 11 + public const int GradientColor_android_endY = 11; + + // aapt resource value: 5 + public const int GradientColor_android_gradientRadius = 5; + + // aapt resource value: 0 + public const int GradientColor_android_startColor = 0; + + // aapt resource value: 8 + public const int GradientColor_android_startX = 8; + + // aapt resource value: 9 + public const int GradientColor_android_startY = 9; + + // aapt resource value: 6 + public const int GradientColor_android_tileMode = 6; + + // aapt resource value: 2 + public const int GradientColor_android_type = 2; + + // aapt resource value: { 0x7F0301B2,0x7F0301B4,0x7F0301B5 } + public static int[] Insets = new int[] { + 2130903474, + 2130903476, + 2130903477}; + + // aapt resource value: 0 + public const int Insets_paddingBottomSystemWindowInsets = 0; + + // aapt resource value: 1 + public const int Insets_paddingLeftSystemWindowInsets = 1; + + // aapt resource value: 2 + public const int Insets_paddingRightSystemWindowInsets = 2; + + // aapt resource value: { 0x7F03009C } + public static int[] ItemsViewRendererTheme = new int[] { + 2130903196}; + + // aapt resource value: 0 + public const int ItemsViewRendererTheme_collectionViewStyle = 0; + + // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F0300DE,0x7F0300E0,0x7F0301A6,0x7F0301E9 } + public static int[] LinearLayoutCompat = new int[] { + 16842927, + 16842948, + 16843046, + 16843047, + 16843048, + 2130903262, + 2130903264, + 2130903462, + 2130903529}; + + // aapt resource value: 2 + public const int LinearLayoutCompat_android_baselineAligned = 2; + + // aapt resource value: 3 + public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + + // aapt resource value: 0 + public const int LinearLayoutCompat_android_gravity = 0; + + // aapt resource value: 1 + public const int LinearLayoutCompat_android_orientation = 1; + + // aapt resource value: 4 + public const int LinearLayoutCompat_android_weightSum = 4; + + // aapt resource value: 5 + public const int LinearLayoutCompat_divider = 5; + + // aapt resource value: 6 + public const int LinearLayoutCompat_dividerPadding = 6; + + // aapt resource value: { 0x10100B3,0x10100F4,0x10100F5,0x1010181 } + public static int[] LinearLayoutCompat_Layout = new int[] { + 16842931, + 16842996, + 16842997, + 16843137}; + + // aapt resource value: 0 + public const int LinearLayoutCompat_Layout_android_layout_gravity = 0; + + // aapt resource value: 2 + public const int LinearLayoutCompat_Layout_android_layout_height = 2; + + // aapt resource value: 3 + public const int LinearLayoutCompat_Layout_android_layout_weight = 3; + + // aapt resource value: 1 + public const int LinearLayoutCompat_Layout_android_layout_width = 1; + + // aapt resource value: 7 + public const int LinearLayoutCompat_measureWithLargestChild = 7; + + // aapt resource value: 8 + public const int LinearLayoutCompat_showDividers = 8; + + // aapt resource value: { 0x10102AC,0x10102AD } + public static int[] ListPopupWindow = new int[] { + 16843436, + 16843437}; + + // aapt resource value: 0 + public const int ListPopupWindow_android_dropDownHorizontalOffset = 0; + + // aapt resource value: 1 + public const int ListPopupWindow_android_dropDownVerticalOffset = 1; + + // aapt resource value: { 0x7F030036,0x7F030037,0x7F030038,0x7F030039 } + public static int[] MaterialAlertDialog = new int[] { + 2130903094, + 2130903095, + 2130903096, + 2130903097}; + + // aapt resource value: { 0x7F03018D,0x7F03018E,0x7F03018F,0x7F030190,0x7F030191 } + public static int[] MaterialAlertDialogTheme = new int[] { + 2130903437, + 2130903438, + 2130903439, + 2130903440, + 2130903441}; + + // aapt resource value: 0 + public const int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle = 0; + + // aapt resource value: 1 + public const int MaterialAlertDialogTheme_materialAlertDialogTheme = 1; + + // aapt resource value: 2 + public const int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle = 2; + + // aapt resource value: 3 + public const int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle = 3; + + // aapt resource value: 4 + public const int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle = 4; + + // aapt resource value: 0 + public const int MaterialAlertDialog_backgroundInsetBottom = 0; + + // aapt resource value: 1 + public const int MaterialAlertDialog_backgroundInsetEnd = 1; + + // aapt resource value: 2 + public const int MaterialAlertDialog_backgroundInsetStart = 2; + + // aapt resource value: 3 + public const int MaterialAlertDialog_backgroundInsetTop = 3; + + // aapt resource value: { 0x1010220 } + public static int[] MaterialAutoCompleteTextView = new int[] { + 16843296}; + + // aapt resource value: 0 + public const int MaterialAutoCompleteTextView_android_inputType = 0; + + // aapt resource value: { 0x10100D4,0x10101B7,0x10101B8,0x10101B9,0x10101BA,0x10101E5,0x7F03003D,0x7F03003E,0x7F0300C8,0x7F0300F2,0x7F030140,0x7F030142,0x7F030143,0x7F030144,0x7F030146,0x7F030147,0x7F0301D7,0x7F0301E3,0x7F0301E6,0x7F03020A,0x7F03020B } + public static int[] MaterialButton = new int[] { + 16842964, + 16843191, + 16843192, + 16843193, + 16843194, + 16843237, + 2130903101, + 2130903102, + 2130903240, + 2130903282, + 2130903360, + 2130903362, + 2130903363, + 2130903364, + 2130903366, + 2130903367, + 2130903511, + 2130903523, + 2130903526, + 2130903562, + 2130903563}; + + // aapt resource value: { 0x7F030075,0x7F0301E2,0x7F0301F0 } + public static int[] MaterialButtonToggleGroup = new int[] { + 2130903157, + 2130903522, + 2130903536}; + + // aapt resource value: 0 + public const int MaterialButtonToggleGroup_checkedButton = 0; + + // aapt resource value: 1 + public const int MaterialButtonToggleGroup_selectionRequired = 1; + + // aapt resource value: 2 + public const int MaterialButtonToggleGroup_singleSelection = 2; + + // aapt resource value: 0 + public const int MaterialButton_android_background = 0; + + // aapt resource value: 5 + public const int MaterialButton_android_checkable = 5; + + // aapt resource value: 4 + public const int MaterialButton_android_insetBottom = 4; + + // aapt resource value: 1 + public const int MaterialButton_android_insetLeft = 1; + + // aapt resource value: 2 + public const int MaterialButton_android_insetRight = 2; + + // aapt resource value: 3 + public const int MaterialButton_android_insetTop = 3; + + // aapt resource value: 6 + public const int MaterialButton_backgroundTint = 6; + + // aapt resource value: 7 + public const int MaterialButton_backgroundTintMode = 7; + + // aapt resource value: 8 + public const int MaterialButton_cornerRadius = 8; + + // aapt resource value: 9 + public const int MaterialButton_elevation = 9; + + // aapt resource value: 10 + public const int MaterialButton_icon = 10; + + // aapt resource value: 11 + public const int MaterialButton_iconGravity = 11; + + // aapt resource value: 12 + public const int MaterialButton_iconPadding = 12; + + // aapt resource value: 13 + public const int MaterialButton_iconSize = 13; + + // aapt resource value: 14 + public const int MaterialButton_iconTint = 14; + + // aapt resource value: 15 + public const int MaterialButton_iconTintMode = 15; + + // aapt resource value: 16 + public const int MaterialButton_rippleColor = 16; + + // aapt resource value: 17 + public const int MaterialButton_shapeAppearance = 17; + + // aapt resource value: 18 + public const int MaterialButton_shapeAppearanceOverlay = 18; + + // aapt resource value: 19 + public const int MaterialButton_strokeColor = 19; + + // aapt resource value: 20 + public const int MaterialButton_strokeWidth = 20; + + // aapt resource value: { 0x101020D,0x7F0300D5,0x7F0300D6,0x7F0300D7,0x7F0300D8,0x7F0301D1,0x7F03028F,0x7F030290,0x7F030291 } + public static int[] MaterialCalendar = new int[] { + 16843277, + 2130903253, + 2130903254, + 2130903255, + 2130903256, + 2130903505, + 2130903695, + 2130903696, + 2130903697}; + + // aapt resource value: { 0x10101B7,0x10101B8,0x10101B9,0x10101BA,0x7F030150,0x7F030159,0x7F03015A,0x7F030161,0x7F030162,0x7F030166 } + public static int[] MaterialCalendarItem = new int[] { + 16843191, + 16843192, + 16843193, + 16843194, + 2130903376, + 2130903385, + 2130903386, + 2130903393, + 2130903394, + 2130903398}; + + // aapt resource value: 3 + public const int MaterialCalendarItem_android_insetBottom = 3; + + // aapt resource value: 0 + public const int MaterialCalendarItem_android_insetLeft = 0; + + // aapt resource value: 1 + public const int MaterialCalendarItem_android_insetRight = 1; + + // aapt resource value: 2 + public const int MaterialCalendarItem_android_insetTop = 2; + + // aapt resource value: 4 + public const int MaterialCalendarItem_itemFillColor = 4; + + // aapt resource value: 5 + public const int MaterialCalendarItem_itemShapeAppearance = 5; + + // aapt resource value: 6 + public const int MaterialCalendarItem_itemShapeAppearanceOverlay = 6; + + // aapt resource value: 7 + public const int MaterialCalendarItem_itemStrokeColor = 7; + + // aapt resource value: 8 + public const int MaterialCalendarItem_itemStrokeWidth = 8; + + // aapt resource value: 9 + public const int MaterialCalendarItem_itemTextColor = 9; + + // aapt resource value: 0 + public const int MaterialCalendar_android_windowFullscreen = 0; + + // aapt resource value: 1 + public const int MaterialCalendar_dayInvalidStyle = 1; + + // aapt resource value: 2 + public const int MaterialCalendar_daySelectedStyle = 2; + + // aapt resource value: 3 + public const int MaterialCalendar_dayStyle = 3; + + // aapt resource value: 4 + public const int MaterialCalendar_dayTodayStyle = 4; + + // aapt resource value: 5 + public const int MaterialCalendar_rangeFillColor = 5; + + // aapt resource value: 6 + public const int MaterialCalendar_yearSelectedStyle = 6; + + // aapt resource value: 7 + public const int MaterialCalendar_yearStyle = 7; + + // aapt resource value: 8 + public const int MaterialCalendar_yearTodayStyle = 8; + + // aapt resource value: { 0x10101E5,0x7F03006F,0x7F030077,0x7F030079,0x7F0301D7,0x7F0301E3,0x7F0301E6,0x7F030204,0x7F03020A,0x7F03020B } + public static int[] MaterialCardView = new int[] { + 16843237, + 2130903151, + 2130903159, + 2130903161, + 2130903511, + 2130903523, + 2130903526, + 2130903556, + 2130903562, + 2130903563}; + + // aapt resource value: 0 + public const int MaterialCardView_android_checkable = 0; + + // aapt resource value: 1 + public const int MaterialCardView_cardForegroundColor = 1; + + // aapt resource value: 2 + public const int MaterialCardView_checkedIcon = 2; + + // aapt resource value: 3 + public const int MaterialCardView_checkedIconTint = 3; + + // aapt resource value: 4 + public const int MaterialCardView_rippleColor = 4; + + // aapt resource value: 5 + public const int MaterialCardView_shapeAppearance = 5; + + // aapt resource value: 6 + public const int MaterialCardView_shapeAppearanceOverlay = 6; + + // aapt resource value: 7 + public const int MaterialCardView_state_dragged = 7; + + // aapt resource value: 8 + public const int MaterialCardView_strokeColor = 8; + + // aapt resource value: 9 + public const int MaterialCardView_strokeWidth = 9; + + // aapt resource value: { 0x7F03006A,0x7F030280 } + public static int[] MaterialCheckBox = new int[] { + 2130903146, + 2130903680}; + + // aapt resource value: 0 + public const int MaterialCheckBox_buttonTint = 0; + + // aapt resource value: 1 + public const int MaterialCheckBox_useMaterialThemeColors = 1; + + // aapt resource value: { 0x7F03006A,0x7F030280 } + public static int[] MaterialRadioButton = new int[] { + 2130903146, + 2130903680}; + + // aapt resource value: 0 + public const int MaterialRadioButton_buttonTint = 0; + + // aapt resource value: 1 + public const int MaterialRadioButton_useMaterialThemeColors = 1; + + // aapt resource value: { 0x7F0301E3,0x7F0301E6 } + public static int[] MaterialShape = new int[] { + 2130903523, + 2130903526}; + + // aapt resource value: 0 + public const int MaterialShape_shapeAppearance = 0; + + // aapt resource value: 1 + public const int MaterialShape_shapeAppearanceOverlay = 1; + + // aapt resource value: { 0x101057F,0x7F03017A } + public static int[] MaterialTextAppearance = new int[] { + 16844159, + 2130903418}; + + // aapt resource value: 0 + public const int MaterialTextAppearance_android_lineHeight = 0; + + // aapt resource value: 1 + public const int MaterialTextAppearance_lineHeight = 1; + + // aapt resource value: { 0x1010034,0x101057F,0x7F03017A } + public static int[] MaterialTextView = new int[] { + 16842804, + 16844159, + 2130903418}; + + // aapt resource value: 1 + public const int MaterialTextView_android_lineHeight = 1; + + // aapt resource value: 0 + public const int MaterialTextView_android_textAppearance = 0; + + // aapt resource value: 2 + public const int MaterialTextView_lineHeight = 2; + + // aapt resource value: { 0x101000E,0x10100D0,0x1010194,0x10101DE,0x10101DF,0x10101E0 } + public static int[] MenuGroup = new int[] { + 16842766, + 16842960, + 16843156, + 16843230, + 16843231, + 16843232}; + + // aapt resource value: 5 + public const int MenuGroup_android_checkableBehavior = 5; + + // aapt resource value: 0 + public const int MenuGroup_android_enabled = 0; + + // aapt resource value: 1 + public const int MenuGroup_android_id = 1; + + // aapt resource value: 3 + public const int MenuGroup_android_menuCategory = 3; + + // aapt resource value: 4 + public const int MenuGroup_android_orderInCategory = 4; + + // aapt resource value: 2 + public const int MenuGroup_android_visible = 2; + + // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F03000D,0x7F03001F,0x7F030021,0x7F030029,0x7F0300B4,0x7F030146,0x7F030147,0x7F0301AF,0x7F0301E8,0x7F030275 } + public static int[] MenuItem = new int[] { + 16842754, + 16842766, + 16842960, + 16843014, + 16843156, + 16843230, + 16843231, + 16843233, + 16843234, + 16843235, + 16843236, + 16843237, + 16843375, + 2130903053, + 2130903071, + 2130903073, + 2130903081, + 2130903220, + 2130903366, + 2130903367, + 2130903471, + 2130903528, + 2130903669}; + + // aapt resource value: 13 + public const int MenuItem_actionLayout = 13; + + // aapt resource value: 14 + public const int MenuItem_actionProviderClass = 14; + + // aapt resource value: 15 + public const int MenuItem_actionViewClass = 15; + + // aapt resource value: 16 + public const int MenuItem_alphabeticModifiers = 16; + + // aapt resource value: 9 + public const int MenuItem_android_alphabeticShortcut = 9; + + // aapt resource value: 11 + public const int MenuItem_android_checkable = 11; + + // aapt resource value: 3 + public const int MenuItem_android_checked = 3; + + // aapt resource value: 1 + public const int MenuItem_android_enabled = 1; + + // aapt resource value: 0 + public const int MenuItem_android_icon = 0; + + // aapt resource value: 2 + public const int MenuItem_android_id = 2; + + // aapt resource value: 5 + public const int MenuItem_android_menuCategory = 5; + + // aapt resource value: 10 + public const int MenuItem_android_numericShortcut = 10; + + // aapt resource value: 12 + public const int MenuItem_android_onClick = 12; + + // aapt resource value: 6 + public const int MenuItem_android_orderInCategory = 6; + + // aapt resource value: 7 + public const int MenuItem_android_title = 7; + + // aapt resource value: 8 + public const int MenuItem_android_titleCondensed = 8; + + // aapt resource value: 4 + public const int MenuItem_android_visible = 4; + + // aapt resource value: 17 + public const int MenuItem_contentDescription = 17; + + // aapt resource value: 18 + public const int MenuItem_iconTint = 18; + + // aapt resource value: 19 + public const int MenuItem_iconTintMode = 19; + + // aapt resource value: 20 + public const int MenuItem_numericModifiers = 20; + + // aapt resource value: 21 + public const int MenuItem_showAsAction = 21; + + // aapt resource value: 22 + public const int MenuItem_tooltipText = 22; + + // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F0301CA,0x7F03020C } + public static int[] MenuView = new int[] { + 16842926, + 16843052, + 16843053, + 16843054, + 16843055, + 16843056, + 16843057, + 2130903498, + 2130903564}; + + // aapt resource value: 4 + public const int MenuView_android_headerBackground = 4; + + // aapt resource value: 2 + public const int MenuView_android_horizontalDivider = 2; + + // aapt resource value: 5 + public const int MenuView_android_itemBackground = 5; + + // aapt resource value: 6 + public const int MenuView_android_itemIconDisabledAlpha = 6; + + // aapt resource value: 1 + public const int MenuView_android_itemTextAppearance = 1; + + // aapt resource value: 3 + public const int MenuView_android_verticalDivider = 3; + + // aapt resource value: 0 + public const int MenuView_android_windowAnimationStyle = 0; + + // aapt resource value: 7 + public const int MenuView_preserveIconSpacing = 7; + + // aapt resource value: 8 + public const int MenuView_subMenuArrow = 8; + + // aapt resource value: { 0x10100D4,0x10100DD,0x101011F,0x7F0300F2,0x7F03012F,0x7F03014F,0x7F030151,0x7F030153,0x7F030154,0x7F030155,0x7F030156,0x7F030159,0x7F03015A,0x7F03015B,0x7F03015C,0x7F03015D,0x7F03015E,0x7F03015F,0x7F030163,0x7F030166,0x7F0301A7 } + public static int[] NavigationView = new int[] { + 16842964, + 16842973, + 16843039, + 2130903282, + 2130903343, + 2130903375, + 2130903377, + 2130903379, + 2130903380, + 2130903381, + 2130903382, + 2130903385, + 2130903386, + 2130903387, + 2130903388, + 2130903389, + 2130903390, + 2130903391, + 2130903395, + 2130903398, + 2130903463}; + + // aapt resource value: 0 + public const int NavigationView_android_background = 0; + + // aapt resource value: 1 + public const int NavigationView_android_fitsSystemWindows = 1; + + // aapt resource value: 2 + public const int NavigationView_android_maxWidth = 2; + + // aapt resource value: 3 + public const int NavigationView_elevation = 3; + + // aapt resource value: 4 + public const int NavigationView_headerLayout = 4; + + // aapt resource value: 5 + public const int NavigationView_itemBackground = 5; + + // aapt resource value: 6 + public const int NavigationView_itemHorizontalPadding = 6; + + // aapt resource value: 7 + public const int NavigationView_itemIconPadding = 7; + + // aapt resource value: 8 + public const int NavigationView_itemIconSize = 8; + + // aapt resource value: 9 + public const int NavigationView_itemIconTint = 9; + + // aapt resource value: 10 + public const int NavigationView_itemMaxLines = 10; + + // aapt resource value: 11 + public const int NavigationView_itemShapeAppearance = 11; + + // aapt resource value: 12 + public const int NavigationView_itemShapeAppearanceOverlay = 12; + + // aapt resource value: 13 + public const int NavigationView_itemShapeFillColor = 13; + + // aapt resource value: 14 + public const int NavigationView_itemShapeInsetBottom = 14; + + // aapt resource value: 15 + public const int NavigationView_itemShapeInsetEnd = 15; + + // aapt resource value: 16 + public const int NavigationView_itemShapeInsetStart = 16; + + // aapt resource value: 17 + public const int NavigationView_itemShapeInsetTop = 17; + + // aapt resource value: 18 + public const int NavigationView_itemTextAppearance = 18; + + // aapt resource value: 19 + public const int NavigationView_itemTextColor = 19; + + // aapt resource value: 20 + public const int NavigationView_menu = 20; + + // aapt resource value: { 0x1010176,0x10102C9,0x7F0301B0 } + public static int[] PopupWindow = new int[] { + 16843126, + 16843465, + 2130903472}; + + // aapt resource value: { 0x7F030201 } + public static int[] PopupWindowBackgroundState = new int[] { + 2130903553}; + + // aapt resource value: 0 + public const int PopupWindowBackgroundState_state_above_anchor = 0; + + // aapt resource value: 1 + public const int PopupWindow_android_popupAnimationStyle = 1; + + // aapt resource value: 0 + public const int PopupWindow_android_popupBackground = 0; + + // aapt resource value: 2 + public const int PopupWindow_overlapAnchor = 2; + + // aapt resource value: { 0x7F030281 } + public static int[] RangeSlider = new int[] { + 2130903681}; + + // aapt resource value: 0 + public const int RangeSlider_values = 0; + + // aapt resource value: { 0x7F0301B1,0x7F0301B7 } + public static int[] RecycleListView = new int[] { + 2130903473, + 2130903479}; + + // aapt resource value: 0 + public const int RecycleListView_paddingBottomNoButtons = 0; + + // aapt resource value: 1 + public const int RecycleListView_paddingTopNoTitle = 1; + + // aapt resource value: { 0x10100C4,0x10100EB,0x10100F1,0x7F030117,0x7F030118,0x7F030119,0x7F03011A,0x7F03011B,0x7F03016D,0x7F0301D6,0x7F0301F5,0x7F0301FB } + public static int[] RecyclerView = new int[] { + 16842948, + 16842987, + 16842993, + 2130903319, + 2130903320, + 2130903321, + 2130903322, + 2130903323, + 2130903405, + 2130903510, + 2130903541, + 2130903547}; + + // aapt resource value: 1 + public const int RecyclerView_android_clipToPadding = 1; + + // aapt resource value: 2 + public const int RecyclerView_android_descendantFocusability = 2; + + // aapt resource value: 0 + public const int RecyclerView_android_orientation = 0; + + // aapt resource value: 3 + public const int RecyclerView_fastScrollEnabled = 3; + + // aapt resource value: 4 + public const int RecyclerView_fastScrollHorizontalThumbDrawable = 4; + + // aapt resource value: 5 + public const int RecyclerView_fastScrollHorizontalTrackDrawable = 5; + + // aapt resource value: 6 + public const int RecyclerView_fastScrollVerticalThumbDrawable = 6; + + // aapt resource value: 7 + public const int RecyclerView_fastScrollVerticalTrackDrawable = 7; + + // aapt resource value: 8 + public const int RecyclerView_layoutManager = 8; + + // aapt resource value: 9 + public const int RecyclerView_reverseLayout = 9; + + // aapt resource value: 10 + public const int RecyclerView_spanCount = 10; + + // aapt resource value: 11 + public const int RecyclerView_stackFromEnd = 11; + + // aapt resource value: { 0x7F03014C } + public static int[] ScrimInsetsFrameLayout = new int[] { + 2130903372}; + + // aapt resource value: 0 + public const int ScrimInsetsFrameLayout_insetForeground = 0; + + // aapt resource value: { 0x7F03004A } + public static int[] ScrollingViewBehavior_Layout = new int[] { + 2130903114}; + + // aapt resource value: 0 + public const int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + + // aapt resource value: { 0x7F0301DB } + public static int[] ScrollViewRendererTheme = new int[] { + 2130903515}; + + // aapt resource value: 0 + public const int ScrollViewRendererTheme_scrollViewStyle = 0; + + // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F030090,0x7F0300B3,0x7F0300D9,0x7F03012C,0x7F030148,0x7F03016C,0x7F0301CE,0x7F0301CF,0x7F0301DC,0x7F0301DD,0x7F03020D,0x7F030215,0x7F030284 } + public static int[] SearchView = new int[] { + 16842970, + 16843039, + 16843296, + 16843364, + 2130903184, + 2130903219, + 2130903257, + 2130903340, + 2130903368, + 2130903404, + 2130903502, + 2130903503, + 2130903516, + 2130903517, + 2130903565, + 2130903573, + 2130903684}; + + // aapt resource value: 0 + public const int SearchView_android_focusable = 0; + + // aapt resource value: 3 + public const int SearchView_android_imeOptions = 3; + + // aapt resource value: 2 + public const int SearchView_android_inputType = 2; + + // aapt resource value: 1 + public const int SearchView_android_maxWidth = 1; + + // aapt resource value: 4 + public const int SearchView_closeIcon = 4; + + // aapt resource value: 5 + public const int SearchView_commitIcon = 5; + + // aapt resource value: 6 + public const int SearchView_defaultQueryHint = 6; + + // aapt resource value: 7 + public const int SearchView_goIcon = 7; + + // aapt resource value: 8 + public const int SearchView_iconifiedByDefault = 8; + + // aapt resource value: 9 + public const int SearchView_layout = 9; + + // aapt resource value: 10 + public const int SearchView_queryBackground = 10; + + // aapt resource value: 11 + public const int SearchView_queryHint = 11; + + // aapt resource value: 12 + public const int SearchView_searchHintIcon = 12; + + // aapt resource value: 13 + public const int SearchView_searchIcon = 13; + + // aapt resource value: 14 + public const int SearchView_submitBackground = 14; + + // aapt resource value: 15 + public const int SearchView_suggestionRowLayout = 15; + + // aapt resource value: 16 + public const int SearchView_voiceIcon = 16; + + // aapt resource value: { 0x7F0301E3,0x7F0301E6,0x7F03020A,0x7F03020B } + public static int[] ShapeableImageView = new int[] { + 2130903523, + 2130903526, + 2130903562, + 2130903563}; + + // aapt resource value: 0 + public const int ShapeableImageView_shapeAppearance = 0; + + // aapt resource value: 1 + public const int ShapeableImageView_shapeAppearanceOverlay = 1; + + // aapt resource value: 2 + public const int ShapeableImageView_strokeColor = 2; + + // aapt resource value: 3 + public const int ShapeableImageView_strokeWidth = 3; + + // aapt resource value: { 0x7F0300C3,0x7F0300C4,0x7F0300C5,0x7F0300C6,0x7F0300C7,0x7F0300C9,0x7F0300CA,0x7F0300CB,0x7F0300CC,0x7F0300CD } + public static int[] ShapeAppearance = new int[] { + 2130903235, + 2130903236, + 2130903237, + 2130903238, + 2130903239, + 2130903241, + 2130903242, + 2130903243, + 2130903244, + 2130903245}; + + // aapt resource value: 0 + public const int ShapeAppearance_cornerFamily = 0; + + // aapt resource value: 1 + public const int ShapeAppearance_cornerFamilyBottomLeft = 1; + + // aapt resource value: 2 + public const int ShapeAppearance_cornerFamilyBottomRight = 2; + + // aapt resource value: 3 + public const int ShapeAppearance_cornerFamilyTopLeft = 3; + + // aapt resource value: 4 + public const int ShapeAppearance_cornerFamilyTopRight = 4; + + // aapt resource value: 5 + public const int ShapeAppearance_cornerSize = 5; + + // aapt resource value: 6 + public const int ShapeAppearance_cornerSizeBottomLeft = 6; + + // aapt resource value: 7 + public const int ShapeAppearance_cornerSizeBottomRight = 7; + + // aapt resource value: 8 + public const int ShapeAppearance_cornerSizeTopLeft = 8; + + // aapt resource value: 9 + public const int ShapeAppearance_cornerSizeTopRight = 9; + + // aapt resource value: { 0x101000E,0x1010024,0x1010146,0x10102DE,0x10102DF,0x7F03012D,0x7F03012E,0x7F030168,0x7F030169,0x7F030256,0x7F030257,0x7F030258,0x7F03025C,0x7F03025D,0x7F03025E,0x7F030277,0x7F030278,0x7F030279,0x7F03027A } + public static int[] Slider = new int[] { + 16842766, + 16842788, + 16843078, + 16843486, + 16843487, + 2130903341, + 2130903342, + 2130903400, + 2130903401, + 2130903638, + 2130903639, + 2130903640, + 2130903644, + 2130903645, + 2130903646, + 2130903671, + 2130903672, + 2130903673, + 2130903674}; + + // aapt resource value: 0 + public const int Slider_android_enabled = 0; + + // aapt resource value: 2 + public const int Slider_android_stepSize = 2; + + // aapt resource value: 1 + public const int Slider_android_value = 1; + + // aapt resource value: 3 + public const int Slider_android_valueFrom = 3; + + // aapt resource value: 4 + public const int Slider_android_valueTo = 4; + + // aapt resource value: 5 + public const int Slider_haloColor = 5; + + // aapt resource value: 6 + public const int Slider_haloRadius = 6; + + // aapt resource value: 7 + public const int Slider_labelBehavior = 7; + + // aapt resource value: 8 + public const int Slider_labelStyle = 8; + + // aapt resource value: 9 + public const int Slider_thumbColor = 9; + + // aapt resource value: 10 + public const int Slider_thumbElevation = 10; + + // aapt resource value: 11 + public const int Slider_thumbRadius = 11; + + // aapt resource value: 12 + public const int Slider_tickColor = 12; + + // aapt resource value: 13 + public const int Slider_tickColorActive = 13; + + // aapt resource value: 14 + public const int Slider_tickColorInactive = 14; + + // aapt resource value: 15 + public const int Slider_trackColor = 15; + + // aapt resource value: 16 + public const int Slider_trackColorActive = 16; + + // aapt resource value: 17 + public const int Slider_trackColorInactive = 17; + + // aapt resource value: 18 + public const int Slider_trackHeight = 18; + + // aapt resource value: { 0x7F0301F2,0x7F0301F3,0x7F0301F4 } + public static int[] Snackbar = new int[] { + 2130903538, + 2130903539, + 2130903540}; + + // aapt resource value: { 0x101011F,0x7F030020,0x7F03002A,0x7F03003A,0x7F03003D,0x7F03003E,0x7F0300F2,0x7F0301A1 } + public static int[] SnackbarLayout = new int[] { + 16843039, + 2130903072, + 2130903082, + 2130903098, + 2130903101, + 2130903102, + 2130903282, + 2130903457}; + + // aapt resource value: 1 + public const int SnackbarLayout_actionTextColorAlpha = 1; + + // aapt resource value: 0 + public const int SnackbarLayout_android_maxWidth = 0; + + // aapt resource value: 2 + public const int SnackbarLayout_animationMode = 2; + + // aapt resource value: 3 + public const int SnackbarLayout_backgroundOverlayColorAlpha = 3; + + // aapt resource value: 4 + public const int SnackbarLayout_backgroundTint = 4; + + // aapt resource value: 5 + public const int SnackbarLayout_backgroundTintMode = 5; + + // aapt resource value: 6 + public const int SnackbarLayout_elevation = 6; + + // aapt resource value: 7 + public const int SnackbarLayout_maxActionInlineWidth = 7; + + // aapt resource value: 0 + public const int Snackbar_snackbarButtonStyle = 0; + + // aapt resource value: 1 + public const int Snackbar_snackbarStyle = 1; + + // aapt resource value: 2 + public const int Snackbar_snackbarTextViewStyle = 2; + + // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F0301C5 } + public static int[] Spinner = new int[] { + 16842930, + 16843126, + 16843131, + 16843362, + 2130903493}; + + // aapt resource value: 3 + public const int Spinner_android_dropDownWidth = 3; + + // aapt resource value: 0 + public const int Spinner_android_entries = 0; + + // aapt resource value: 1 + public const int Spinner_android_popupBackground = 1; + + // aapt resource value: 2 + public const int Spinner_android_prompt = 2; + + // aapt resource value: 4 + public const int Spinner_popupTheme = 4; + + // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D } + public static int[] StateListDrawable = new int[] { + 16843036, + 16843156, + 16843157, + 16843158, + 16843532, + 16843533}; + + // aapt resource value: { 0x1010199 } + public static int[] StateListDrawableItem = new int[] { + 16843161}; + + // aapt resource value: 0 + public const int StateListDrawableItem_android_drawable = 0; + + // aapt resource value: 3 + public const int StateListDrawable_android_constantSize = 3; + + // aapt resource value: 0 + public const int StateListDrawable_android_dither = 0; + + // aapt resource value: 4 + public const int StateListDrawable_android_enterFadeDuration = 4; + + // aapt resource value: 5 + public const int StateListDrawable_android_exitFadeDuration = 5; + + // aapt resource value: 2 + public const int StateListDrawable_android_variablePadding = 2; + + // aapt resource value: 1 + public const int StateListDrawable_android_visible = 1; + + // aapt resource value: { 0x7F030216 } + public static int[] SwipeRefreshLayout = new int[] { + 2130903574}; + + // aapt resource value: 0 + public const int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor = 0; + + // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0301EB,0x7F0301F9,0x7F030217,0x7F030218,0x7F03021A,0x7F030259,0x7F03025A,0x7F03025B,0x7F030276,0x7F03027B,0x7F03027C } + public static int[] SwitchCompat = new int[] { + 16843044, + 16843045, + 16843074, + 2130903531, + 2130903545, + 2130903575, + 2130903576, + 2130903578, + 2130903641, + 2130903642, + 2130903643, + 2130903670, + 2130903675, + 2130903676}; + + // aapt resource value: 1 + public const int SwitchCompat_android_textOff = 1; + + // aapt resource value: 0 + public const int SwitchCompat_android_textOn = 0; + + // aapt resource value: 2 + public const int SwitchCompat_android_thumb = 2; + + // aapt resource value: 3 + public const int SwitchCompat_showText = 3; + + // aapt resource value: 4 + public const int SwitchCompat_splitTrack = 4; + + // aapt resource value: 5 + public const int SwitchCompat_switchMinWidth = 5; + + // aapt resource value: 6 + public const int SwitchCompat_switchPadding = 6; + + // aapt resource value: 7 + public const int SwitchCompat_switchTextAppearance = 7; + + // aapt resource value: 8 + public const int SwitchCompat_thumbTextPadding = 8; + + // aapt resource value: 9 + public const int SwitchCompat_thumbTint = 9; + + // aapt resource value: 10 + public const int SwitchCompat_thumbTintMode = 10; + + // aapt resource value: 11 + public const int SwitchCompat_track = 11; + + // aapt resource value: 12 + public const int SwitchCompat_trackTint = 12; + + // aapt resource value: 13 + public const int SwitchCompat_trackTintMode = 13; + + // aapt resource value: { 0x7F030280 } + public static int[] SwitchMaterial = new int[] { + 2130903680}; + + // aapt resource value: 0 + public const int SwitchMaterial_useMaterialThemeColors = 0; + + // aapt resource value: { 0x1010002,0x10100F2,0x101014F } + public static int[] TabItem = new int[] { + 16842754, + 16842994, + 16843087}; + + // aapt resource value: 0 + public const int TabItem_android_icon = 0; + + // aapt resource value: 1 + public const int TabItem_android_layout = 1; + + // aapt resource value: 2 + public const int TabItem_android_text = 2; + + // aapt resource value: { 0x7F03021B,0x7F03021C,0x7F03021D,0x7F03021E,0x7F03021F,0x7F030220,0x7F030221,0x7F030222,0x7F030223,0x7F030224,0x7F030225,0x7F030226,0x7F030227,0x7F030228,0x7F030229,0x7F03022A,0x7F03022B,0x7F03022C,0x7F03022D,0x7F03022E,0x7F03022F,0x7F030230,0x7F030232,0x7F030233,0x7F030234 } + public static int[] TabLayout = new int[] { + 2130903579, + 2130903580, + 2130903581, + 2130903582, + 2130903583, + 2130903584, + 2130903585, + 2130903586, + 2130903587, + 2130903588, + 2130903589, + 2130903590, + 2130903591, + 2130903592, + 2130903593, + 2130903594, + 2130903595, + 2130903596, + 2130903597, + 2130903598, + 2130903599, + 2130903600, + 2130903602, + 2130903603, + 2130903604}; + + // aapt resource value: 0 + public const int TabLayout_tabBackground = 0; + + // aapt resource value: 1 + public const int TabLayout_tabContentStart = 1; + + // aapt resource value: 2 + public const int TabLayout_tabGravity = 2; + + // aapt resource value: 3 + public const int TabLayout_tabIconTint = 3; + + // aapt resource value: 4 + public const int TabLayout_tabIconTintMode = 4; + + // aapt resource value: 5 + public const int TabLayout_tabIndicator = 5; + + // aapt resource value: 6 + public const int TabLayout_tabIndicatorAnimationDuration = 6; + + // aapt resource value: 7 + public const int TabLayout_tabIndicatorColor = 7; + + // aapt resource value: 8 + public const int TabLayout_tabIndicatorFullWidth = 8; + + // aapt resource value: 9 + public const int TabLayout_tabIndicatorGravity = 9; + + // aapt resource value: 10 + public const int TabLayout_tabIndicatorHeight = 10; + + // aapt resource value: 11 + public const int TabLayout_tabInlineLabel = 11; + + // aapt resource value: 12 + public const int TabLayout_tabMaxWidth = 12; + + // aapt resource value: 13 + public const int TabLayout_tabMinWidth = 13; + + // aapt resource value: 14 + public const int TabLayout_tabMode = 14; + + // aapt resource value: 15 + public const int TabLayout_tabPadding = 15; + + // aapt resource value: 16 + public const int TabLayout_tabPaddingBottom = 16; + + // aapt resource value: 17 + public const int TabLayout_tabPaddingEnd = 17; + + // aapt resource value: 18 + public const int TabLayout_tabPaddingStart = 18; + + // aapt resource value: 19 + public const int TabLayout_tabPaddingTop = 19; + + // aapt resource value: 20 + public const int TabLayout_tabRippleColor = 20; + + // aapt resource value: 21 + public const int TabLayout_tabSelectedTextColor = 21; + + // aapt resource value: 22 + public const int TabLayout_tabTextAppearance = 22; + + // aapt resource value: 23 + public const int TabLayout_tabTextColor = 23; + + // aapt resource value: 24 + public const int TabLayout_tabUnboundedRipple = 24; + + // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x1010585,0x7F03011F,0x7F030127,0x7F030235,0x7F030251 } + public static int[] TextAppearance = new int[] { + 16842901, + 16842902, + 16842903, + 16842904, + 16842906, + 16842907, + 16843105, + 16843106, + 16843107, + 16843108, + 16843692, + 16844165, + 2130903327, + 2130903335, + 2130903605, + 2130903633}; + + // aapt resource value: 10 + public const int TextAppearance_android_fontFamily = 10; + + // aapt resource value: 6 + public const int TextAppearance_android_shadowColor = 6; + + // aapt resource value: 7 + public const int TextAppearance_android_shadowDx = 7; + + // aapt resource value: 8 + public const int TextAppearance_android_shadowDy = 8; + + // aapt resource value: 9 + public const int TextAppearance_android_shadowRadius = 9; + + // aapt resource value: 3 + public const int TextAppearance_android_textColor = 3; + + // aapt resource value: 4 + public const int TextAppearance_android_textColorHint = 4; + + // aapt resource value: 5 + public const int TextAppearance_android_textColorLink = 5; + + // aapt resource value: 11 + public const int TextAppearance_android_textFontWeight = 11; + + // aapt resource value: 0 + public const int TextAppearance_android_textSize = 0; + + // aapt resource value: 2 + public const int TextAppearance_android_textStyle = 2; + + // aapt resource value: 1 + public const int TextAppearance_android_typeface = 1; + + // aapt resource value: 12 + public const int TextAppearance_fontFamily = 12; + + // aapt resource value: 13 + public const int TextAppearance_fontVariationSettings = 13; + + // aapt resource value: 14 + public const int TextAppearance_textAllCaps = 14; + + // aapt resource value: 15 + public const int TextAppearance_textLocale = 15; + + // aapt resource value: { 0x7F03024F } + public static int[] TextInputEditText = new int[] { + 2130903631}; + + // aapt resource value: 0 + public const int TextInputEditText_textInputLayoutFocusedRectEnabled = 0; + + // aapt resource value: { 0x101000E,0x101009A,0x1010150,0x7F030054,0x7F030055,0x7F030056,0x7F030057,0x7F030058,0x7F030059,0x7F03005A,0x7F03005B,0x7F03005C,0x7F03005D,0x7F03005E,0x7F0300CE,0x7F0300CF,0x7F0300D0,0x7F0300D1,0x7F0300D2,0x7F0300D3,0x7F0300F5,0x7F0300F6,0x7F0300F7,0x7F0300F8,0x7F0300F9,0x7F0300FA,0x7F0300FE,0x7F0300FF,0x7F030100,0x7F030101,0x7F030102,0x7F030103,0x7F030104,0x7F030131,0x7F030132,0x7F030133,0x7F030134,0x7F030138,0x7F030139,0x7F03013A,0x7F03013B,0x7F0301BB,0x7F0301BC,0x7F0301BD,0x7F0301BE,0x7F0301BF,0x7F0301C0,0x7F0301C1,0x7F0301C2,0x7F0301C7,0x7F0301C8,0x7F0301C9,0x7F0301E3,0x7F0301E6,0x7F0301FC,0x7F0301FD,0x7F0301FE,0x7F0301FF,0x7F030200,0x7F030212,0x7F030213,0x7F030214 } + public static int[] TextInputLayout = new int[] { + 16842766, + 16842906, + 16843088, + 2130903124, + 2130903125, + 2130903126, + 2130903127, + 2130903128, + 2130903129, + 2130903130, + 2130903131, + 2130903132, + 2130903133, + 2130903134, + 2130903246, + 2130903247, + 2130903248, + 2130903249, + 2130903250, + 2130903251, + 2130903285, + 2130903286, + 2130903287, + 2130903288, + 2130903289, + 2130903290, + 2130903294, + 2130903295, + 2130903296, + 2130903297, + 2130903298, + 2130903299, + 2130903300, + 2130903345, + 2130903346, + 2130903347, + 2130903348, + 2130903352, + 2130903353, + 2130903354, + 2130903355, + 2130903483, + 2130903484, + 2130903485, + 2130903486, + 2130903487, + 2130903488, + 2130903489, + 2130903490, + 2130903495, + 2130903496, + 2130903497, + 2130903523, + 2130903526, + 2130903548, + 2130903549, + 2130903550, + 2130903551, + 2130903552, + 2130903570, + 2130903571, + 2130903572}; + + // aapt resource value: 0 + public const int TextInputLayout_android_enabled = 0; + + // aapt resource value: 2 + public const int TextInputLayout_android_hint = 2; + + // aapt resource value: 1 + public const int TextInputLayout_android_textColorHint = 1; + + // aapt resource value: 3 + public const int TextInputLayout_boxBackgroundColor = 3; + + // aapt resource value: 4 + public const int TextInputLayout_boxBackgroundMode = 4; + + // aapt resource value: 5 + public const int TextInputLayout_boxCollapsedPaddingTop = 5; + + // aapt resource value: 6 + public const int TextInputLayout_boxCornerRadiusBottomEnd = 6; + + // aapt resource value: 7 + public const int TextInputLayout_boxCornerRadiusBottomStart = 7; + + // aapt resource value: 8 + public const int TextInputLayout_boxCornerRadiusTopEnd = 8; + + // aapt resource value: 9 + public const int TextInputLayout_boxCornerRadiusTopStart = 9; + + // aapt resource value: 10 + public const int TextInputLayout_boxStrokeColor = 10; + + // aapt resource value: 11 + public const int TextInputLayout_boxStrokeErrorColor = 11; + + // aapt resource value: 12 + public const int TextInputLayout_boxStrokeWidth = 12; + + // aapt resource value: 13 + public const int TextInputLayout_boxStrokeWidthFocused = 13; + + // aapt resource value: 14 + public const int TextInputLayout_counterEnabled = 14; + + // aapt resource value: 15 + public const int TextInputLayout_counterMaxLength = 15; + + // aapt resource value: 16 + public const int TextInputLayout_counterOverflowTextAppearance = 16; + + // aapt resource value: 17 + public const int TextInputLayout_counterOverflowTextColor = 17; + + // aapt resource value: 18 + public const int TextInputLayout_counterTextAppearance = 18; + + // aapt resource value: 19 + public const int TextInputLayout_counterTextColor = 19; + + // aapt resource value: 20 + public const int TextInputLayout_endIconCheckable = 20; + + // aapt resource value: 21 + public const int TextInputLayout_endIconContentDescription = 21; + + // aapt resource value: 22 + public const int TextInputLayout_endIconDrawable = 22; + + // aapt resource value: 23 + public const int TextInputLayout_endIconMode = 23; + + // aapt resource value: 24 + public const int TextInputLayout_endIconTint = 24; + + // aapt resource value: 25 + public const int TextInputLayout_endIconTintMode = 25; + + // aapt resource value: 26 + public const int TextInputLayout_errorContentDescription = 26; + + // aapt resource value: 27 + public const int TextInputLayout_errorEnabled = 27; + + // aapt resource value: 28 + public const int TextInputLayout_errorIconDrawable = 28; + + // aapt resource value: 29 + public const int TextInputLayout_errorIconTint = 29; + + // aapt resource value: 30 + public const int TextInputLayout_errorIconTintMode = 30; + + // aapt resource value: 31 + public const int TextInputLayout_errorTextAppearance = 31; + + // aapt resource value: 32 + public const int TextInputLayout_errorTextColor = 32; + + // aapt resource value: 33 + public const int TextInputLayout_helperText = 33; + + // aapt resource value: 34 + public const int TextInputLayout_helperTextEnabled = 34; + + // aapt resource value: 35 + public const int TextInputLayout_helperTextTextAppearance = 35; + + // aapt resource value: 36 + public const int TextInputLayout_helperTextTextColor = 36; + + // aapt resource value: 37 + public const int TextInputLayout_hintAnimationEnabled = 37; + + // aapt resource value: 38 + public const int TextInputLayout_hintEnabled = 38; + + // aapt resource value: 39 + public const int TextInputLayout_hintTextAppearance = 39; + + // aapt resource value: 40 + public const int TextInputLayout_hintTextColor = 40; + + // aapt resource value: 41 + public const int TextInputLayout_passwordToggleContentDescription = 41; + + // aapt resource value: 42 + public const int TextInputLayout_passwordToggleDrawable = 42; + + // aapt resource value: 43 + public const int TextInputLayout_passwordToggleEnabled = 43; + + // aapt resource value: 44 + public const int TextInputLayout_passwordToggleTint = 44; + + // aapt resource value: 45 + public const int TextInputLayout_passwordToggleTintMode = 45; + + // aapt resource value: 46 + public const int TextInputLayout_placeholderText = 46; + + // aapt resource value: 47 + public const int TextInputLayout_placeholderTextAppearance = 47; + + // aapt resource value: 48 + public const int TextInputLayout_placeholderTextColor = 48; + + // aapt resource value: 49 + public const int TextInputLayout_prefixText = 49; + + // aapt resource value: 50 + public const int TextInputLayout_prefixTextAppearance = 50; + + // aapt resource value: 51 + public const int TextInputLayout_prefixTextColor = 51; + + // aapt resource value: 52 + public const int TextInputLayout_shapeAppearance = 52; + + // aapt resource value: 53 + public const int TextInputLayout_shapeAppearanceOverlay = 53; + + // aapt resource value: 54 + public const int TextInputLayout_startIconCheckable = 54; + + // aapt resource value: 55 + public const int TextInputLayout_startIconContentDescription = 55; + + // aapt resource value: 56 + public const int TextInputLayout_startIconDrawable = 56; + + // aapt resource value: 57 + public const int TextInputLayout_startIconTint = 57; + + // aapt resource value: 58 + public const int TextInputLayout_startIconTintMode = 58; + + // aapt resource value: 59 + public const int TextInputLayout_suffixText = 59; + + // aapt resource value: 60 + public const int TextInputLayout_suffixTextAppearance = 60; + + // aapt resource value: 61 + public const int TextInputLayout_suffixTextColor = 61; + + // aapt resource value: { 0x1010034,0x7F0300FB,0x7F0300FC } + public static int[] ThemeEnforcement = new int[] { + 16842804, + 2130903291, + 2130903292}; + + // aapt resource value: 0 + public const int ThemeEnforcement_android_textAppearance = 0; + + // aapt resource value: 1 + public const int ThemeEnforcement_enforceMaterialTheme = 1; + + // aapt resource value: 2 + public const int ThemeEnforcement_enforceTextAppearance = 2; + + // aapt resource value: { 0x10100AF,0x1010140,0x7F030065,0x7F030098,0x7F030099,0x7F0300B5,0x7F0300B6,0x7F0300B7,0x7F0300B8,0x7F0300B9,0x7F0300BA,0x7F03018B,0x7F03018C,0x7F0301A2,0x7F0301A7,0x7F0301AA,0x7F0301AB,0x7F0301C5,0x7F03020E,0x7F03020F,0x7F030210,0x7F030264,0x7F030266,0x7F030267,0x7F030268,0x7F030269,0x7F03026A,0x7F03026B,0x7F03026C,0x7F03026D } + public static int[] Toolbar = new int[] { + 16842927, + 16843072, + 2130903141, + 2130903192, + 2130903193, + 2130903221, + 2130903222, + 2130903223, + 2130903224, + 2130903225, + 2130903226, + 2130903435, + 2130903436, + 2130903458, + 2130903463, + 2130903466, + 2130903467, + 2130903493, + 2130903566, + 2130903567, + 2130903568, + 2130903652, + 2130903654, + 2130903655, + 2130903656, + 2130903657, + 2130903658, + 2130903659, + 2130903660, + 2130903661}; + + // aapt resource value: 0 + public const int Toolbar_android_gravity = 0; + + // aapt resource value: 1 + public const int Toolbar_android_minHeight = 1; + + // aapt resource value: 2 + public const int Toolbar_buttonGravity = 2; + + // aapt resource value: 3 + public const int Toolbar_collapseContentDescription = 3; + + // aapt resource value: 4 + public const int Toolbar_collapseIcon = 4; + + // aapt resource value: 5 + public const int Toolbar_contentInsetEnd = 5; + + // aapt resource value: 6 + public const int Toolbar_contentInsetEndWithActions = 6; + + // aapt resource value: 7 + public const int Toolbar_contentInsetLeft = 7; + + // aapt resource value: 8 + public const int Toolbar_contentInsetRight = 8; + + // aapt resource value: 9 + public const int Toolbar_contentInsetStart = 9; + + // aapt resource value: 10 + public const int Toolbar_contentInsetStartWithNavigation = 10; + + // aapt resource value: 11 + public const int Toolbar_logo = 11; + + // aapt resource value: 12 + public const int Toolbar_logoDescription = 12; + + // aapt resource value: 13 + public const int Toolbar_maxButtonHeight = 13; + + // aapt resource value: 14 + public const int Toolbar_menu = 14; + + // aapt resource value: 15 + public const int Toolbar_navigationContentDescription = 15; + + // aapt resource value: 16 + public const int Toolbar_navigationIcon = 16; + + // aapt resource value: 17 + public const int Toolbar_popupTheme = 17; + + // aapt resource value: 18 + public const int Toolbar_subtitle = 18; + + // aapt resource value: 19 + public const int Toolbar_subtitleTextAppearance = 19; + + // aapt resource value: 20 + public const int Toolbar_subtitleTextColor = 20; + + // aapt resource value: 21 + public const int Toolbar_title = 21; + + // aapt resource value: 22 + public const int Toolbar_titleMargin = 22; + + // aapt resource value: 23 + public const int Toolbar_titleMarginBottom = 23; + + // aapt resource value: 24 + public const int Toolbar_titleMarginEnd = 24; + + // aapt resource value: 27 + public const int Toolbar_titleMargins = 27; + + // aapt resource value: 25 + public const int Toolbar_titleMarginStart = 25; + + // aapt resource value: 26 + public const int Toolbar_titleMarginTop = 26; + + // aapt resource value: 28 + public const int Toolbar_titleTextAppearance = 28; + + // aapt resource value: 29 + public const int Toolbar_titleTextColor = 29; + + // aapt resource value: { 0x1010034,0x10100D5,0x10100F6,0x101013F,0x1010140,0x101014F,0x7F03003D } + public static int[] Tooltip = new int[] { + 16842804, + 16842965, + 16842998, + 16843071, + 16843072, + 16843087, + 2130903101}; + + // aapt resource value: 2 + public const int Tooltip_android_layout_margin = 2; + + // aapt resource value: 4 + public const int Tooltip_android_minHeight = 4; + + // aapt resource value: 3 + public const int Tooltip_android_minWidth = 3; + + // aapt resource value: 1 + public const int Tooltip_android_padding = 1; + + // aapt resource value: 5 + public const int Tooltip_android_text = 5; + + // aapt resource value: 0 + public const int Tooltip_android_textAppearance = 0; + + // aapt resource value: 6 + public const int Tooltip_backgroundTint = 6; + + // aapt resource value: { 0x1010000,0x10100DA,0x7F0301B3,0x7F0301B6,0x7F030253 } + public static int[] View = new int[] { + 16842752, + 16842970, + 2130903475, + 2130903478, + 2130903635}; + + // aapt resource value: { 0x10100D4,0x7F03003D,0x7F03003E } + public static int[] ViewBackgroundHelper = new int[] { + 16842964, + 2130903101, + 2130903102}; + + // aapt resource value: 0 + public const int ViewBackgroundHelper_android_background = 0; + + // aapt resource value: 1 + public const int ViewBackgroundHelper_backgroundTint = 1; + + // aapt resource value: 2 + public const int ViewBackgroundHelper_backgroundTintMode = 2; + + // aapt resource value: { 0x10100C4 } + public static int[] ViewPager2 = new int[] { + 16842948}; + + // aapt resource value: 0 + public const int ViewPager2_android_orientation = 0; + + // aapt resource value: { 0x10100D0,0x10100F2,0x10100F3 } + public static int[] ViewStubCompat = new int[] { + 16842960, + 16842994, + 16842995}; + + // aapt resource value: 0 + public const int ViewStubCompat_android_id = 0; + + // aapt resource value: 2 + public const int ViewStubCompat_android_inflatedId = 2; + + // aapt resource value: 1 + public const int ViewStubCompat_android_layout = 1; + + // aapt resource value: 1 + public const int View_android_focusable = 1; + + // aapt resource value: 0 + public const int View_android_theme = 0; + + // aapt resource value: 2 + public const int View_paddingEnd = 2; + + // aapt resource value: 3 + public const int View_paddingStart = 3; + + // aapt resource value: 4 + public const int View_theme = 4; + + static Styleable() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Styleable() + { + } + } + + public partial class Xml + { + + // aapt resource value: 0x7F110000 + public const int image_share_filepaths = 2131820544; + + // aapt resource value: 0x7F110001 + public const int standalone_badge = 2131820545; + + // aapt resource value: 0x7F110002 + public const int standalone_badge_gravity_bottom_end = 2131820546; + + // aapt resource value: 0x7F110003 + public const int standalone_badge_gravity_bottom_start = 2131820547; + + // aapt resource value: 0x7F110004 + public const int standalone_badge_gravity_top_start = 2131820548; + + // aapt resource value: 0x7F110005 + public const int standalone_badge_offset = 2131820549; + + // aapt resource value: 0x7F110006 + public const int xamarin_essentials_fileprovider_file_paths = 2131820550; + + static Xml() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Xml() + { + } + } + } +} +#pragma warning restore 1591 diff --git a/mederly.Android/Resources/drawable/cal.png b/mederly.Android/Resources/drawable/cal.png new file mode 100644 index 0000000000000000000000000000000000000000..07051726a3d207f93759f7ef5eb774f1854546ce GIT binary patch literal 23956 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Ð=0C8RM{p@;q~XF* za&d8Xo{4n{*DPsD2cd+6XVlexi|@6q7r+&`)ca4hR7<$@h_XKG(EJPQzbB+dV-YXP zs3wY@KYB-RVGR65Y5LL_&5f$^lxC&uZ~yB(RO<)Guh86&fUBN{ewav> zz?r{+Q8j=j0xb5>y2;AyhZDQf9((iXu@Ark1D=6%-OMn9f97e176dyV9aR}H@R%pf z`>}Thr=%O0LW%}%t@( z{E`T~a}1`W?xIT>>iIAGzXkra>;e${aPnS2kvoBdb^w0Ls^pT}WkijDTf*FjD{txf)so0TNU!)D=pu7(#m3M?s zVWAZymq%UEpDNm)ycqDT81?MqEMk5A8wAiP*-)OC1ck}ZoDt$E7eM{_GyR@l9ny25 z2QcIbZ=<=G+y(ndFqOwb~sdkh0@T>n7_+vrR zyVnlqY3$&8ZEXB3S|5c`<4p&M22}*IddP;o@@|xXeZG+rggE(U@Zcyic-HPk zdDBq^eWB$AZF%jaL5E{dOZLZh+>Sf5cg+;dtTU6=)X=u;@AP?7D1N@v%_WH-0`Tas zO-6l+MEMjR!ms}OC!P9xb#mer{5G->PyaQ(O_)BS=iy?2^dpJm0fCj$nd0Z*ea~(Q ztDTKEWFSh_1V=rK?R5LH@OrS!!jHgo1n;pZAec_vx41nbPqeZ2#*_kT=FZ-Belpie zqpE-yXFEFvI_fv`9~o)O`)uaf?W#U(Lt;@o2K$hj9#Hb2 z{b{0G`3d7Ubnpngb-7)Sz?-awlW(4DOS0VtkoBSLY|n4kYpV1X8DQjEJ06c3U0_@b z(Yq#yQ^Q(_W8JJ>NzfY+0`;)|S^M&rHz6WTOi=tyIG(VJtg9t$sW~z&CgELO!Z&z{pydq!Wp6lyFa{@CnGb4e{rXya#RB1LJtnL3x z==^)6X0INO*TQ$M_4Ju4q^h-5tA3IKTLLeOOXOhD1U^8xvnx@RiY?> zso{7UW(_wAJfBBS-nU#%c-oVuYFilg3RY8%sH76jfbQ_trN$vhLW35i zV^PT~?yEMP+7tFX@d`u&f^ma41CPyc8LNiq0WsS0<9|avmg%dgf%kEcU(^l4Ni8FBk+x3GMYL) zSStS>{|tOxhmL2t#gbEh?XIAu1Zh*KSqfTT5hPpaB6y7VEe*M5%_8-wy*qfti@@0*wx_{nrT6>@(f zln)H+nZSNHqBD~uZ)k=f2E~;u+U9P93fk`>u-Kh{(QgzWo++z*VUrlwW!EP15Y|+t zU*>I+fN-YrENisI4w!4JKm_`YopMnCXY0*SWS6BxiozI5whAP`LEz)*oPr7<>In_+ zCyiZU{!?ig=F7A#J~~{0SbD#5E84g1SLRw&_2{mi6P!w0@cl3s4vwe?%y05)8HndJ zakP1~m=)Ue0#ME=fcVA)L1IO*wAIPT$h4oWC>O0LNqpi2-yQMXkve-(vV(^LR{z!r zoe3SyIn~Wr30MUxw0=JEsnMTdeI3q^icf~45T1u9#M;RT5P=}?$wI^d?UCUqAskbR z6>u_0J_v{5^^k!+?DcAI{ioRKfT8Xy z`7~d(0O=pVFn;7&ZD8|q$Hg&=J^!xh{rvJLH*{GfiNq|`Nvs^O`f>PZk)1uqjh z9(SDpGag&{9g&9%eHfN~LO=mY{L3ciB=p1F3f^F94Gs7r;Ql%it z)|cKX3Oa3`|AKk3`?DS<~XhJjd`OaXQ1VCAK zN56_Y1#i1F#3iy$yy^eO34I9cq#mm~Nohl|Lp392Bt_-n@M!IDJVw8uMdCL}bJhi?HM64*89xb}hDIjP2Q1%%A(dsX(EOi%T!}y)@-h82oqBo5(z# z%5r}f&%`DJ(SPbx=y&byxL4M$jY`s6S$Wr*w~h8+LqPa4kk;=-S?LIHw=l9(Qy$#W z^rZm6g{~j}-uF_$%I%E{D}lwYU+!wl{oe?nDuMWBF9GvmMYDRO0HJlsMxYzd;qAr= zPAuqtKS@FSjJuKou;LAp0FziJJ8+wjHV{rXhwuGQsF(2J7ke7s><0Io2)M~@FvSzN zX(9?`y*Xy~W~?9EelUgmE;mON>Ob)GR{)nI%2hZ5&q_4@Z2@%?&Ubk7dt4)6k6bg= z;YFNP@D1w5@%i_1{r#zXinHdnD@zWdJ8#n3ql59NaVdNY@8A2i|J0eA&;&y4%&4CwHh_@UZ~P1k%IB189$yc~Qa<_0g2ze32+%c)%HIR^Gb258|iRrjz9uDn771 zqKR^;QwyTcroe>(^Bz4D_@l?%*u|vms!f^tS(eGG;qoW_c5ut#L_{XEi+berf?nE( zg%mY^xG|7M7Bw2t4gy7gy1O~=HiQQzajZeZv__2w?8|=(j}TTS_v5f!R;>c2RJnBC zw52xmus?v2cwF|y6JR7cdIQ+OqNhcLKcusD{r0(eni`@JAMX$`dwK&O4tCM6roD`r ztSlK|8jsVOz};0S+2{WA*&g4XthR=>7byU+o?ZY3r9SU$FZN!0pUL(iG%gK*5!4rn z00e43nWyhC%6J!!aB#`w0Y^?p1msJ3a0j{ft-K0~aAbvvSG;D$;G8r2@v%EjfLE$J zksa?zyCBr--oohi=fCWWi;i;~Kac-5%tk>t-)sTxpJ!@sZCG@YxMjgrhnUV{7^?@y znwP0!eaf%=i2x|9aK}D(a3@KeDXkS4o4M42)@z?vv(HiL7}@FlUg84;aQ1!Ns2p3J!?zQ_{H@jqQ7p= zDPx)k9(j2~n4E^O&I6F7K18I-d1p&gn}QVEJ(A%sd#?STD2m_ZZk!vh>gW4?zJz#q@unho@O_HWVH(+9!_( z^MF~qC)(~2)$*yCY`cmvwr(fp&+0+(4*Ona)#*tYZRo>DzgqhP6-z7zSYd4vQoe{u z6~d~Y7i`^L^q9r5l;D*L zmLjB4RvW6qQu3CcHo$iKH#rl%K))h-xjI$VC_|j^rcUb}L^j|a`LkmNUQr1H4tEDA zr6}7+e1Q~84U+Cp4$AD2m%9-9J#tVL`BwLOv#v@f9tUb)Rq#^mpFk;21%f?_eMGl+7?Go3WJ(?`410c zL*v9~0Xa2gMKi?@^LrKldP!^#d%QYlb1F6r%+E&w#U;>zgu%AS07KqT!$Iu6$M^jF zvNKe{uaw5xmZtxmfYXymV(fYsW%0f$#!=-f4XKi!$((=K4lH@Tq!~08sG=vnt8ftD zjzbgTtZe-mH@^5wbL!AY@J8AEOOlbJVZQcQdtN%iNcY2>IG5R~g*e6M2aOTcdHHq5jgw%wg5&vWw9S>Zc8Qc) zV$@{ai_5fmR#Cg%#$1!~Cu6ybA$G)XX=2$zf5f}U(+x>0(e%bz*D=TVx7s-VVosu3 zJ&j|?ucc*MOBaZ4GA|=-2)w8H_bGYQ5PS46SW2)@sPbNzQ%9NH3v=L^XHeW`{-gh> zbx>9d-WT_)7yotR2SRU-hpsD8B0q@Qio<%D;I_N{iL|!q7VfSD1|cF-Yh@!N&SR{# z$6~Kd{PTbLsFWJL86VuxtGg-wZp3ghSMYbcF!fX-#j*TleIB!yJSi}P)K^;X2Xct? zF99>kq~^#3lrPH6_HvXXVTw`V3Y~dGrC-AR+HOOA1jc{(4~^cKj#YU4B`6#z4Y{Y?V4;BO(87*v`%Y zNJ~Y=eh#zO_Yj*OSoqH(-5;~tEdJ&s4O_}4lR6!LBamenwAaHD^L9>d@_J-&M3~cU zI}~c~t@D0IVG9&06{gyAAQxx!l_gh$Bb&MY0-1xZtN+byXF~2~HyxD2b+Me#!xows zEpCSvnOVb}BV93?XB z+LvBnqd@&C9x&50ZG$XTf-@%nQU6riQ`N`F*kw4L>1!V81dtXt^oU`IJ>l{Df(W%>rG*G|IOJXu9D;j1%!HqwRz9lzLYzLnL-69fJR+ui$?n z3)yK6xSIvx1~UaFfxh1eBBGve?MNS|4XFW^^WVd#yUfnN$;eXd{+lFYC5rI9k=?Z4 z3MKp}P2iN*S3M*p;WQzoch!k3pucZIxay;wH&j(}n2|DZEJ`*fVJ%zH9`m2U6hbCj=h!NLB=KIW7an{ZrpdE&x3KURGU6Q08tR z{F2d{B4<^Zy}wi)jbO~5$4-U}Vl2-670AY>chj2xr{5FNToH*NmTZF_+K%)lKfFS0 z=URBv^x(z!?@@BbzmEFx@@$&rwwy{&cf^S31v{mJF0=s^@gig+P>I3Yt*L;j7;E>8 zP4hXPB{KK`<^egX=?iG0slU5-UeIIz?mwgH5?+hY;f}bB$4sqd#LN8sTmttwDy#qr zLF*|0$mNC|!c8R2({$_A%}EaJFgCJ%eU^o~OCtIK7hSjs#46^qLc17NFNtSt=i)KF zmpv61J=78!WYsUMfW#bOKbL>^f}Kl(h?UeuBN;b&Bfn$C)iKRHLb5_0-3M+U-Du=QL|v(BaCY#>^tM#0{04Ptcr zOq3WWq5q=G_CA+@T?f*yclKvx_Jpzz!IZ%RDkunAVH+?~8_i;vJLzO&sO&MChyfGa z5!Dv#7GgW?Hl}V}!_x<(TjZYVHo^*+ms zR?3oz^@+}&K< z0jhe0AzPa`7new^$Xx!|P`bV?>Zm&VhHK%Hs|U6S_$vIJ3_5)NS0(;-m|j-`IEM+M z1&9N0uX?&-mz=*6DraU^NoN{R9=>wBsdpY*PyogU{Dzae;)s3t3D&DOJD|`VUCv)N z+W$NiS?A=o-gC)O6~$uK<`@97s-1ZEW@uOOn}L$STZj)Zf%5BezP>7slOBNUp|s)7 zG;(At*5@KfQ;iHx^RFYyKhdD6>6^vpnism5dkRR3o?`zDtl87esQEJoX_?g|K$YDLv-M{-j9;nRdCbb}`M~(!Uxu|$|ST9!sGd;h( zr;X{mBKje1GElR~cDMa5Jymp5fee)69Hg-@VwPnw{?Ee!P`E}@90d!*`@ecDh~>#gFKV-}HtQ>q7O<`m+?6i-z6Gpm6hApK1uQ;jGlwR*2celdd12fch)B+#b1Hroc|%}6eca_MF1Wpx+v*vX5j zFa;}gc9vFzk0oE#0U|4F^rMn6Jk`hj<~ucG8e`A0JU^fW)FGR%EPo4&8<;!*M4C70 zix(e`j+wIY#3cu}7y-WJdR<%Y&HXt9ow=5#-#k_83Ut2G`c)7DE&S^s#9yV${6 zRJEZwKlr;Pw|`dW-U$`C>jSw%EbLCc%)fi6&D@^HWURZkk#`EoD4wO}1BBg*Pa4!4 zVHlDIIeAjMexv-WYjDm^j&EFjwUb+{^zey=zS#}Z%qfkMfN zyU_PX;7#PN-9`$x0Td-3EvXKHnQo+9S%$-%nG@L-w^CQVKb-7JR97PvFiiXzB(-!Q zVahBU9kom_G~fil>!sjz$hAid=vOCVVgg6Uxu}3|D-4fyAb{oGm(~O1V5T%=K3G?` zeZqhT-KrK?Gy@Ep52yW~2H3TAA&j>)YMRmaJZ@a2S9to&dmb<&1O{HqAJ6;V-9X`P z4uF6ZegiWG+zLRR#ZiY`TjEfq1^%GE9DVz!8rdn*Ez?Za!t(X&RV0L(JF>nQ@gRC@ zww)Oj|E|~nz;H$*Lq>!RypicT_|Z3Lr|j2Wgw%#uJiFXNwjlJdGc{8!JUl zs$R_-jT-GAfHCA){SyInDrTi98WNm4f%txysqo>P4D(D?#ns-gk}EM%gY;nF2##j5 z8~r~HBqo<}ljz98GeSq|4_w-ckb{Qa6+0BOx=5^lBvCHeO@+nv8>w_+&?IF%e2Bz$ z6JVzSOe|Zh%B_hxola)8z(kaNs zo7?oP3~OSpj3tb^%aM#;IqK(O*iU<`VN?1tC&7)7FtrcCZbHrqBusbr^rnZ#0v~SN z^(||iIFv34VY=S?dTA9<+%!mmWJA<4sXF}@&c$wybhZC{OM-?tr&N3OFj7G^SM8C2 zGUs)(W+w;)Gt!T}1r86iORSvvD=-gqX+W@U_yTX+Jhr4|)e0R*Ejuw|YuK!DuZhB+ zxOPJm*B|4GKlqn^vCE{P6$Iy?Dt!aZf3!@c6In$Zf#98;Hw`2Rx#FWqlEKL%2JLaT zk(Y6wkA7Mm_8zR3sjH7E?8GEqZEL8uDvrmgIh(Ub1^8CrK=^d(8Cw4QK3|}9Ho`E0 zY&MO-z@m46Oe5f+Dn-Qc0-UdmB6*5fMegp&1@L_b~eC%&Ji2t@uv>t^XoR_5mf zbIvW^xsKE>UllMOu%`YEVg&nmmPunc8bVUpl%b55JtDgfKmu;~Mmx{IOb9|$OFMPt z>I802`NvfTr;7Op9Wf;}td%cS`|_ZZ?S+9uNogHT9g9mmgdSkI2SN>Xy#0_Z^J`>5 zcW;7}?8z^|aNqy|T3gx&znRDm+*jk8>-PzVRqedm+WA{235}!Y8X!v%7r+SELzfjghnUZMne$AmnoC-F zyfBow!Sd%l-c(T%Z^Gr~P_jjwb0k9RD}at5_n}M1+DHKsmdyODuQnKvzZWFKFR-Gsl7fzBwCsWz`vq z!@XFb0@%0%>@a{~Yg5W#7*JJfR-v|+2%J4TBF&?9AjCS%-&Un&ne~{$@T6+)Y0z}x z4@B(u{aLYh6d+1k*Y2J^yYtTA4MWPdlbql#hA%snK;mkug^^)y@AX3rMpM~IIhKnl zCQZnJ*lPxM?Q~m;*lJ!46hGw!w^Xrtp7%`Iv|v60!38B4H!!F$mAN({70vfjnTOI< z+r_F>NVl)=?}rh68`PW4o^RW5b$YKSec|8ON^#jD&1X^v(=an*jhFbr;76|8y`F=GUvVxNJl zH0XwKRYl%nHb3>?LKXm7{kE*YQH`Y~iAa#_@vm`AVc&>Z88OFDi@Qe0=`Zvgq+5!w zoPJr%4zSpJQ!$82Q1kWO@cG8l^=>+w;Om zL~P7*SvdcNi?k0bJm_0)(<_6c=R6kLn}cpVfvDMOuZq zp1F^vSlmPVW71fK-vw<@xddv>fb*;9rFVpgy~;BR6fD)QeKi>zSVr}81@QR9=0j|? zm{lQX^R7e7!aWkNzO#Bcs4&da)|vwVc+OZzj zxRkIhz`ixG&Yp7al~ZQw{q!vgQN3w}?}cYjP#J*`#FcfpVSLn^`yWe8#YB`>;Udn? zwr-yp)y{>H9pR9oWJOEpRbuyAXGpa@<~9HvNWXkoZ#kl%ML_|&ru4$CR_H7kc%2wM zD&4umR?bQ~p8RQ$6y&(}hl^h;_8^6)$9zWUv{vf7W3(<#RZOg!`6oulHHFRR495>B zz2ac*09?Wzwc?5fKpRhUs?wrh*XPU8jll3=4K2BmG(30D8F0+oXUPXFQ!rFy;h0B> znm8I$B&R=t$+~+nS-}eVpzLPn`#)9@WV zE9b3awR+o1X-E_NT7H<$eRE~vhZk6`)!J}92jft%bKE_(WmVC+d`7qFH={wG+*B^r zhlXtKTp!!#yQfU@{aPeg472aw%p4kJzNtb6>tkM_0uwf-l(Ql-gFk9cr@U^jqVGRT z=KD)d0b)jpE{bpeOb|7p(Vs~4hJDNyB_xDRC1WJOl7;x^?ZIcwLnRhYq_tv~<>NYA@-kUmdS)4!YeAn~cWJR}ghxXm}a&O8%h;}18U-L)FR$6_a#z~k)Qv#jf{Y68yIl>WrVSxH!rr&zxzfAm~< zMQ~zpx5s8S#!djr37qNyb_mP_*L#U(*JYsUXp9$K^);hQRx#N;nRlf|m$@WBnHPqA zD-Mz(p`hDL#b4b3j*I^H;18x4tr|d5Qh~dT$BFpPMRm-QKu=9V=I($r>fFzS*`ksy zKq`~`)fg@_hf_wls+Uci>wgZL>O@wzv#t{d*m7B{hQnDWob`YHz&~H~^*zb}K5Zj0F(VEIVGhZGno#5m2{K55BjH z=fBAkJ5q1*6yod-K|u3Wg}HrnwgMGH^X9|i_$+{ZG*KWY_8TQ3J|N!8t*h#C%g<0= zvV$Qn3T!ShN;T~Q%`4ye=(~N@qUMJ|nbHn`RVn%3W2bZ=>-n8qS(CU0pciS^e6$2@ zW&nD;Cm{(i)L0uD8f8)l>1rY)urD3(9CV%Z30b_UzHo^ooHhHe>(I*)sM&}`g#w(C zAO;vZK%t#)JjnUxeD6qw5(2NyT!E-^5g8>f7m#0nK$ASZCMR(0RllOt#>b#d~d8-DMb>!6iBvs1*G(A%~{3`J0$b=tUSb~ z`?i;@L|NuCrPPUS2WXm&j7h98=yKZFth>S!)5dM{Smfm^gI`)4fD9Vt`v0|X-SJd^ z|DTd|t!rIm=iZWaamhupu91tBWbYX=3aPBb<=WA;vob1@ktmUUZ7wOJXz0^BJMMZ=NUtn{tOu^Of|R`9cRfb(M`( zy&K6#ZO;LA8z3S0rg7li3;}g#?#rxy2kR%?M=(AY@njed5N=6Q0o#xljh)J_RYa6+ za@#L1YSC8QmGMr(=v=?Ic$st<~#B==&Bvf-{fB`s4aRdsi&{Ip~$uemktC zaJ?TjtDnshrfR&_m}+%}|Fv_`%;UuBpz?G+yip*(fU!*o;V}K}V zy7zP;(?O%gw$6n=zzWnlWDS*f@RS6anvrB$!+Cg0pPdafpoml#ENyXf{A1m#H^b!d z@w$y$X%c&mP5-7+trs$QMUf@dmGfKM=a_m4g) z`O9?nHzTl+6Q0_6l|JF@Nw*F88uWwE^&0S~XLk!OMT9rQnLvF%0`%dF2#wp%a@IqD zZDm~bW|037da+`0+_F=mzm|bw;WZmG3?-?rwj8c2@`j~Lv|YRz z!joS>GwreZekQQL%O-uZ3v;FwTCzypWVh@Gqn8-~5L|yRyf;2R-ZsDmp@pIGjWB%s z>b^iS`e)YCd+)grj!h>Myaw}<0K=bLL(Y`T4ouGI)2G0PEYC!>jeHP%@l4h;)1!m zZ#Tygrf1px?*c43i_xSgoIn4)db#O0xloqAzbe$iOXjxR%oZgiG}|c6;4J#K*y@CwBsn*7-xyA{k9O{6 zwo(?df7%pF+D)SZoRnASA(Wxooz{((L-&CSCJ)(Y>bKPqh8{N47vk~j<%MA_)K_Ls zN(zr>{ZK^TcFFdOZ@Rt6_Et=RDy;(2?uIYU37u+Dq1Do0abT12sujKBv_`Mot6JFM z&Ru34A5hUhN|2L{jDxcR=<>yENyTuCH#uf^>*s}5bb$J$A}L6s?82Vp8CjZZgjmqE zdo^Cda=`?5%kzV+i>q9D0wg*8N4fETZSk?A+MMI)?3Q{hM9K|5a z*8phs$m}F0d_gb5|Y8Szp^+y&pb0f81N(yDKb9iWC0aXvlR zWn;g4W1IhK$?dDDL$7^ZF$rEi;`$w}H(DAE6hB*gSMk6(Jpfeb8bzC~Mh`qIq_fc& z%^`dwK-P+g^&y9U$?ZF<4W$RJ&n7Fq18S^{4C^o6_kv*C+_JnF0Y1Z?J|X7qm=E&xMA*;8xCPX&2SMb#Y~r!i@~1DXPAcy=E9Cv984LN5>}o7iR$&DC-{wC|4k;vgoLdL-Yd!c+h9lJ_S!h0<(_eEqa-A4CW(rhk+Z zd+XgPIqWxlPiw|+FO(;sO|bu=_c|ZNBHYzNfX~OE99_pG($bh(ZB9pWVy}L;{NiqZ zou;nq>CRXR>R=LZGyn}g( zUk8my!tb{n{*QOV!+w{D7z;W)UXgOP#sW6{N$H^V&El#_qcKsmSqq0sezqPgMx^(Q zmA)z($^Q2Dl~vDb7?YeGzBE0avF1QtyvXpqYAV;hZJ zP~Yn0+9JRU6+;d)p_vf5X5^p48?*?0y&qn1y)4Q7_{7Lfi&kIY>_X)IPHIv*g2&aS zFGid5gfBlYFJ5DLRI54$^i7i@O_%nH&rudr3prWAe=@|}0%SrQQC;eO#t%JYy%FqC zP3=MIe%v?WF2h=sRC$DmQX!^E<@?)bm7f&KkXC9lO0=6gVh2n`{uAs{C%>$Itw1<% zzw6IpIMbgr^Kx!P3WmXWV5-5}Vl&~4v;Pkl4(O96`yeJ)PUOQoljXu7agc&BJzz)x zT5LG*c|n%@ZShb#2OabVriq(lo{+a=L?vdJA$Yla?!sW$=hZiMj$E*7z_^m{kL z)wHwV$esgV%7UkosJrgPgF{vEWhz+=at?AhVGjga3UI2vQ>z2R=S?96U7z78i^Pkv z;<9v5;*P%@K6$;VdZ1w;)UD{U2&OA$Wmo2;*Rjau6Nb1;WU+$N>oUW&d6L`GFd?ie zcoQ+}g&#jhf8Uccj>K8S3M(p*+69zGpnXtbIk7Ut_r+2$A$q$C^dh`97>_yN-7yqQ z>FZS3Q8l&YW4gR}PRMzRlLo`gRt9b5`5scVT;2K=25SwZm7twK&njK%k$IU15t3Ti ztQ!G_3!p<__<6(@n5y|)BpfCJv%6zP&Pv9B;^yYO#tZ~ogNZWLTQ}`_HP|kQkAs{P zo1N|SQSptv9K-rKc`rLC;ejZUSxR+)Nxf?EP2c)@lsbsYU=8|> zKT)*9CCkJ})PCB?LHB(a3FXaXtkfF1JJyGyUC;NvpdAo8ZjtT7v~w2GV1DZ^d?F^% z-Fd>yJq>|H+;Si;KjOUJdFuXa5nM_{3AWQ(z*Puo|BRYjkS3T3msN4GQ)>ilc#jRK zZ8Z|#Cve0}KS0{gGpmb^Fo`3+!w+%hWV4dwFDssIDXLV5GQ-`2^f-fn`aK-L+Lu?2 z&>~pZ&`po}EVnSCwf$o&vi1kXf8RK|ZRx{^b=GB4#oF3rb zk_A#}`3&9#pW%YpoNl$dvab1I3vR^_Zpb;nh0*%OI4eSqX1IO}*h=iNbeGppLL^i|idMRSzfoD_X*vw7oy(Qum7D6Kr*6X?MD1->)i^ zRQ=G`*iM@ZvvNsN8dpyBcfsN?W?%u9+1p#Vi-}aUUSAxpuNw%nBG&@B!Jub>8(6#Z zFjtMy>{ev*tP9o_v%YnFxKZ#W0xyJxh9K8l_Ro+NA_-ln71&T8Ex zYkyf}ma0tkWRQpV{V?K{ED`%0gtIo^>jN6(VWGw@Ww!4Y)gy2g@x|BpA1q9ps$phrzobcBZDuF zM1_nO#Fz!?H2k@p!$GN!YoG!&=g*vNi4jhrGnU5L^5pupgp%9NYrhS@Y#o}Z{xcrZ z|KsLiX&SWn^c#iuTOKek-MgE!BWU8VQUDs@rkuX`R83mdkJ9@*Pgn2|(Q+}FUSvWR z!}Hq~yrgGjOI=%6@oTSdKy>#xP210T{+Hla~0W;wKF4+sa zg&tQv5Gk0SpFemvs$qzq$DRVmy<9wW7@_1D2_=LD; zy$Oye)zB+_AWnWb_|7 zC4{|>qrzQF>%-<*DTsB!Gg99E*Fux8HL98tcVFXEJCRKG(pCA-L^e#nc=4*>fSI^# z@DYc6YgMc`m?))#p8n#9>e|S7To}rn2j&lI)uAt+p*v!AowY+YOqZuUdtwFE*pDyv zJAbRlp^f%l8E)TijccTF*V%5i!X~^RTifLpYl#5U(R}Dm7JWraQO zuB)&Oh{#;S^|}zhmx?_2AXX!SdsIv&@qi`?RS9RkDQc8UJpV#QxMGGde8s3E3U(I#xTDL;y3Up5YXrV2Zvw;e;$yC#z(KfJd!j zJ}E**KnIpNf-ECD|9s71)(!4P1u{jNpkiXa@V;V`BZMf-T&g{_E5;|h@B5=i0bH;I zHVB{FV<{cI+0IkzpaI#MK&B#OGp=}XJ#t8QWRh&Dusi9!?CstANLm(IU(r>=2^(-C zNb@V>5jSEJHSk6j{716jjLq?Drb#wR5N5l+m@*VeEB*I7kUll=h4)=!B`BG}Ws&xZ znej3Vvuzxz`0@X}XBu3VTfWm&_pAdfj;ZHi?Pjqa*67te1-D!Kb_>BECy@^pP&4Ip zv4euS7Sby+;_;u6R5~Ew84H_{xf&_73{80sIXkUwQ8k{NtJic{QcC#mDIE|<=p^0g zHe#BMuJj;6OxdV&YNl(8x>}ibB28nAauySJsjqq$t7O-j4`%tAIF2bZigPGHFmd(Eg&GWzAbjDpYZLlOJ1bBSOm+Zm_qDdhT1mO7|~c(*4? z`7#8ptdjMSFR8oRQ>lZ6v$OCeJATv?#XJ9BR;g^4<6T~hdGIzCr32VR)z5WWk4Y-n3zdw1e#-}Qj@8bQDn4G;@j?k48cXH+EeX_o{DLRw{n+0$vsvor zpkp+yS2{@QmKXK@Hcje`9YIoImF1JbARoQh9N)VlgX`jumNuXCTosW)lSUwx64})7 zTHUN7Kcs%^D4#mRMmgpY|2@XC$)7lRfsT@c8!RrgI~{yUb0ZX~*cxqDL;`2sZw7!e zH(-qtQHfIGij$72uQc|-R4eJZBl{iX6V(Q=?x^Ir=t<^{-0U`%I(lAXcT|H(0=?pZ z{XiW&1I)Z(M%kbROP%oOU*yl#3j!-+kHuMIB?u~qzPv7A;?ZlYu`FMtyFH~1zrk!| zNRC9@pmSokGd0TY3N5dhJE{zs^VLQotL+Me0CPcgCmK8QGPxsBbnfyNbYm*H{MjGr zH?%01L8veSilz*jyXP6Ba39)`s++aX<%&mDWKmpMZ6mDGF9uXz)t^H~i_z#F^KtS2 z;2WWwr`L&$)6Rq$e=Yq`ujfLvRk#MepzsV<5Kb+69I@G+Gd9bo4&~{;ADQuS`pN`|0a!+dwB*(N1q%^-?Qutxe=(&9(t-|tm zW*hQ-pePcm__QO+WzG->5wb6(v za;EpL4C27CdkG##D1!c&B*WgNze2nw>ppc{)QIfDYbCc8YxrrQ=|FLdad!UiXf8)Q zt70xl{2fTNh#nePa7Q2zAhJ7EcfKy(;{rm3nL!&wT%{2`P40pq?+SXnsD@fcwzayH zZcjY1_<6s0k6KY1LIRvJqLH_xtC;_6^N|Q=(p~?26U`Yc9hCop92XRv$;f?YByl&N zW;C=%{7x-bu|Xn%4kl_4J=CK6C(1JznxHGqtu0O8lQP5=uQv~=nZ!9w%$Xj~|Dz3) XY%VukJ{bp+)M*ScCc3Y*9UuN5l|Q?j literal 0 HcmV?d00001 diff --git a/mederly.Android/Resources/drawable/dr.png b/mederly.Android/Resources/drawable/dr.png new file mode 100644 index 0000000000000000000000000000000000000000..ce42b65c807f47ee75b8972da27292d039502f8e GIT binary patch literal 8707 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 sKT6DP$Q+SrU`PEDQ-T6iFhxDD|~gWSPY_W68c{ z%Z!G`Zj3Pu2EXa|`~7j>z2|ez`P_5QyZ63#-$Ofqt&bl&b&QLP>$t6r)lDw0Lo7~N zJIc*LP#<5(bE-ojH?1wWDtcuWI0BEaxt%!|*VhyQ_T3{KndET&)@4p@mY;8ykztmV zWtNd``To5{MwZ3SNd|E^g%7VmS+vp9G*r@=uu_8eNSLx;He_;~n_@f>l$AXW1PUoA0F;yfN@s+XRYavuNoZ@IkW)Az zr+D&`p^Uk?tfduDMNQ7e=CqxilGcSYPR`1%ZmM2)&*>YhJ@C=+570KbtZjN(C*-N# z6|i1Jq~VJM5ZKuyCDp>oixZDkMwSi459||sGwj)|K%`4-ifia|*XPOZ&t7?%pWXyJatX_8n>lzrewLD7+1N*>DV}Zuv%Fjw&zRJ zs~Nj+e02{2uV9G&r6nW1hd-{)ly|+tA84l2imd{Bur6PTXL`-+hwNL!m%~{H{d$Bn39xOa)Y&?J4CDQt-DvGab ztLM*HI6OY{6{349CSrIb8+eqVYRU>ceSmWUW@bHt*3$|UtRj9-BX^M`(48Fcd7Q#9Ry$GO8LA0c}?s6bN>s8Xz-_<6xXc% zTpiCJxg3aoa)0z|&gc9D9r+&@@W5o&3&EI*zIyGMZIAPZ{NgIICKgD4CMO(oJEGdKTi@b=j#-r=i-nO(lmq(8#`<&%PT<4|dY)tO9IL8IQ$? zF=w>fx`)H1&dX3e5=?)m7<6MqV0CkkNV%D6b?(*8RSBDt#fqzy7GD#e7R>#TwR`&j zi{7E0FZRvPDzhf*@~CE5A8MazSAPPu@`4 za{m|@y@ojtKQ$^;Xurg%B=2VX(pE&)WAkvewslm#-;ajQb(!_ZJ*lsF@XlP4J{GwUZi7abBECD&B5JE(2eDpx zIG8zCKqz*f#GjizXHuFx54S%PPJ0Qib(Re=4TL@Q+fTs3Y<>4O0B zhACKkHywOW>O`I>2)u0J{r9hOcC$N9MojS9-%qz$gr8jW$KRW6aN=U(oOexsz|6Jn&t+DEy!y=J zS0>6%KTjRPo{*Nf@9abuH_`nZc01TD@V;>9%wr!ZS*5h?Lvpr2Sta9>Ipdd)nn$+3 z_jo(K1dDJAd|MzDVDLRj{Lx-=$&=LQzpXnOSggBfD&-;0~+sgK7Q~4fc z_oC&`BBZy5dG-A|<26{oi??pfwh4+mF}Q513VzR>XyhC$vs>;0(&?qh${|MYX(Xw% z-NDW%(k8q*Dd=D++D3;_WiQ9{H_^y=y;pWbJ?}&;Jl>jwy7Z1H79&hs>%c$@z32ol zf}81j!oGl{z2FrrQ!(Z9;CJ{v2a1LqqFdRP175{GAOgRuw^PvO=vpI|aE(wO1>KCU zbUL_fH zNM7T>uGqUGeBmt;Nh-V=q^g9NDXV5q7fJd#19$BW@6id z!zv~n=C&c|-=dubTT}^?-5Bez#Cu*LJ? zhi3O=)MrG{mHvd&=#7h%=6bb(6iIG-sYPGSVEUf>-j~B8818mt){I~P;XA^HM%=Pn zqWp2O56Qlt3$Fqr(ojK*APZ8y-bxamx3OJurBq|R^MT_hDe4loRtxx&X~j4CD~Yei z6Ka}uA;oMztlp#ip(jXu3B7teNSN%&c)eBnDE%9X-gJ7?DiwbNn;1A7yx|-X?&wtU$_x*E6P#%E~D0tgi074UHa1d zNnaRHa%pj<^H9y`-xvA-N=?9b9-RJ3Wy-D(sfpv6UHB$9zF$PgJ8CyE zhT1oz3#h)6j@uRS)F2H^o%L4-UdX>`BsmO$x%ykIDc}tYi!grO?h%0Q?C>o`ylzLD z9kq-A)yr7)K66tCP&4U=<@lbQ<*$5OEt>xWAx+C8Wbh&WLzXvz*}O=os9!S=E+DFO zFF^~i9t%UeCdPjwv9h7fKd$b*GdHDNivj%+hH9AHW_aZu9y_;a9pV34MTW9MjFCR- zA9b&9xcc@YT?uc{G1NoxAe8vwf8fALDs-ZG-s1$A2;hf@_2hGZ+EfOsMc&@|vs7Jz zeNP0+?IX~hA`k=eD1=Nakskfkm2}63i{;ZA72J|C>d<_q8Ws$@z;t8;I{)l~Xv_Mm z@2sa;P+CD)wkwT9nA0D2poaBQ9R2ZuL8Zep*CI4AMe1aELdjiHF{gJedOdfQO^8t} zOT63C_95fhUpqEF)-r4IE}@8{jX8}unI7!4nW5GbK-_l$PZzb%mXWVA{1{u5fLx|DIw;w zQbq0SmDQRO<0mU(g4$bk+Z6_-8Aj zuAs!eADwcg2Sv|qB0$vge{qWEe`HptBMs?ZlNa}-qgx6&NwB7mZyzPt8t1YMy3p|Ia1# zzyv@a$iYkdQRUE}5(Iv*b`2rL7M2Uv(^50Ik-#Utit)$rPL>IiqzPRa?6nWYP=uu1 zlZ#r!Qq#eKL{`B>#Q-O%4~fpWnQp+m089f7=m42#rzacI4QZ8?rbIs39=QRj)d^96 z-fy>>dg1;zTZZ((-MK{A%k9&sKNT10UPVddE7%{{(S!`G?aMQ=cO$JxQ9~bC@~+zE zw2Gn?=>k^cGg934`P#0!_8VwG6KF$L_@#aUD=G%(OO>UHdhgssWmAmw0X3sHW=|Hd zm^*6oQzPtH{4Mf-@O~@<+jgu9m#okjOB_YOE<{=2qOSJ;#{y?V-Izj2m0SBeJ6+9e zbrX64;*ryoO;io8V%9It9wPfhMtXkY9FvREcn%XfmYv^z7N7kipoMdP zkaT5EV6b;f&jlL7dC7jBAU`~j>h_bPa;5u_JUu;0lY1LUF>yO$vOvPFzWs#L7i$&L zaJUaifugbC`~dea#cmJr9|KE=i$o5F1A^-IJizu4L7f-%MFW9~6{jt*vvO zK=sR^fW!>%7*3U*UkVR z)v4&w0vraCYIUQ0fV6v(w2~u3ZUbDxQ1AV&9e32%D<32Qc=24sXIw?xJrN~R3tOMD zW$=*h;7G_S+m_rQS$M<1?5NKN=U(<4xKxfv1t|H@t6=}dr8PLq>*tFd%tQ^#iGQNX zAw?FK%K9@aqmDdegwstSo($?iHKftmN1F8rxJZ%kgg&r)Obs4V6NXa9&<8PV5bY?n zHfcphqxz>)1BuXY3J{_3WELFFtf91RT+!spPqWQ z8MpJa6AXuNkCPURb&0-6N6Ff=jLA3VMF=&TMa0V``X|znWR1*EB-NgSkn!*z60Ycs z^ch12c^RMn;3Y)^Ym^l~vGmkoDs!EMN!)s5SthF0)5zW9hLobr1mM1{uihuM8KooW zS+{BL5ohqd*z&Ct;j8krx%;<6KjVUqV-Lq6ns$G&Cjnep2M>*B)juqKE3X&hdf5K$ z0>Fb;gL<{8UWRqtodUC?d1R5J4hGrw%&klKv654aF}+*EL9VggZZ%#Of$5W#hXoJ2 zFfMXt-fykdS2kQ~R9UP5-I1wcI3W%|IA>=P#0rTmpkYW!a;-lxqI_#~^x*cv^$$8) zSWj1go=Pwpx+avZU*TsS=mc#)RpW(k-d$Qc_!4!tUgLenT;6y%`FhcWM!;jfqr=G$ z{D2#Ha;9|<+lbW{k`&j`NRdX7F1!GpmDQy!qe5g-;Fh$b42RPNPs&6J5tcM0Ln}XbYxUKKORL?K z3YB^BZY0AiJhx5dJwhk`Z1Ka3Y&%q<()pA%O#)yzf8OshHV*b!yy7ANISPbw$I49> zRR%>umvImGPyRuLoIu0XXjO>1;KS}*T*;TBmESp0%dyVg0>8H&0fGIs)7A38bs=TF ze$~t-t;8CbD5GT;^E-IBhrLp{c>c&B=w9V&^P#;4bsRi^)&jb4+JRR#v>|(KP30-TGl%2H`5YTEw)BRU4u=C($9zEZ}<3Tf<9P*6Ox`MH|Ervo*|X#BiB8fJ3&8pms;P4Mpw1iB&bwQ3n#WC77#LFN7gDOoyELRw{bY)Rl1>P6p2`sH|I2zF=GT zB)EiXd9$(sExTcQFf&rbWyQSSUA=7G_JtodjtqqvGk7gYi~BTGq$Iy1Eg`;P(gQmh zaqYGYRD`=b<4v3y7U~E(YF(~L-Xg=gdt=#+)qlZ&B*=u z&*<*VfF8bC)Okk=dUURea+)S7Jzf25MbfCEil$zrE8jDN)7KQuPV1p|3?Yl*9hffl zQmd8NeevC-Gs0n^?g}^zExSMM40G1s7#xvABANlpn-ldV8)wgObsyXz9A+WMlt1HW zZ;*@Cz%#(L)myg*f=ivF{0C&*1iVbn($qfYHjqUXfuFyoBBXvhz1SJLc3s!=uyzV# z6$`cK()>~aUJ{`g!!tTs@4|8*Q>pk;Bxgou?&%`K>SaU2<}^uZu+E{Gsg<6UJ;fEb zhRfdgZKTW5g*|%$xp*1#v!G`+hiFOS=l&{njv7oFjk@8Pk*N65!z^p6KGB{SP6Q1a z^~5T-o86Im?E_1u4ACKrdrim^$;Q5wgzrZBbX9~_rhX&v$IErFMr8h^h%XFG8CuUf zpR&b~oomxLUYeBXdk?Eg&F__1)OIAHp&6|Jl2VArP@~@GaE<@2*{y$rm1Iy9vR#XXDUA` zlrX*ZQzAA7`w_kgDV)!BVn_OG#;myu8qsZ$8NM13j*=^?h!P1;8Hz0*LXG|mw({r6 zz%$1FQZ7;~>~*4+5WP4C8wa1iWxkmge=EX2p+si3hxmQ#+-+JhrOOiZS01VkTnB&C zsyaXW-mrd2L1X(46MPO2A~?QVvioOf$T8fqJ7F}>i?F2k`@dPn34UZ*6q>|5daW-8 zKtc;o{*?2h9TbpWfMO|(0J>4fPv#X$8Z)m^XyQ%2uPg2C|Dn7HF*+J)8rW*|k;Qgp zOW%40qn1Xrz%<5{W|`SabXYK&BJ_+9<}3OYEPLQ zEZuhjHH2ra|NJfV!NpSzxSnkC>VxB{$|Dt*;Ro%QSA2A{;*vyWC}$ZEcFm1rHu33` z4e+yrj>Mf)^kv-7UzqCumys@@r@h~MbY}lVGxojpqxgCkg&oj*ipDp};yLL$1|<3XjtED3-OL<@+O~4)F>%vS_4DgHFDxRaluWoy)Ahy4;WX*B|5`-FDFG_< zlk*$B*V!YeZnny=-9~mTTNmc_UJnq>`ZNsIy>;;GBx6?7=ke%aH*={Pm8b2As{-Wz0WO16zYl{k3LILQo}3K4CpFXKdUBKo7|>*AllJ=Q<{D+b`|qK zvwE>bglwmPtvb_n|3q4^(N%14O;`#;F~1o8JG9?Gn6e@VCn)BBU}@sK2}Yo`)s%?m z6eDJ`Fm1gFW4gY8ru{Oqzz%WK*c~b=K$PqSQD1rx0LvlBVpZTUNws;cw8!DIVqz(4 zkcKPW63+C7^FMnyh+L)PpT>QOr9JY9v&A3yk^I1PlRhidt4IZaZ>xvY_`(kd%!7Ib z?uKif6z(|>h~lq>O*2d=OINAg>+;Xg@!c*h#*f8bToDj%o+7u+VER6|v9`W;H~i+n zxKt75Xv0>}kbem`E>71KIJ#8JD1+dsy(PMJFDxL6VMTbbwM+G{#rI#dhK)E!D@=!G zO13c$i^nx$aPQnEvcm>#XsdtqM5$NvjXDA^(!Zr_kYhJXYcGuyb!;#883;6C0>0{{ zgj-)3URK=eLZX68_QSef!RG_O#>bj5;VVA&_9agh21^HfT9F*YPB0maf_Q#z44;Y2?PCeBK})1vpR(c8%`1g3(@@0+AG0%2vCmP$q&X!( zgee2lV50?ht!%t6r>Rhxw)orVvQNf9D?3PT!St3QZhC0vIttXcc}j<=)exiby=&ex za#VPsHlS}r)#C)oUl;R|^cQwKHBx#>?psuqiXe@Z<&lRUp=BxT`Ghp=f7&M|FHbb} z2Cvi(&fswhS5GP8*du2(#(62IzrUd$OFWzLI)hNXrO@DVWntRb$k;h6eW7;qkYaLs z>`Mo%qurma4b`!vw>Z^7ns>`PxoCKa(8e3!kzK0I!P6U`$6ru#P5Q6xh%IL;?%CZv zCHE4xW2UuWS4Fno$u}#G0`-`#4esK0Y)Yy{=Fgz`H|Da0h_g1IT$_c-VE$@FLu5n!XIJw6!&pjgkdD)}ohgG|8?DKJ zTGvLkCAq|3G3$6go&IZs`9mImA3m{IUYPok4)I3q-bJ9?k5*qyn@rouS^ZMAtUP?R z*97FZ>A*9K!@d8VN7$`;k_u6nJ+`#{jh&qF8e0o$@+~&*o>RolZpZ)HVT{5KA)w*U z`pjf~6mDVog)k5spN4Ce%K39I~`XjvfLMav$HSTJi#03&Czwp-VR2FizKzorIX9*f9Uf6nZsPAc8!oE<7hYOKyO5wA(4 z%afWWuq%dxLu$5@4^H8?B6H&A-k-&)G?Z6dGh8XDDU?#lM|%H7S(X`DyW`Ikb)m#I z*JAS$t4e66;I7sdJVSN5Ilsk(Z4EtR)56tD{RX!cawvZi)XKYBRe>+&2OB`3ej~BJ zYxsCRr2aiw(w0oH!zxXX_yS|^$bZF;C0my#?r4&O-d zjGp<*I+NKmmqdJ0^D}Tn?BKh*I`#W_=Tlu1;HKqPbMpZ=W#x6oo3OUje?Q)BFN3Wr IEWDoo4}DC?z5oCK literal 0 HcmV?d00001 diff --git a/mederly.Android/Resources/drawable/drVideoChat.png b/mederly.Android/Resources/drawable/drVideoChat.png new file mode 100644 index 0000000000000000000000000000000000000000..0cc42f2d836de228e129e6ec5ad88c24af2a44f1 GIT binary patch literal 32346 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 N$w?_o7Kp$7_&>hNzD585 literal 0 HcmV?d00001 diff --git a/mederly.Android/Resources/drawable/message.png b/mederly.Android/Resources/drawable/message.png new file mode 100644 index 0000000000000000000000000000000000000000..68e63afdf48b1f3b0590a4dd8f0f6a2f064f6386 GIT binary patch literal 8216 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¥+2i&ZH)wlJG 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 Hj;Q|uYTBb5 literal 0 HcmV?d00001 diff --git a/mederly.Android/Resources/drawable/videoChat.png b/mederly.Android/Resources/drawable/videoChat.png new file mode 100644 index 0000000000000000000000000000000000000000..b86f78774521b04c5e92492fb682913f8d5a7861 GIT binary patch literal 22097 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�}$Cf-Gxi^oK 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�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 + + + + \ No newline at end of file diff --git a/mederly.Android/Resources/mipmap-anydpi-v26/icon_round.xml b/mederly.Android/Resources/mipmap-anydpi-v26/icon_round.xml new file mode 100644 index 0000000..88d1d0a --- /dev/null +++ b/mederly.Android/Resources/mipmap-anydpi-v26/icon_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/mederly.Android/Resources/mipmap-hdpi/icon.png b/mederly.Android/Resources/mipmap-hdpi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4623ca2c42f2a8574089377b0419413605ae977e GIT binary patch literal 4754 zcmV;D5^e2?P);Ca#jVujB`ll#zAIiu7k}duPtJHa>pgg8wyGef_0Y zCJG?yvS;?LOFOx5_N21ba5ks1(tCJoL@I~5Zm<|&Fc)+ch8dwqYRb!0tg^zXDl1#J zHoobc2 z;{PsQdcPJe4U+(OB+x3oVV!c%J(a4W;&uk7n2KWHfM3p%KZ)+lRArU=1^A&gMv7NErmr07yMDdl*30TTH%fC_Q(MHUP^KfM4(1|OzN0>}Y_k9nnh+EyxVS=YVq zp5MMhu&~&u%drBa{ff<~+tis%*RnMkJoljlIK0F-7#?RC1ShkH`#F0|09hU-^P(<6 z>Q1Dmo;b5^1G>EjEG5xc0a6z{^5W8dM_r!typv8!4*(2Nb7J~yJSw|Z|g%R&R7%R5K*uEThfpIek<44I?yRv#6e1|IN8!eRzkV;>(=IfoQ z^a75FOKFgo7WXlaSz=s*gK-x;=5#ek9=FHMG?$lq^139jtf?)TI=%n%-?~1}J-S*c z09j`@K2@8Jl;4=-ojJq?FDE&~f$-FEDS5c=f)wOHc9)JMfcQr0>D{kzkmvDnV8M7p{_3w7|aLMfjD-bh5B zYUr0iaj%^tJ_4?Poqu5Y;Mc= z9Muy0#1pSC>&ZHwG&M0GysV_P&P3WUrPTXRI#FE^tH}dN92$MWDKkKxOt5v~^qK;2 zAUcrB`WgcAUT;7T^>tD&og5@1i1z+OPCc-%tw3z{lp6JgQ|ria+Dkk_ zVEE&c2SEh_qsB^-nM1NBHSTRy`-ZbYd17K*%v}a^jo$d~SxVXThKuFqX#ie$*o2+{+L%`nFJw%* zn{;<&AP^jpP1eO6a*U4sISWr;xSGep%3=UnAGz=O8ADFws~Pf`GX)AT>kI@+X%Kbv z`Qx-N+;gy3bq*(~H%J$qJY9WYYL&8>nT9zSfCPfw4^6957tgJCJH#h+-o3wvWaxMo zUIgs39#4+Pyl$1Id#phfx$bPb*CG}fif<_lATV0fV$(KvB~rBv4l6aauu*7a9$lwK zgl^IkWcT~K3$qA34evQcMZ66gZAq|OP8u7Qo+7*b`qo`XR1(k-s`)7kMhUY|5Uc<)i$UV&}YRLt%C7VE0yezZ6P+!0GX*fOB@ z_Ql<%_5L)FLtG+`-kkGK z%N}_CEQ3`yO@K6tm9=%7>F1k*yB<~wNp?;4u>oExxQW#>OdIy*B3X3p;*(XZB7fru z9mt+oc|=`DV_~%MjU&qO-pFP4FfV701l%9viYO6ldF`~&W8VZwUHtefpXo@Y&V{@L zfq_6N>uiTJfJ>Hl`7QNq_ptgsy-AxiC0e2WeIacDv>5{!{ZRdeGfq+%GwH>)UiDkj z1@FSZ0Y7};Ns|8RF?@tjdoq3A`8!@-ZVpL+tYtUfTxL~FS{Ki{3rGS1u(%B+fx6dV zr+A!s^vM?~Q@7K;0RT)|KJO&8v^J`>VjT75r()j>62>;{ZlP11zETKdg&JLuAkC8; z)Ku6Sq?mKjn)Qk>kYW-bHRYV;Um+win=d@5c>ahWokvQ#_+~9HjRa zgAi=PQd&-wITr0bYv_$x0>JDKALvlK2U4Wp{o{Tv;g2LVWtXf=KCV;j^FQ{%OTNTy zlnfAnwuUp-Rs0irE>0VB+H;&96Ld+m{qGTn^{Zs z;FnyCLuL!fB6}iqv@^k;%#vb$hWW)hxJ2wj*|MuVm0GR*HXj+t+4Gs1vw_=U5~$?$42oxuQb(P9h`I<4Grd@m{>2?nx>jj{tM*>HYF^Itf%5>F3wxesyD9&`14 z{McDYcf8)D@PyII)9Pt|a{TXa><@U^SCs6N?#Gz-pgkHQ4E7M8uSNo-R8RZ;c2*-8 z(8b)+DKOw$6e#$rZ*tK%D>w*||HRR=LQ?Y&JA z2E>dPL8$SMdDPLFJ=n1FVSAwWc?@%QU=VegG2Dle6T+Bu3~9oQ(?zSgVaZ(X^2Q%`M}jV$kvfDRFw9p<30-!7&+l4q`N|HGgHd3i zNoEktVK5bc?WJ3tbW(fApn%)VAkLg(z(59sjrrR7^{T!GcT+*yy6dp&raK(~!}?K2 z-_~7CL1t<}$8`(n`ontp(e=4M<(xs9jf~nfh7H>!=(-sjw!V=p z1rAdawJFBL)4#rrYRDeM&Nxst2$1fe4R7j5K6a=>z0il7M&wO?d4YlDu~uH_O(^i1bS~+9x^61ob^ssNq4rGh_R3zA2`zd!!_R{S^S7skUh|80)##gEM^n?_8rYO zAK2n#3V#G-CX^sX)-P#oUvp|q;b$I`w!L}8{a)oEq4znDiRID6(nf~0q-^z{BxBO- z$<^x1^I{77NU5Y_I&yHcq8Le*H|7F0VF0m@u$nov`U}6z4fgLm)+|9l5_o4-M(C%S zIkH>V4-X8hyY_bnzE_#@U_?^*i9vhOf9>m1hX?VB5~MGYjX70iC1nx(%MJ9s*1Trr zeWZ;yW{x{xAPgWdfEfTG?Gov|JJ&jyl<%+9ggO&5U`AKd##|NhQ_ZbA4^cjoSvNhj zAz$9BupaKmv7aW8*1md>yZjP1zP)%Bc{}RIYT_8`WhBz+5G!Z@xVE9-G~49i2; zcnH4t-hbC7(t%@{PcC7-Q2R&#u>_Q4Q!o6cE7@{rtCPdhMX;`J_f^jgO

IB1M9 zuviUT*UG#Pmgf@PEHC*=t>dmI+uC#|Vjx)tXGArlwGBRi8J#?N@|5Y{fB3n`)M*P$ z?FdRLltD5WVZcZ}sk2zW&ooU~nLSI(vhX>w1hnI4#khXo7FquJ%UwO1ev0TI@@y0C9|X z`%Di#v3-M`96HK?_$3W85N64Sxnzahp2*T6-x5zYZXlglR`9uGbEN{r{_8C2dvyEZ zTxaVxeP`rZXNF=Wd&s~Q;~Q^3e9Cn+Z-bAdYfRY#AMiC|JY;3w+_h`cxgWbsMXOFI z_&J9(V+ny65N^A@f16Ki%=Tda;g5rZ~RLc_0IrzQkD<_tC}J> z1p{NSlmZE>x`SW(z#FIywtj7-6Mln(P)36WXQB814To9Uf+YsUDfFe?c%`OeV_VsE z?Em`k*X6cRt=z@3v0B@wL{ZrE2Naemd>}v6>NgR|5s~EdjlVwK+{e6bSFOjv>GlDf zAJaXf6W;ee+urx-*Ao+3R|KTa7T9ntMq0QCLGp!lV1%S>C~NnODdP$aC9!y7@EHD$ zjg3{e<&Wx$&}2eox%`r+ewl3B*@7(B!OYesV}xn!js*pDg(3wt1emFzU_o%aW&Fzk zN`c{I9$M(Hfx-205*#?F0a)w@szFlp2OylU3dYFZMC(hmoP-vApLQKXCY z9IN~#P-M$+Rh16%^9t`CNluNg`(;8wudjlQS=9ifk(s;#!DEoCn-4@wmqK<3e!WcN zrziWk7awMaXLOfAj9FnRgIEzv7z?vRf=J6qLM)|qB`mM#f+`a5z@vJ?NM|-^Rx?$N z;SPZ zj~62a5;bqO5AS+f(vsGjz!LrFKD4B7(Wf6dYsJEW_2NQ+9P}E%4p-M|+5%sc z2MzSdoYq%p^<$TY%;x>64U?dw0vS&q00+cvZ04YPiFXD5? z7jUIS?s%{Py@mZc8sds(iS=7%9e)wSZ444w&6Jp1kNMci0m6kflX?Avh>l1nVqmoZQO@J1gk$DvhN$wPSf(XL-0+4ysC%{fuW9(BnT(2{$D*4wKx<;j7Po0q>L@2!>m$5 zOKf%cY*u|I{>Vu|J0=dGIN-uNuwv># zit6=;pk6CKEu@>4<SvNxi_VH~cSMe*ahSXW%TLKEK3r#KxI>Kr$>I*@RMuJB`G9 zn$EQGPuu(YBO)YK;}Fbbu?{VqV}AI>Rd1<9cR3lSj4qX-Mx zbKYgJ2dl3eS=WDa*HPMa05H;SNx76$q&oMBTEsXa33tlZ_QwO0RsJCz3n zvxuAHTPBtp4hc6ePpF_$-2`LMBz-zwtgtAlo)ZowL3B=PpkU~n=4#Cl*F+-61NL@t z1%(1;H-1M5YV$Jce~I$nlEHoSB5GXoBIMimGNO`Yu}!zk*BssD&LM>vC3Jj{Qu<1B z{-GAa0l(c68o~?TJJTN-u-&0ce>{AhtpDz>&Ya!sGAWHs+U6Sov$IPiLb^Jt7tP1J z^Bkmu3LsVpUGKq0UAjox1Zh)bJV@k;z0{vxVfR&8PhpT&`)v`@HEX%`Dh_o>VspCR zW~u7B3=aa`t~P+~1RE$fbVc#Y*ur z9*VsEq1LNkG#3RjBb6b9btYXQSEvhWao2o*mmwn zz{9PGE=+vEIy#H-<@eAhZ zm57~_AO1{d>Jd$DQ9xQ)E)$||JMD1^vVMIyrFnn@gkZXa@Bc~FtnaGA4s*Xw; z1PPweHM3oTw8nf%{Qd1%ecH~k=ozWbT1BM|xkgsa3RJA0zkaz=_qLwnYhFO(%LC?y zBhzTlG`gx;fmA%!Z9Q5LR$d-tC*^jr@oTUL#(ftZytI#*zNe#17FN3BaMT(U2mH25C7aJA&x2DaeTyTe|9ntu1b<>1d_9f$%D^q70GV0^G=YPJXNiD4!y2zM@j0Z%wN z)Y4l6?U{Nm4O*gETtRdrJ9v~_$gbGzEVeycG*14n0@$^xL`O z?%ppjZGRikL=Jb!iaHKh82amZA2( z$L~CJfGKrFS|>}6Iy95l?eXckU-THtVw%NHl8fU{<>w)`Fmg?4pew{Wzj4K4xG5~% zKoT9oAlfT8?REFx0T0N5nAgKOT)PQ$b%``(-R#1FIfA_DC zC(gO?-yu`4+2(I=<#eNCH-ehh?5PtHe;~~)cz^q@D$!qQxe2vcTyw-F)85coqM#xR zs_^mE@OHMFLySUC4wUrQyRNE)nCW?;*AnIf3^8QMhC%PlTEWfRzj!Y@pSH#~9sYj2 zTvhRBEXBktct%0hC}E~u7v~u~wvpXF8Le^1)ym(^dETX;?moeMnQMf(XXw8|&q!xW zZk}bMjV1~5T4xmRl-q);ivhVZgoCn;Ystl>#fR3$~H{G@;N3)qf4j0(& ziw5W5P+v~G%)^9>4YCnQ?X+s;y!AK9mqTfp2Ppme#D%@8h~>PHaEhK@wyP`kZZgh# ztScXmEPl|^6+>3@P+7X@;?`u6mD8z0 z+Ja_Oa#eYGWXnvyZX+t*-`}&Yeta0W^Rm^iCNtYxFhr{8R2IdU7gj&)Oo=`zqzieo zJMYMiC5I9#_<%e_gageWzVXz0hcbH(MdGI6bJ|_(dA%<}mS#rLfna3Ec4HVo)HO+i zV@B>bcG_?2{nHy?1h)o)(y}C#N?7IL)Si99AY{r|CAKdyY`w&$pW9scy?46bx;6qDhpp+Mx9LPvi5D*Y} zW;PQuUSB=kE1=qI(T#tVLpnn;zh8iryR=OvJi`Y%^T0I5MI%v(0R18r4Y$JgJh`KH zEKP$m)ArTNW{v*u*T(;Rsr>h-pE_ymh?^k+a?X>(!jFtQFIKCI#9+pm7lTdt4tbzj zmz*zibazsnTNZT*hkd0f%SP=P#qTm(Q{_i-W-lDJ09vbago>2iN%35H zEan34=_oTI-WFP7_Y2ZwzQ3mHA7@134Y;8uT#p1|Li^FMV9yshe!(*teCN>Fv_GHp zy@=l75p7|}v_h{r?RUgWkPlhCCVK3VaMiY^V)#-3lR4#g?xzitYkz98&3ZjiOqjp+ z67lnfs=l6Ht|;ED(#03%hih8F>d2|oc9`acMgGhl{~##2_R6oIx^&-eb~@_mjy`Sv zfnHnyU4{TW`8U}j?+V^ZUvGo@(NArahu0?B>CiSau!iO-l$=h2a2Y=R+Nz2sv~Km9 zBmk3|BGu}+O-1E6B>^ZMyG*Dp9EI5RXQf>WPjczR#9>)8%Os6iE9I-{QKwhuGj0`L zi)JAOFw-7wl;;g*aU*mFa=pxLz4BNE$C--L(6F80`10`Wyi?Tf{kZK0H9u`O^e}im zt^i}20uuxQ^@fn6=iMXXLHl8Ixphr+=YFVJ%8{WT7=wdI`nyM;ItV%bZ_2n(>|p^K z@RQq2N&86PzMPG|U(IpiA#ea5I*xvi7`(PNRJ0*8;{3ksH6{a`MH2v(SQKeaEjscUm7gT0y0XnIQqF~~jo3>i~?iZ$DTI4i=z;z7- z$at6mjgLf|YPO#6Uv+_N!&WmPw%@+}i`a1Ysd2uktk+(P+k$5?+iWS8)%k)-lE-TQ zb4Y@0^YD%+|4azK`_TjbS5jJ|=DLwg3dkSs4VNx@@baHmv~cTbZiF61yrXz#PSBql zf1zdT_B|zGffF5*g#Q%ZEp8LOnfLo}7TWL0f|r4E_4NGC=#pi*m{tiItuhYw(z^dG z(9iAmu%Qs~`Z|Xz_CfzO0}T>xi_T&^MY0;2ogk+>Z#4UEnK9rBQ3WGg8W7b&`i-d5t{>aMP2h+76%04 zb=M7QF?7Zbb>DXO0s7e^5Ko9y5ezN78AiA47yQ5uyc1t8+Lx=@>q)49_}?{@+n?3HMOn)2Q7R7?k>19Q{xDp3q{-kqMi)+$oSMxl@JPL-wi zl@0i)RRq6Lu9m5#zNq3|0WVTI|;b(k;W&z-soI|MuEdx3ENU)SJ z@BO|P0na;D7hf1C#0q#sQ;JrW9zKECc{5eSz$$!8_UA~Vfh9J0NLItF7N57r#Mkh; zk8gbS&>0*TC;=hjxS!acuIpd99_(2gUKS>a-{y;<-d zk*K}yNHKf0^ksyCLAJE+w17qRh9a?}e1Fh|7(pVw;Ff&~I$3aS9Ry#?30E-26ii(X z_`d&$k42Bm`*_Lp`h&JIuOB7M#7qZX?%;Ex0*7{xpg=L|rM+xQFlcw*{n+ex6B*z8&*qOr zPz_X1kA=2GDFzZeB)V%Pv7i96#SF=Gj+~4>>XPc16XSP#o8|}RwY!(AT%T0(Pp^A{ zRvoGs?Ul8k5&;glBeF5sPJbT655NtaLJd^5gH4IIgltwC;mco-R!Un;N#jWRYGx+V z*gA`|e|h?xwKM6J$+NoFw_x4$t@claQva&Gfn#t(+K!i2lHTHSQhF92ybSP65De;M z5%FWdsGzN`@P1RE3q@jz>`-jJZK6!KNAr5Tz|CMb^fwm@ucmfypf{Qw{;dfXKlps~ zEa$P3ISp4Yuq~`$MJ7l@FJocz-bQ&hce4zb4#lC<3c)jGrRnmz!^vZxiJO5BI+r33 ztx$=?=VW9y==uGck&@j4lYkUp#-a#O%uOsiEVl$**tlf$=g?iUC*|~~*7q(T!5S7* zCOdHlh1c;n2@1l|ZeOw}+l~Y(?L+Mv1HZS%W&Lp)9G91h1w&)vK?Wum(aydesDiC2 z2x15@lV4Ib7BCG+%=c_D|Fx12X?ISFr{ot6X?O)Q6(_`{=~a>5ym%QXgY4f+VvXX|k#Z81Q7( zofVJz?z=(yc!2YF-?!_CfCqYLVLe`dbWReqXG(vl6%r{PD(>U~u1~0PTC1|p$B@B+ zHOhoAE0I1S^6H+7;wE-roB+M(etxmJ-e8rG>8d;o5)6o08OFTU^EEHSgDY5<4_pB< z;=0QSc-ypUlD8Jej3!su5!$%MZ#h@c)8hw;uk3rjqxKIIz(=Z;X!e2SMUF2v^m%R+ zRJ&h87+KAag4oG&Nocn$8hvkedVA}qc*IQ?PgTH@gz}F4Te-r>MSq|{M1M0AEYACHC>;?Y99;v4$_@8ClR6@BKohv5v{RYbu! z5|ff{(@m%#au(!#?e!uftlyLo4{h<*4xG&*;HgWuA7sNTu)|yQqqPn|MpwXS1yD-z z;{Sk4{=2gM--+md!<7Foqkai~LS$~a+_;b83&QOe2KyCN&N+lbE)!)CU7KA0Q7U^$vB^j{>nsu(DDTG`YMcZM zbmlN(Jk~rE)h-0sx_#sA?$k{(*H?>C;l3w5a$Fj(9Wz#F)-jJPc6c26Rqo*^av_WJ zss5v-e}(Z%=wPv-lfcxXdn~`GxB6(YL3_w~Y0x7nWLy<*4o?1ET*}*&e%ghE*y`sz zF!Cp7ud~RfDybXT#WBz=SbG04NZRt%)B7@O{oH5IbFG0ThT}LTo5sM9288=|wIx4> zq#eq~eW#Oz&YR>oDNUe+J-cc!(z;o-W-!ypAP2SG?z^{IEgQMfktBv*k7IqrdceI| zl~KFNm1j$CQiJPW99?Vi^MdB8?k3h8+NZCM(^n|gYlfz%?En@D%?XcwJ;rzy4L-gsJS8?FbhescYcaSWy;h^EL6YWpVsTD?oI06Xb%W<_hj(MvP z`&zN`%1RghwnCftWY6o3Gs^CbmSlVzmRd|Yn<03uVE&COUEQj(MB<_xh+?JW7n0&L zRSzdNWzo*L!Gf=gQ+=`agK{;J%5afP?PxxccKe}%ZcUcVntH!ds6V|&EA-*i81{Xz zcjH7Wit}8k@+Tt$AoVE#$uOuH3QJ#=pc>AMSYlERU3dVn|Ez*n)6@|YfxHD{<(T8SlUr!K)rA32yt$M~=2Bgach}p9apLrc6==?}hEvX?^1dDu zKZR~9KLQ3xBVS$%LObsrMvxx1sY0Eoet6x}ekz+9-ZZ#oV6T2IGl^jp!7GslMgP%- z9ge<>+gsRSCe2_4I!nnQW}Q9iz4y1}u>*O^&gj*-NT64TN3S9sT<`+i;`eOIU=3Jv z2=YCP*chOw-fxTI+q-#=KDdaeR0(5~3?6#@SiLIl`oY+1_z1*Z@NP^5GN)yB6D?Ex|kK+@} zVCmH!sy?J~2ouY7=2$1Y`|P2;GMAH1*R9i@4>Xt#H79E|=WfrGu8p$R>6WqvsXk82 zzpb}S3${RRU$MQA!-@+dU{ZW7WJChU`YVPqI9|g(`{1wXDs-AEIp*MZH3?=~t+Hh3 z6*zE(naYNq&;X(cK9lc%5n&_fxiRBXkseKSs2QCC7C4b6?n;~v%2XFtWc|REO z@D2lamL<+2wV$FpIV&YE#s6?tpXQuz3MX!o+J8UW@Y}e=Ky!oBBFA?QHrM zD68qQxl&!KcezJIb|HUMiu(xe=Ao*g(f+Hg@uJBk%CArY|D)8N=v2r+(K8%c)leQF zZje=jBe%=gY+qOy@z%WoP){LX$FcP_M?MD-5zeW|xAqzcL0KZ79t3(2Zm?wDu+42| zVB|@2C7u{^D-$0}y_NkV$Ue}A z-P=m%tqejZ`H&aATcjIOJI24bvKqUL^715kIK_c&?jGlTd@M)2XSAdfTu?hKG>RnzZ^-~_>f!3i)#!P7(&)*|cZzA|D*nB&T8TH-TMA05PWh;KTb&fmBwpR4 zi^uFk#%7bm+tK9auji5;La)5_K}%g7Eg~DD`BY2ptTWEuJp8e`e208~5d>Z%Ox5Vi zOxvUqdLA60daku;&%8BpXdAYBuE7u9BHu>uxtUwlU^=UIJgT^#K}TT2%|;<=G~5tZ zxss9DA2xbdRzIg+jTGifFYK*s;JL}&F>7OfyLxz;k43;3AwYl3;R<#*m*A|i?`_mr z>G&3CZ?weQb$cL_vKgOYPIP4^ZTsEJW_1Oug zaAH4Q#pR^dr`T~5`<;T;U~VDcZCp{Y>Tr%ee0#_fDHSzXIode;GsU#-@mkW8&Y(9s15 zaV6v-mbs9yC@ufdB(;B4G!gR*{<1gMA~d_}@m`dQ)8L)WG9TX8OxA%|&}d;TDt&ql zdg%*k%opWqmuYg}kKZK&P~b_A=(e}~F1l9raG_t0Pu}NUDQbXJTg^l%(mLW^nIkCe zC~^f$GA2Z~wQ%yMDy2V-EGsFopT(*pF_#_Xa=e-RCtV^UTtS_tQZD8xZDpYxMlXj+Yyo?B#l;b5+$k<+I9 z++^qO{l)atCm2eLVc6l^%6h24i^cWvV%3tHo13%(<1`2+PQAs_dT}-%-+R+j|4@3` zdA^?2QN%b5GDPH$@$W(TB8XwaNo+=|G=7HaKcn!xFg|UW&7yxs@=vvqwMuFBiaz-Vwh>X`s~s9e2F3AJ1^ymDe1JMA zKpMAxXZgRT^SC+HJ08nXrSt%V`aB~i2Z*y4-s2qc0A~^mT~kxjy>X^)S)FD(y`ia0 zUN*NS*r}Vzj-OTSDk)WDlO3je26P$G%dynz^C%bSZGN6rjTR5$(x;hO5Nrn8;;v*_Y-Dt*7@So5iLG_5<$Te?zxS8<#abiX{>^TG z>tVCNUDL^iZ7LlbUEiqop1l>Sro0eQWC~_m3xp9CH>o&_*KdGaMmAHKWpM&p)Wlgn zcjUywz3M(U8+YIN{d7taKwu0MJ$WviIxs+7_fzTT z74Wzbf1GzPd7mbT?_1UxLb%%e6m}Ylyylf<-Yor(g}po#+{v6^FOBHv15Nj^-F%-z zBh?g?JOwJGo88}tsXDNa1%FLSOZq7U2xgBW4X=_5?G2BaR-c4Vr|q6erS`H&V*Vo$&jxMOg@7$Vya`))j$Dxu!_^+4V?JhvQ8`0fWlU z+eq#tKfrfAk0X6#6f48)MyDZ8Xfjfb|083r)A@9+!FIjLbfzJ*)orFEELSPzV=yxz zeXoeq2*=WuBYM##|ExY|UYAxxPR?jKvNk&As7YffoJQs(7`Ul`6z6n1Ua6a6RlZ>U z?SMK08*rku+c6%@BS1S4(fo1jO(EjE-_aON%_JSI2K`6f*IQ;V-B(k5u^*fTs~_Hj zyuidU#Kakt^>a0bD_L@`-hBD)aC~09@*kOe!mEEQJbX}Sz4dFY%3#!k+PYNHF5oe! zu&W^m78ldC(d2y0fdgO>Z0L@cPUW4!SO;P#n=(UcEGtu;CdD8X?x$B*3iCgV0las= zjmuMcjvVL5)zqDxWM^gVtv;Bd-`=QZG+c*)_k6@3T_Eg=!L|LCA~m0& zrl+6C(c#xS^L^hSaI<^rZ7CiWc0ubJ>~D4(8MJ_M!CUTA;l$5%tcA=&S$r|cqH7u~ z>!>VQTs6p-fTE4D5q#)jpO=(sZ>0`f+&Ou}sO3`lmMKnHy%%{R`V9G0_z>0Q^9JKE zzrKGPsI06E@sDo76aCuVE?V6FT)7@_lTSapGI)OsBn%>qHU>glsN4@epL zLg6kxJs>tM1R-JVDpxQwtgB?ZBjfRk{uBzFrw;Ue-ht-id3UDr z+uu4pRn&}F;^oG4y8WXY@MtOG5nP9EmByqG@FpG0w$6Rex65Xg?&rM-U>kUrShKtQ z>CMHDqgGxw{1I#xdl3)fRU3B1dO)plX?QCVuyI3mwkWQHx|EiQ@1Z_TMN9?bmux_3 zY9?Ay=}}`TgKa5asRYQ5D=HFv9+%-8MGGYTHV(TLrt7a8Lz4n*>qF$5HLB~bzK?Oi zuGqEKaT7OJs@)-eUNIa5E%Z4YeZ^>lV@SC}v93yyP$CSN+k%3&yM%t!O?$z`fQWCA zf!+ytMH%!?C1p*>ksj+y@g$cAk(xKPlP6G*SkX!evVwmXR7&rUrxgZAB(Yi2ww#6{ zPxwBnjzQu}+y>zkk#z-dQCSRX*PVA3{byn?Cez&$Vp8-rtt!SzRD_$(;wyzb+4-3V zkylA{8b#kRF$?AaeUT3j53<@auH=NPrKP2(4<|f%AHaBoJj4MwtF>DH0Sp!r`Wv86r#o7BFbs#e6uL5PG&y)b(UW7zmsZ;50J`Iq=3GvSBk?iG)OfKQ@L1;od9V z{h$Ly!d;eH9z;&A$)m{7FD2WwU?PMb xbU-(dfXx3RP?cl$Km9EFe}iEbGEkqWw&=~PN;?@}|9)VDNr}mWszeO@{}*cwaen{+ literal 0 HcmV?d00001 diff --git a/mederly.Android/Resources/mipmap-mdpi/icon.png b/mederly.Android/Resources/mipmap-mdpi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9b1d25e25de64c1ee12f91c9b41f85b0e84664e3 GIT binary patch literal 2807 zcmVV%+Ahsfn`@<87OU$M|p)R8nh*~mfD9x3|b9X zVyqe|v6VJPOicq@OC(q@n0D0&wvk#;wAN}-Y_vs;ZLwjyZ7C42<+aSd*w@U?>(0!* ze!p|?cjnAxc6P`9;~)LVo%7xA`TM?e?z!hKLcCA!ci=sBz^Kx@TKg))D|1J2qcGI~ zlD4-UY@a_qQum91VO-}3JB;|8&1S}z)FBJUr{i0UhA^_WW3&w<6JI;LV#!I*olShv zN^i$nfV5kFpndj)`p7>zQ&w{_Z!6#k>1YU%SzaCl9Z9)j;9nOs#nifRY%r1h#4Dd& z@(yG~x~nVk{hGe}O1DNsedH(S64~Zq0m#jnJDQ71 zKb8Vyu+Kc-wxTPYTW)!s_Jc%3&dMWaVcU_q&vtn#y)&J^b@?BUe%h1yL$RqE$5Mc3 zX=yP;U1Vz_S5S`3_`44|12%l=X{`&${Br3-PUsDCIFZO!nUj-L7)L8WLU`kbJ2&)Z za`PFO9?$U5_^?Va0K`7B`*bH|EYt$&MRljM3twKk>RwOn53P9#QKU?>D(0DFgVF` zMonI-ckLkqC@de%1tAobllP>p=Bq#S!4@(a5j+Bnq?Gboo_XyWW5N}0(ZgE@V?X)3 z54{9TKNt~&3xE!!gM|)MDnq$0O^Jk3p?GTH;V&*d>xo$9-Hx(^>Kn)H=<$JP(6((0 zyHF4Xx-iNMGVg81;8iAK02Ka?^vjcvdvQ!a2SV;@cPdv`+gSgoCep)6o^5r7l-=>? zwi^?{@JmD4{AD­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 SHSs+F0000i@UqKyKMfI+WmKH-}Yf2 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 P@D>J7S3j3^P6 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

Fpy)y!S(AQHSG#udd_8#b4sQu!R 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 PgFh2POM|ilu9yD@)d*=D literal 0 HcmV?d00001 diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png new file mode 100644 index 0000000000000000000000000000000000000000..9c60a1761dbf62cc2a45ff98b9fdb63ade16e4d9 GIT binary patch literal 3773 zcmd5Qra_NbPsUDT>o4MFW16^bHa?;thPQctK&rS>W+B}UBFt`R&+h&_v< zqNm6`y<|S-VgWQbM8I&)BSXlEX)moOgESS007X~NYC=GBL5fH=>M|1yXw?m zq4m-+(*Xb)(ah&AbN~Qrh_Rl|6C@Sc(Fbll$ODEoHa05eeN}CVZs5B8sGzzmDNEW~ zrrdYNBJPc}N$y=)5o4)|GN~qIZ6hOX;n6;};zGQ055)_y5z zYO2#i(6%l4gOWE96?MFESgQOf=#EDju3pHe+6j#F_bp`rFPTLAZ~*w`YEMUU!o3U) z=imMCu5d^oP5XWPYz50%e1OrwpG18q?7qLMM{6rRkTSMZ-yPUqx2 z3(FU?z|p2}-bKxpzo+k}#D4a{wtF%ko$qnYOe}il&d!I3Q$>aO@u;}<4lm+F+R_sh z(OdQ)A97v6kh{mFE$f>6I27~G+jjWfnymB;py=FMf6R{j;E(O67uJPuFU4i(5FjYp zV+k$O-tghokizW5x?jWn@c^3rlqqYi8#{zFnm_*5v1&>GM*(MB|ft51-fc_x27vEDaT&WVM4yT7* z?SpjnO|fjao$Yj4>t}qZ z)MmqDMipBDH%w@hgh^t&>QJn*S|;yfd9L9e#!hO@Zy$&B`k&~gEIFs=_~VizNh4R? z)Sch(QV*6FHoaYD8Ocu@b>Wxv-`ywA8AVxcn`RaoRi`hW$z+ik$Y_ZcR(V$t=aTOv zdbdY(e=8Jt3<1vZf-?dEPTm3KxhEwpu@Zjfc0*U7Rd1QLvqAK`ox=}hO`};Lzd*WS zL{@yFsz^Z@w%zf??Hl&QS5!GZl(8G@RO@^c`hz1-+O$VnXS8}|xlyks`n}!?B^hfv zb3#0x)JyCzDjS#!o>2;1H(LKN`GoE2JlmaKM0&kj@YABf&WX<1OU%Np=lG#wX5cX^ z>xfyVWNnv3;6&OhpzQJ9|UDTOJIb+?oBAV_O!TQGd7)VLm;YtQp zTE}Au9Bs<`TV($VN~R$r&9=E3?EP!b%l68bO0UnJuBIE{km#=rhXQMCX(jKkiU+Hh z$009o^Dgt#(snl5!Y_xJPp4n;49r2{vRIKN+5;=5;O((VSF(pw3*nnGr(Kr{vUdkt zkkWLdv8;n8SfL6_{bd@r5$n83Bo{{3SMC?3_Um+oiJOmQ%U!-)t4+E$`**EBWe^Oe z>B^O+E1a5v0gyoOwaQxpPd42b1jn5qnGXCWR3&kch{jM&#nIIQ$JxFbfvFCJZxXVX zj$CAyWfGqCaD=Xjvo25ZwKKaob3nZ>WPF~lV0(Y?-<^2abE`iCN+|Vi$}in*Xsgd2 zZldO}a-Y0$EwNP{UgD^p>dF26_}*-M`)BF1d8f}x9Jc16UY5?9| ztV>Gx+R>|%J!Pj!gQN=!z0p|dQES4(AEWzHcER~Yv{?^Owg_VEQ{;FyW5DaZug0)7 zDJz;BD{iyyS{mn+ygi#SsgP(xY$;#;XC3oWB#0uT?aO|vq-2)SloJxgh#HfLY?AWPjXh=1OKT^9G zKn&m*WOu+y#|bL!kWO<4pXu|C->IPb&mz?O(7!D#XoLL^0rD@%92Xuu5gpOEP%~h= z1oCM&{H9q)L#$9(lEcD8F%62!ds+*9=X~ZBddkXbg|}{My`4htHBYXzvKC>hCA=aw zFfF@NcV+il?ng9Qh8IE^kfO1hSc3+XsqALhZi|BY>bOK2#wk_MVBSzrMU+x{z0Ad}XTj5-!%`gC&WRQKr>+cL`Q(Rt_Q5(P)$c zz?HVNCtLA4?ICKBP8_v{H8VG_jq=pC2o*seimT@JV#4u;gc$sMa?_tZ*xony;ZTxw37#vrSfi7fW1wPy85{bk0VUz(Rl z5AdtLAQ+MDZB$M*Zve#-}D3oZ@ z2djxmI^0PqUrMvTDQiG~w{pSj5{ejgKYSNiV5K@V<%$Ekj2QH?RE8->x9hWChn;r z1>^3}!X}>U7gK4lfQ;GDx)wJL6f#vXnY&WCYCrJQdsRN=|GIpfoJkx_v1Sp$H=$IN zbW&Pja15Fbf)*&E+;?rtv&9L1gmRYH2(E>4@CJ3hJ4$vfUw0irn@X2X3DB17?pQtq zthET!z{f)P<^;tO|X-I?gR$^CuEXBj-`*)xqM+BJ8iW(%9>wH%StEpws~;g! z&Xc6@%j#+WbUa7=Gx7vPR$wOHj$E+?=Y8f)u8%)wtWb%RDr~l;4JhNS*FPw}Lpu)% z!M+pat-qf7(ImySZs}TbnFb*k)y|-iakie^kR(6$=)I)BdEDj8ADCzSOQ{vfGAiDR z32WU>Jh%a<93;eZx#Q=X=N^0k!h^nN+T8$R-H@hnn+Udj1G%+oDpeY@yTI%hNjXJl z)JJbmu7|vMzAE)?z`ttSlnRmayKhP(+3gXC&)h<}-1u)<(`b<=8jt1noEBJK=Hd|Q z74+51D)%1a;nBWP_|xsqM}owg;`d4kC&AtK-O05m=98nOm3I9}$7A4HFG7Da)QQ^- zTf-qV>M|4F3FSH)&4yGtI;ls7nVqO`nSkQdBRFd*{I~0M?ZD5HCDO*As5N9*p?l@v z)WRpky&MEItf(jtHzG47_1X>OyR6p(4PW&ZvE zRYAjG6V1>sJ3u*hENp{Ms(J`pd8h4sT_CN{e*Xi^|21qEKT8Z(EB}sCrW`o#d!!_DOXyrGPCcdB5zT0 z-q4cs3-Y(EES^Y9LAo}NklD|KlHaL@MZf$x-0{+xFmG(M^=whkagr7-f15pK^dNr?i|kroE1@q#5K`X{fsJ|UtGs#x%GPs_oCI-}P7 zG_UFl_9vaHvg83DjvhztV=M~!{c9wa1;0#CPqZt3GVyqEHN;9GZRazd)XEgOwAr1x zaccQQTM9+-@^xRWPsd!IwBOK;ppxq`Tk}EpA>Jy~a^s1ATI1Qu_JQ)dze9^c2F^O? zlw;aYs5;HwQ3vu^yw0M@qdPt(1`ShrB`r(v#1b@EdkMVzwm73l)Xc+6_OBJR4dI!AY7$>yT+2t8XKcu#+#&rH`%J_AIBCwF$2NQnP< zH>_n&Ijv!waYBUTS3ZV;ZErdA#!G9-gV>$Z1`JX!pWDeNR0hb@(PkCD+6bx>dSt9k zb5|U@<~apm-~&mGso*VLnF1t$2t;G%I`sczbj4QjrDu@J?qcxo9|aieo9op*bdLES Dh-f%Y literal 0 HcmV?d00001 diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png new file mode 100644 index 0000000000000000000000000000000000000000..448d6efb577d07e227a5c62545173ddf6bd86b55 GIT binary patch literal 4750 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 literal 0 HcmV?d00001 diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png new file mode 100644 index 0000000000000000000000000000000000000000..8524768f8d764da7e9c452a444208708f2d18ff1 GIT binary patch literal 4692 zcmdT|XIB&4(xpTN1*K>xQbX^8^b({KIw~rHNC|`@2%(dJ5D-F#1ZfEYiGV0lq(}=W zgc7Psl_H9vHvuJ7z1-)%p)6vnfLQD;Bp4zg1 zAEvXXcM#BG{nP+pdX{>0bT#Q0j$O{s(Q#aW80y^)qu+Solk&js%GX`#>--*?1>hBn zylj2Bl~|w=hswPyL69*gD{tKnqopZQY+Ok0Wi&``_+IL55R?xKc>smnzEfS9yo`Q{=^|^0;fo;{d{hqBCglz?TcMBUE zv9qCXytz?uTg*u4#tlljAzN}Z=2nHzZAGy%_zhVGGpm|P+pa8pAAJpzq()b>@s(R} z>2qXI5%uyKubl;@obSI8@VZc*jSs8>75IYaJwEbpU(ry69>yD|l$U2d20L+%sS>{i zsSICRml49T7GzA*+lM?CZ_~6^^)!No`QYzJ%-}6)O^+lfdl+G z1O?m!ckdDA}b>}*SY^H-eW-!oJ#MwHFg>6&At;9qxdriX`yY1d+lkmMg! zbjZjbS%^n()6yjKE)&;ur^F2bxwkn6FFoM^gqLnWZxS>f|4wJlH=b2o4-Lxfd^<0e zz^_NU*zzAI3jcRGyyy5GjU?&q(WPND9kUGKLz@7}2snY4M}FIf$QH*ghL-*jzPb2$ zfZPGTkTrFubtmHyXOA5Bry1XzDL+p)hmFSY)mk4*gqwlmmF>S zS+6Vi7>oBhNb6~6tX}0;A^WbCa9MbjjVhSa{Lce7miezenM|Mu)0JhdR@?mUvSbZU zq$p{l5F@Ky=t|-zHlfycS;Id~J{+F*3z7_-4P;x;#PucfvxDC!H?r#%l4aoVTO0RK zICSXmLZz1U?=@vc;C3jXDNGe41M&r-BJK&U)ieK&C}}?qHsi?pi^e_1VMxMD55KBE zB4|ats({#-#(#7n`cGza(VjkBI%y5xz`P~Gw7t*%UhwsuXZT$l^}I4|ezRXla$6*= z4b4T>R@8RgoS|5fnHBgyxLA{}I}-vb&NwMmjX5^?-|^eI9q*$!4%Mj`79UNBh{Ebb3Wc!z1tI(1vUyP1+*7^(4&1yM?CgM^mSAh?2hHosE$M}P*C_29}omMN5 z12_~tF)$?J`Pfb7S7Ol;OIJ@M1|NS#swII$?TS%{PGGR-pI^#;tU6fVx1KN#M&@MvKk4-Jp&tj7w$N( zUkNq6ocd|jckZa+JEtTLx!aNEOs^Bx;U<&Y0+esu1>>q8Gzf+)WjZzB%o>4Pa%hEs zY-v}@!TU|d#Z;_FA~>%`Bj(etxw`!TE z-H%3zyd5F`pvUxzP1g=4fBqrm7E#4@pCy5w-?u&S+@c*t46db7I>wgduD$k9F`h-- z8|En#lIX8#wVV`~w(NA8w`dhhGKKqnaE>hM!=Yn0FMfh@Gkd%P`u{M)#cORv1DCHaJUhdI>IC>z+d12<41E>}{%v^kX2{^jY$+)k{d3|iIYJS_{^L+_5#=E11KJ{FDFv1W&0AY z?_TrXK{$m%K3YAMh&%{l+HhC8HZN~!n2Dvl4B5M2+HnTe=D(hG;PCF`n3nVfhI`E= zqU6et<>1JAvWswf$Gis9`hIWZPDAm;X=QS4#pVIEzad@vP>m}p?#Aek% z_oE<(AwZ)LoKljNMO=Ww$VAFkGh#5xWG|&k*1@^banyC+i*vm5P#-}Id8B5y%X|DY z#f|69{Z+KklHPM`$qr8?G)4Uq`pXLeTiA5Z9qy>9xZl-aW2pf0fK=2sz#R(!nxEn= zg|4{|6qU()T5{}Zm{D7MAe%YE0vxST9%ah%YxPXD>yg-N_i1pe=(ffkvz-zQtrLT7 zr&*;O*K(zPbX9?R!@nT$ag3)GY@2TiVN?dlwf9SsC)|KuYe0t8@gphVIGL2MR&-S0LZOfu zz1pW@U*WUq8i7;ht%)tl>?T8(MC|%=G^d7UMC|3L*T#=o zZgwNH`W=8xf=m5JawZUNo$!K%M;#%PPK^?ycT_1pq8>u0la@2o3zUWjc#brSm7Yns z@>;{5shEk+&a{tPfC{A04V<^#jWA@t+n0;TeE#O6TdSxfQKJ8JBm>I*UVU@`baL&PzJInq zmEHH~@Xn9?d+^Wu)}cd+cV*w-;BVhCJ5THdQ9VPAGVf;i?r%LVh@#nk(2Obi-_In; z#Cp=)F|i8DZfV6p`w{%$?4R>|K%=HOwp5eMRQ3CxsHQxDYVZqJaC=&40{Z`OX1{?k zBq8x_(aO(8+8Q|xLo63l>>j<1miKe_As)PSJEw&e1n_LZtz(lyWH*1DR6kIVS^U@EfkZD6pvdN%6MsTLSwv6i5>hgZ=tqX=5=EW7u>)5%{#%5ASh88%@$m94oJE(Rn_ z5@A~q6cEJ!{=%5$(Z~fj#|s7dg2(b+){7cJ%N0WI1NUk2ctkAp(gI0VSU@NCkdH9O zLJ}`)4w!LmPZ0$DqbJm;qDAkVT7x=VmI=j*x64gC?FGFat8!`H?AG2}%!CHki9{$Z zY5iNo6h|!>4}VKwYBdd-U&4kN4UKKcg<(DmXjI6eP@*~#@fCR~2b0@FfMO3*^l8;e zCbDH#c`J>$GNFEMGsFFF38pjXLhJe2WczfNoMDN-(X&P7J+ zwIW5tefQGvw<8!YIzO01{U8I{4Vhae^>xi3dGt-6_q{Hw<}UUW$^1X+R8*qY`#8>8 zUAh{$OyrbULuz`bomFpon_e&@{q<*w@^wBeJxc@~-2?j*?BMSXDjnot?}G(I;+1J049jExcd zo~6IaL@XT@b$mMcO&SYc`8Tot&%9jy5#kg`KMLw>XR(EeyPi}Y zi!B09N~kd3RcxTj;OyZ_8e@xNO`JG?=p^eRV@JZ4!BtZWE0ky9DeY;}?BN`E*4~!3 z=RQN^Hfznx9GdF;o!GzR;ERcn7SD&-T`kuQOVoepQDJjQGyp5;`JFIlS?wrWv&gYF z2_ey|T?4J`Rjyy^UUfRYV^Ba1Hds2^UcQ=>5> zshQcP%=BU~v-du=et;~zUrL>!+37mr7K0NmSfq#=>qAimUWuWmiSy zGC3H`hO(k3JZ4V=XSux+v)F9lrGQq|HRBtUm2Ok>7je;;>tf&P?bS|~6l%uzL1L%O qQuI}W&FnVtX2s7O|6Nb``GoL3$B3jnW^%eFqJtP&8CL2$qy7ci8tmx+ literal 0 HcmV?d00001 diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png new file mode 100644 index 0000000000000000000000000000000000000000..60a64703c0f11d08705cd607f7751338707f5919 GIT binary patch literal 5192 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 nB>N_)Q7iwV%v7MwAoJ}E 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 T3-0p800000NkvXXu0mjfSlal| literal 0 HcmV?d00001 diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png new file mode 100644 index 0000000000000000000000000000000000000000..1ad04f004b638bf781012290d78e4138f97bbe5e GIT binary patch literal 1761 zcmV<71|Io|P)4P%ubY|S^%$zf~ zmwTOa@12BA$oV-Y9!V&U%c=j==#_}M2ylE}1m>yyDoGsZ#Yy zNX}RO*f(MzmKS&u`qiajIyW{Y_LC%m2NqT@Ic|QpvYqwNgBK7n5X%c(3k^?2>EOA` zqGaXjE7H9BiJ55fh0iJRW}@=&(@R^E1hLB>kE%PS6eP@VZVdtn(fh;5DPKg!j;fJZ%)wH{Wn#~V&#n(o1URS zsyS`0Tu2m;-H}z9O^h`!UZAFr@?0a7Z;pYOi0uZhgzh=rOEDi`FIkKtVu*gEcSM!h zmb#_XR$akjlg$JI75MXgWkG7IUnYJ+X=1J!qJ%jXVj{L1I2QU%?=?DgV^U?)92DZm zV?>``xT1#kZdgUt!2n?|0>*6ae4tikA9FAlJ}kjmMQm_z3LB5sZYHBKdbex9_Hv@K z%Y?q@9-)b7vJ6X$3h0B4tH__=#*`9^efY@IQfghn*=E2Nb8sR8lrQlu`Ca_Rmm6>Z z7bkEe^w8M>x;hoNUvWu_GZJPVpI;bMTsBpf(@U$Ch(-gk0T#WpsaB1{7ISQ~Y48mW z;Nk?@LjM_?q{BV-D=veoOmJoncVDC1GwGGz(O5@o7ZkGCIJMPO(7K9b6M_wF?Xqd< zo4J6KF0_U2<1=T3x0qc6G6#g+^=N{QTpChC!GZuCY*|eU{Rw)LMN7a2wwbaCdn_dE zzy+Lip(XU4-+SoTFyEcnH3?HRV^%-;Ylx;|>8v&^Dy459ZJ_1zio`68!6s8SO(6sq zaN75WUKiF9+8MruR3=w5)hzA^Z1clVBuXc)+8@e);xX7bfygR&FsIIt-gQ+==(c;S z#J*CO1qZBF&M&6TRmskZXaMOU6&?jn_(BqY5 z>Y|^?uOh;yp6w0QR1`>tiEz_-{Zu!N#(nhRndJV$7;LOgPyZQ*J2yCin+~*u!qKj# zItsG2IDi{ZH+E6j=D|ht=qWxKNxaA6E>3Wna>=z1gy?*#>|g_1^BGspGro&OWRc(k zPP)(*y0WZ7Z-kICr3#g7($P*LCjE>7S`Xh~s!b~bPTo0XSkRm2T(M`QZbv-`Imx*Ulqk*aI* zaqa*=>61?nFb8w3wuiA&zyVyGz>!cm-pY3xEsMEiY)Th4FVrtqWp%V~gxW82)>4^N z*H{>GR?m$^s6BN^M=4^iEjT7(gM(8z7K#9Sn(M_`)oSH2zHDCla&cmK)bb|4nAMIO ze4S3gI9L8AD+T9c#C8K8JF)I68NBWK`5pE`q^OR#h~-u!e7P2i$UDq7^*uZr< zbp8sR<$nYxb8EKH|BltapZ^j3+PZt_u^PR*lT6;TCNxu^yFH$j(!JXvbmHfQ>a0>O z+2k{tOWD%ln$M`tD&>+*KBKvmEgi1;jOwgXF4_DG_&r&PcxYTT00000NkvXXu0mjf DptxI> literal 0 HcmV?d00001 diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png new file mode 100644 index 0000000000000000000000000000000000000000..2dd52620a8f15577e56ec7fe8e671988dd17ab0f GIT binary patch literal 2537 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 literal 0 HcmV?d00001 diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png new file mode 100644 index 0000000000000000000000000000000000000000..b058cae2f440e5a5875e45c036c99f1fb6356046 GIT binary patch literal 2332 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 Kc&(xHv;P1B$EH01 literal 0 HcmV?d00001 diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png new file mode 100644 index 0000000000000000000000000000000000000000..4954a4bd33f613d45f74dc0b12beb516e3b38661 GIT binary patch literal 2758 zcmbW3`9Bkm1IFjp%zcKjbSPx1iJT2#jw$8XupGH_6Pa_%ghXz$B+5DFthu6mLe4ot z&P8+P_HpF;_W2jSKRnO#)BDHg^?JwMMH+Ae#eo0-fE!_`Xa0As{tGAj-}dYL@%Zns zy24H206Tby@Oa7NhkA}!dczK$r?iEZ$Vhk-~@_+0zcnhHN1L<7SAz`^F^nt`pwmv zI;#7fNKRBqbi6#R=nWp3-t74^oio)O;EmZe%xSE-ft@G$^pS1_xV#<%J(m%H+rQ!* zeO`jU&03LnPLHln2g*P?)v6~sZQ-n}D1!`%X!+++kd;pV^S*5Se2>5=Z`KM3Gmd<| zJF!(*?{;#~qk4WSj+3+crGgdT6Ejft?G(>s%rr;yx#obfA_zOw!F@HHO!JVZp zf$<-eL=R(cgna67o3&QbQ_Rv*Q3p@(;J(R=%OVA1GC$(xNcNjoL@EYV2i{_r-2)EH zuPBIa^h!{Vodg4CW|9W&yI7UkliwR^OOdj33md-r{pnaxx#u8hxDfrw)Zji{*2~q+ z7s#&eS`I3`P&rvQ&9R3K4UCVN@WZ4U?cRjaKLs$vHD_)tQkkvXQFSJ39(>pGT5kO? z4$r!Ckk=G-IQ&Y{=&Q&r%QB(f*eAJKW1+G4^)wQ;;Is5kVTDO(4*m4+^SUL0;l*&a zR*i&l3aH4_<=^bf)VUI&RnPTvXd#uOHx}H?N&(>;FqeU(mz_40%hZ07s+ns=(XfmN zfa6EuMsqpK`5mhsIfMX9rY_}S%S_p1G%+J(e4oCGhW1~|wa{pMX9%*zz(O{Cb)i?- zzHB+y_c>Z32re>o|HXeNxpkmC8#Q(j@b31u^6f428bei>AXBC;6ayPmOOwHH-KPWQ_;$cG1QWdMZmpVBz4>j2M>~_Jmn`f3U{Sc`+6wF7O^SA9Txq7z6%gi&%=Xw% z#e7x|hba_?Yu}$U_?@kA>3mc4bY9&a%lK|Pg0XGE5unnOc`#(_w%fVdHcXxLp8j0Q z*qWsYKz4{YZ?Nup!t@>mgADqL=qOE$H(>+Rz9-WF895)?l$n}Md~Wrhwf_{7p&9f} z-E%@I-SYD>cz3nQa3Awe-dO*5|5<<0i?hRFdus8$thon(4#!b*Ue&2wgwMe~=|~EcV-FCW^eVMd?2* z!RTvDWs{aXYqR9@PPod9mI^vYmjn6mlS%GBU6bur7&I~?Yl_w*PSxfX3tci=)sD!$ zbid|y14KETnjx36kq`iA>^~T-LTf;u?U+5r6j%+=_Ah8+<>(MR3$I@Pe=v|Lw}Xo^ z0g)a$zHcy)U8+X{^6#M>Qix)zCRhgZT?$!DaqiXl7F!WlOIT5C1v2NBQ=-?n%|+<1 z5828!%oV_92uT1|EKEN!*fTYVUy)my7PkJZxfWesufbp7qe8Ttz=q>^ zUZ3ThC&FHZ(L=ty~-bcQytnTxM6SsuPt zx4MsrKD)N6{UoC@_s>>cuJ?Q*b9Iw%A96%N))!B}U}C6bvM4@aquDr+TfQ0T$;YA{ z(P6a9(KYIQyLk8CiP9aH;qagxLZi-H42&%!25R#bg`~6dG!I_>rRBH+ZUshGwt;%7 zClZx|gp^-oY!vVGl(p%Z+R>#2&ZSFyBiE&s?L+a9JwTRjO=d$tH!)j)osWL~$c9dn zXNhEEPYc}*l;(E)IvN-K_y^j+4{%r#@7T~%s6#0X=AaBDh!RLs8Ta_}>1axha^o6` z16K*+URzT!L-mK&b9FJ1_c62QH^D*j#Y+`vAK{xanlRIv`)KZAoaJY!N(D(`U2PBt z_MRtLeDZYH0ei;Ssrqg5EK_de^6vuUf;nPV&Bw-dv_Y_ae572`i410XSh0qh`bdh~eju;=kTI2--?I;!N6U8+kDt!vDkUU2suB3% z8v)2l$ZyA1J2W%uQv&a5h-^_veL7R*_rokWR%MhuY~rz$xUI|f_lERZ{(==GA~mR0 zK!H(Xad9WxqLbhrxH~QeZk@-8nqk~Rgte8gBVv)W+4>VJrNt5M(O{I4AunWN_spXO z|F@)8#>+kLlHPBjVB_fP2-f?L>o6XnWvTiO??9z8QB5s#%yzG{W_qjY))A?T_ty8R ze$H2PtgwU6!nCZ#Okr_}3!k{8DRKo+$F!+m@#~@k$?1NaExb2d0knV{`Vf}Z&5922cL0(H%cf|9Zp zF^~f7>{S|WGrQx-QQbI=mjgWF#Hyh3uN>dh*Q}ivx84}*?r01~V1n&ov&@riGnMMt z?JbJ}kJ0(M2e==tN8y6(^>1sVq^6@lq>I(;-o-Q!@ECB$=h)Z>nRU9cs!05~E~ToL z6~KWBw*XJ-2iRoZv%{pl^O;`bz3^cSRo1JybN$)v&*Idczu#*&S77BE^Vz9s^*fvlW%}$lz5B2&e7W$MS z%%bwZZ9W~Dr{Pn_*{lkcF?6I?_rP^;z%@-rd^wI1&q6 zYu38JL*FT;Mp>Tbrr0;;GGpJ$50brQ)6@u1r~N2D_HQDWrcotJ%XovVOGuX&PH50? zd|9`iE|d~B62LXh)5H*Mgbs1pg$IT$s&Siiotm8!j`3@dkWLBn(!Dr^PmK>VpZ?ri z + + + + + + diff --git a/mederly.iOS/Info.plist b/mederly.iOS/Info.plist new file mode 100644 index 0000000..9efd0c2 --- /dev/null +++ b/mederly.iOS/Info.plist @@ -0,0 +1,38 @@ + + + + + UIDeviceFamily + + 1 + 2 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + MinimumOSVersion + 8.0 + CFBundleDisplayName + mederly + CFBundleIdentifier + com.companyname.mederly + CFBundleVersion + 1.0 + UILaunchStoryboardName + LaunchScreen + CFBundleName + mederly + XSAppIconAssets + Assets.xcassets/AppIcon.appiconset + + diff --git a/mederly.iOS/Main.cs b/mederly.iOS/Main.cs new file mode 100644 index 0000000..7076549 --- /dev/null +++ b/mederly.iOS/Main.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +using Foundation; +using UIKit; + +namespace mederly.iOS +{ + public class Application + { + // 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, "AppDelegate"); + } + } +} diff --git a/mederly.iOS/Properties/AssemblyInfo.cs b/mederly.iOS/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..d049928 --- /dev/null +++ b/mederly.iOS/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("mederly.iOS")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("mederly.iOS")] +[assembly: AssemblyCopyright("Copyright © 2014")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/mederly.iOS/Resources/Default-568h@2x.png b/mederly.iOS/Resources/Default-568h@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..26c6461e50acdf5342b6d3de82513ad48e562c4c GIT binary patch literal 8884 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 literal 0 HcmV?d00001 diff --git a/mederly.iOS/Resources/Default@2x.png b/mederly.iOS/Resources/Default@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..dbd6bd3e8646fe4dfa515cf345cbcb30271ae103 GIT binary patch literal 8368 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 GkpBQzOK;x* literal 0 HcmV?d00001 diff --git a/mederly.iOS/Resources/LaunchScreen.storyboard b/mederly.iOS/Resources/LaunchScreen.storyboard new file mode 100644 index 0000000..a639c2f --- /dev/null +++ b/mederly.iOS/Resources/LaunchScreen.storyboard @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mederly.iOS/mederly.iOS.csproj b/mederly.iOS/mederly.iOS.csproj new file mode 100644 index 0000000..be8a1fa --- /dev/null +++ b/mederly.iOS/mederly.iOS.csproj @@ -0,0 +1,136 @@ + + + + Debug + iPhoneSimulator + 8.0.30703 + 2.0 + {27ED852D-6533-442D-9117-D36FCAE4FBB9} + {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {6143fdea-f3c2-4a09-aafa-6e230626515e} + Exe + mederly.iOS + Resources + mederly.iOS + true + NSUrlSessionHandler + automatic + + + true + portable + false + bin\iPhoneSimulator\Debug + DEBUG + prompt + 4 + x86_64 + None + true + + + none + true + bin\iPhoneSimulator\Release + prompt + 4 + None + x86_64 + + + true + portable + false + bin\iPhone\Debug + DEBUG + prompt + 4 + ARM64 + iPhone Developer + true + Entitlements.plist + None + -all + + + none + true + bin\iPhone\Release + prompt + 4 + ARM64 + iPhone Developer + Entitlements.plist + + + + + + + + + + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + + + + + + + + + + + + + + + + {CB25451C-4016-4C9D-BCF9-249C1E22F596} + mederly + + + \ No newline at end of file diff --git a/mederly.sln b/mederly.sln new file mode 100644 index 0000000..897a353 --- /dev/null +++ b/mederly.sln @@ -0,0 +1,83 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31424.327 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mederly.Android", "mederly.Android\mederly.Android.csproj", "{6C03C198-0B5D-4F19-AC85-980A79E16153}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mederly.iOS", "mederly.iOS\mederly.iOS.csproj", "{27ED852D-6533-442D-9117-D36FCAE4FBB9}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mederly", "mederly\mederly.csproj", "{E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|iPhone = Debug|iPhone + Debug|iPhoneSimulator = Debug|iPhoneSimulator + Release|Any CPU = Release|Any CPU + Release|iPhone = Release|iPhone + Release|iPhoneSimulator = Release|iPhoneSimulator + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|iPhone.Build.0 = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|iPhone.Deploy.0 = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|Any CPU.Build.0 = Release|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|Any CPU.Deploy.0 = Release|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|iPhone.ActiveCfg = Release|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|iPhone.Build.0 = Release|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|iPhone.Deploy.0 = Release|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|iPhoneSimulator.Build.0 = Release|Any CPU + {6C03C198-0B5D-4F19-AC85-980A79E16153}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|Any CPU.ActiveCfg = Debug|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|Any CPU.Build.0 = Debug|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|Any CPU.Deploy.0 = Debug|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|iPhone.ActiveCfg = Debug|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|iPhone.Build.0 = Debug|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|iPhone.Deploy.0 = Debug|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Debug|iPhoneSimulator.Deploy.0 = Debug|iPhoneSimulator + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|Any CPU.Build.0 = Release|iPhoneSimulator + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|Any CPU.Deploy.0 = Release|iPhoneSimulator + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|iPhone.ActiveCfg = Release|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|iPhone.Build.0 = Release|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|iPhone.Deploy.0 = Release|iPhone + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator + {27ED852D-6533-442D-9117-D36FCAE4FBB9}.Release|iPhoneSimulator.Deploy.0 = Release|iPhoneSimulator + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|iPhone.Build.0 = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|iPhone.Deploy.0 = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|Any CPU.Build.0 = Release|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|Any CPU.Deploy.0 = Release|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|iPhone.ActiveCfg = Release|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|iPhone.Build.0 = Release|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|iPhone.Deploy.0 = Release|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|iPhoneSimulator.Build.0 = Release|Any CPU + {E9E8A03B-45ED-4FA6-A405-F8DF62226CFB}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F3E6429F-44D1-47CF-868B-D6F941D30601} + EndGlobalSection +EndGlobal diff --git a/mederly/App.xaml b/mederly/App.xaml new file mode 100644 index 0000000..70782a8 --- /dev/null +++ b/mederly/App.xaml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/mederly/App.xaml.cs b/mederly/App.xaml.cs new file mode 100644 index 0000000..5ddd3a1 --- /dev/null +++ b/mederly/App.xaml.cs @@ -0,0 +1,28 @@ +using System; +using Xamarin.Forms; +using Xamarin.Forms.Xaml; + +namespace mederly +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new NavigationPage(new MainPage()); + } + + protected override void OnStart() + { + } + + protected override void OnSleep() + { + } + + protected override void OnResume() + { + } + } +} diff --git a/mederly/AssemblyInfo.cs b/mederly/AssemblyInfo.cs new file mode 100644 index 0000000..c859952 --- /dev/null +++ b/mederly/AssemblyInfo.cs @@ -0,0 +1,3 @@ +using Xamarin.Forms.Xaml; + +[assembly: XamlCompilation(XamlCompilationOptions.Compile)] \ No newline at end of file diff --git a/mederly/MainPage.xaml b/mederly/MainPage.xaml new file mode 100644 index 0000000..e81817a --- /dev/null +++ b/mederly/MainPage.xaml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + diff --git a/mederly/MainPage.xaml.cs b/mederly/MainPage.xaml.cs new file mode 100644 index 0000000..e24c3e0 --- /dev/null +++ b/mederly/MainPage.xaml.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xamarin.Forms; + +namespace mederly +{ + public partial class MainPage : ContentPage + { + public MainPage() + { + InitializeComponent(); + } + + async void ImageButton_Clicked(object sender, EventArgs e) + { + await Navigation.PushAsync(new callDr()); + } + + + + + async void ImageButton_Clicked_3(object sender, EventArgs e) + { + await Navigation.PushAsync(new callNurse()); + } + + private void Button_Clicked(object sender, EventArgs e) + { + var phoneCallTask = Plugin.Messaging.CrossMessaging.Current.PhoneDialer; + if (phoneCallTask.CanMakePhoneCall) + { + phoneCallTask.MakePhoneCall("44"); + } + } + } +} diff --git a/mederly/Teams.xaml b/mederly/Teams.xaml new file mode 100644 index 0000000..9be4b37 --- /dev/null +++ b/mederly/Teams.xaml @@ -0,0 +1,43 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/mederly/Teams.xaml.cs b/mederly/Teams.xaml.cs new file mode 100644 index 0000000..570c72f --- /dev/null +++ b/mederly/Teams.xaml.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xamarin.Essentials; +using Xamarin.Forms; +using Xamarin.Forms.Xaml; + +namespace mederly +{ + [XamlCompilation(XamlCompilationOptions.Compile)] + public partial class Teams : ContentPage + { + public Teams() + { + InitializeComponent(); + } + + private void ButtonLauncher_Clicked(object sender, EventArgs e) + { + Launcher.TryOpenAsync("msteams://"); + } + } +} \ No newline at end of file diff --git a/mederly/Telephone.xaml b/mederly/Telephone.xaml new file mode 100644 index 0000000..0f196bd --- /dev/null +++ b/mederly/Telephone.xaml @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file diff --git a/mederly/Telephone.xaml.cs b/mederly/Telephone.xaml.cs new file mode 100644 index 0000000..73d4325 --- /dev/null +++ b/mederly/Telephone.xaml.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +using Xamarin.Forms; +using Xamarin.Forms.Xaml; + +namespace mederly +{ + [XamlCompilation(XamlCompilationOptions.Compile)] + public partial class Telephone : ContentPage + { + public Telephone() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/mederly/callDr.xaml b/mederly/callDr.xaml new file mode 100644 index 0000000..b9e7f4f --- /dev/null +++ b/mederly/callDr.xaml @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/mederly/callDr.xaml.cs b/mederly/callDr.xaml.cs new file mode 100644 index 0000000..0bcb7fe --- /dev/null +++ b/mederly/callDr.xaml.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +using Xamarin.Forms; +using Xamarin.Forms.Xaml; + +namespace mederly +{ + [XamlCompilation(XamlCompilationOptions.Compile)] + public partial class callDr : ContentPage + { + public callDr() + { + InitializeComponent(); + } + + async void ImageButton_Clicked_1(object sender, EventArgs e) + { + await Navigation.PushAsync(new Teams()); + } + + async void ImageButton_Clicked_2(object sender, EventArgs e) + { + await Navigation.PushAsync(new MessageDr()); + } + + } +} \ No newline at end of file diff --git a/mederly/callNurse.xaml b/mederly/callNurse.xaml new file mode 100644 index 0000000..3b77cb8 --- /dev/null +++ b/mederly/callNurse.xaml @@ -0,0 +1,29 @@ + + + + + + + + + + \ No newline at end of file diff --git a/mederly/callNurse.xaml.cs b/mederly/callNurse.xaml.cs new file mode 100644 index 0000000..9acdb43 --- /dev/null +++ b/mederly/callNurse.xaml.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +using Xamarin.Forms; +using Xamarin.Forms.Xaml; + +namespace mederly +{ + [XamlCompilation(XamlCompilationOptions.Compile)] + public partial class callNurse : ContentPage + { + public callNurse() + { + InitializeComponent(); + } + + async void ImageButton_Clicked(object sender, EventArgs e) + { + await Navigation.PushAsync(new messageNurse()); + } + + async void ImageButton_Clicked_1(object sender, EventArgs e) + { + await Navigation.PushAsync(new Teams()); + } + } +} \ No newline at end of file diff --git a/mederly/mederly.csproj b/mederly/mederly.csproj new file mode 100644 index 0000000..13cd09a --- /dev/null +++ b/mederly/mederly.csproj @@ -0,0 +1,39 @@ + + + + netstandard2.0 + true + + + + portable + true + + + + + + + + + + + MSBuild:UpdateDesignTimeXaml + + + MSBuild:UpdateDesignTimeXaml + + + MSBuild:UpdateDesignTimeXaml + + + MSBuild:UpdateDesignTimeXaml + + + MSBuild:UpdateDesignTimeXaml + + + MSBuild:UpdateDesignTimeXaml + + + \ No newline at end of file diff --git a/mederly/messageDr.xaml b/mederly/messageDr.xaml new file mode 100644 index 0000000..1a8dfe9 --- /dev/null +++ b/mederly/messageDr.xaml @@ -0,0 +1,31 @@ + + + + + +

%Nh#t5W%B<}zZxbMqi-iv68yQG&E5MwVV)FHgLvz0hU>By|RT=`} zoE_-DIAdk|6R9VC1}Xb}uAEb%*DHTgIuN;0sMN?Mj| zj~xoq#7oz)6*>GAi26#GMTJ5LR{?huOaO_@&ui?{3*@|NL9kQb6ff_S`idX^3ldi; z^Sz^qg}vq|sq@z_1aHRHcnfxGo*4dj(OC(6mEg+|zP}p4yTPFNgStRiPKM#=n+BM( zz4j!L6aGtK{}0~^UWReVgo#A%AOGWuPFw_$;VG$NYUlsM8qwvrqa&4odz* z)i~+)d-Y;u^{r{UE%;^{WAkSlb*DfveDhrJ9^ND3K0YT0a$WyJYtmAZaKr<7Tp#01#;gV zbAhFWi9ckPN%1%)#H0{@j7(eG>G>chlj@rqKmt4Jj|2~`#?0xbt@L4^3v<67H0}(= zV6ILlwP9D?VudWZ^i9Vh&_?rYmT`ubIbW$lrENE6HMoE1xg5JNuC z^KA9{;~&=C(t1RuJIP0CYwcevH5cwV)!+N^R|r48d1Kh!`B6C=c%xoH_M{xxcCM?2 zL;HsBhE!3LaJ?xvej*3Fd$q0^bay#uu=UE9!sHi2V=-=meC9^Q{Eu^bZJgWrEJil~ zTS~y_KpRdtMA|1@^dT{xGI$*;EkQYgA*#pfUekJxsZ$?jB|P5a_pgBCdMn|g5Bi9sw@f4r8Novg%4^2d>E*Z){Q4lMB zkoa-CzNvZql8bf~?tUsGQ&=?r!@^|fkic_@To8V9Sv8ZhYoMd2C4=sEr?Ati7=?Dz zqXmsHW!b=BG?oFjb3Y~Ze%|A^JVqxX@)xss>(GSvb}-Cb>hj=ryql3PHop3HN2$Mvdn2o z*h4pQNCYjIb5Ci(+WLREfYNu(1dV7LLZOyIG83(X6W$-f z#s<1v(btX_$R{k!3JSwxu53%QVAs_hrQmo3U0?@=DR}zX#Vht&VUjKNd^3l(|Guu$ z(5(24v2OG|lgeM+=F_F$r!KlP%W+zZ-nb94smj{6e`#3V<5Coxwv(9C&t>KZtXDT^ zs?aL%NmctRReD)uH=VQU0}uGu_zeS0+ys{Ek6RyDt=;Inb&8|Hdv+0ZS4~YAbCa7- z?o|tzvjbkH7T|NMHDy59fCp^cuaTVeJj@(({g^a9s`MbexWkc-J3(V{k&W3LrgcMwnEs}9n{w^~;;wT3tZ{t9T?%l(1E^TJG9VSC3nC?@2evkQ3YE5&t}$kPH{d6t&`ZJeQp?4^dn#lmxAHNGQLqWPqO&NB>=4Nv-QhSH|c zF$lcR0&zQyOtc)S_Nj(9bw>fTb&ZD2n{h z<9GcL$5$b%|KZB@h9RC0-$v;XVjmD+ZFb}0$j8A@@uOov&aii{OBVAcZ(K2v?c4mt z=PkBmO86CK-j`}lFcwLwJ7B9MFzXr&f%r;lNM{iXyU$4TlL0*i zc;k{NP2xqD1a(Yj5dOt4q0e29LCGPv68H*W#rsjwr2BTn8?e~|g2k2B&me0Lv;U`A zRA2Gg8HQc$)Bo^Wb=F4DoW}STrtGO*GFx@2tI9pQ@wk@jZLh&?pRFzvm+N;wQyyRJ z{D~|1?PhZ0*}6RejGQ{QzuttF;KRYg{W;4bc`rx|zflUXB&a$aVf7Im?0HHo`iqL&EC^y^=lV zT{VJUZ%wrVXt`GEd5&u1T$-tjGF!W&M10ryYR9Lc;_q+b1!UNv6~v41a#w~`o+R3L zS!hT)rfekRGs-TbZ%8dr{mYdU($3D%jQVQ~A+3U3=8#=$<$Ri`Hz549?v3tnk7TSV zy;`enke#EHBk$FUz1r*f=_WgC5nyU_S;g;kh<7MQ+%b!_&(eP1@6NL&TRgj8l7%1* zW7NZ78(}C=4%d4iRX2IihY5Cn+HkIIor3$Bay+L0gQ~`TFj_#gIolCv?Or4?O^EGP zr_HITmu1bwhTDXkiH+g!;Bu8e*9rOqtMRV96u3;} |g84p7#db3$Hn3iwQ|;AP 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/XFAC|otxVq4mdH0gtTc)G)?7Zf7)_f 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 literal 0 HcmV?d00001 diff --git a/mederly.Android/Resources/values/colors.xml b/mederly.Android/Resources/values/colors.xml new file mode 100644 index 0000000..d9f6e0b --- /dev/null +++ b/mederly.Android/Resources/values/colors.xml @@ -0,0 +1,7 @@ + + + #FFFFFF + #3F51B5 + #303F9F + #FF4081 + diff --git a/mederly.Android/Resources/values/styles.xml b/mederly.Android/Resources/values/styles.xml new file mode 100644 index 0000000..4b9805f --- /dev/null +++ b/mederly.Android/Resources/values/styles.xml @@ -0,0 +1,18 @@ + + + + + \ No newline at end of file diff --git a/mederly.Android/mederly.Android.csproj b/mederly.Android/mederly.Android.csproj new file mode 100644 index 0000000..67ff6ba --- /dev/null +++ b/mederly.Android/mederly.Android.csproj @@ -0,0 +1,123 @@ + + + + Debug + AnyCPU + {6C03C198-0B5D-4F19-AC85-980A79E16153} + {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + {c9e5eea5-ca05-42a1-839b-61506e0a37df} + Library + mederly.Droid + mederly.Android + True + True + Resources\Resource.designer.cs + Resource + Properties\AndroidManifest.xml + Resources + Assets + false + v11.0 + true + true + Xamarin.Android.Net.AndroidClientHandler + + + + + true + portable + false + bin\Debug + DEBUG; + prompt + 4 + None + + + true + portable + true + bin\Release + prompt + 4 + true + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {CB25451C-4016-4C9D-BCF9-249C1E22F596} + mederly + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mederly.iOS/AppDelegate.cs b/mederly.iOS/AppDelegate.cs new file mode 100644 index 0000000..add34de --- /dev/null +++ b/mederly.iOS/AppDelegate.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +using Foundation; +using UIKit; + +namespace mederly.iOS +{ + // The UIApplicationDelegate for the application. This class is responsible for launching the + // User Interface of the application, as well as listening (and optionally responding) to + // application events from iOS. + [Register("AppDelegate")] + public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate + { + // + // This method is invoked when the application has loaded and is ready to run. In this + // method you should instantiate the window, load the UI into it and then make the window + // visible. + // + // You have 17 seconds to return from this method, or iOS will terminate your application. + // + public override bool FinishedLaunching(UIApplication app, NSDictionary options) + { + global::Xamarin.Forms.Forms.Init(); + LoadApplication(new App()); + + return base.FinishedLaunching(app, options); + } + } +} diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..98f4d03 --- /dev/null +++ b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,117 @@ +{ + "images": [ + { + "scale": "2x", + "size": "20x20", + "idiom": "iphone", + "filename": "Icon40.png" + }, + { + "scale": "3x", + "size": "20x20", + "idiom": "iphone", + "filename": "Icon60.png" + }, + { + "scale": "2x", + "size": "29x29", + "idiom": "iphone", + "filename": "Icon58.png" + }, + { + "scale": "3x", + "size": "29x29", + "idiom": "iphone", + "filename": "Icon87.png" + }, + { + "scale": "2x", + "size": "40x40", + "idiom": "iphone", + "filename": "Icon80.png" + }, + { + "scale": "3x", + "size": "40x40", + "idiom": "iphone", + "filename": "Icon120.png" + }, + { + "scale": "2x", + "size": "60x60", + "idiom": "iphone", + "filename": "Icon120.png" + }, + { + "scale": "3x", + "size": "60x60", + "idiom": "iphone", + "filename": "Icon180.png" + }, + { + "scale": "1x", + "size": "20x20", + "idiom": "ipad", + "filename": "Icon20.png" + }, + { + "scale": "2x", + "size": "20x20", + "idiom": "ipad", + "filename": "Icon40.png" + }, + { + "scale": "1x", + "size": "29x29", + "idiom": "ipad", + "filename": "Icon29.png" + }, + { + "scale": "2x", + "size": "29x29", + "idiom": "ipad", + "filename": "Icon58.png" + }, + { + "scale": "1x", + "size": "40x40", + "idiom": "ipad", + "filename": "Icon40.png" + }, + { + "scale": "2x", + "size": "40x40", + "idiom": "ipad", + "filename": "Icon80.png" + }, + { + "scale": "1x", + "size": "76x76", + "idiom": "ipad", + "filename": "Icon76.png" + }, + { + "scale": "2x", + "size": "76x76", + "idiom": "ipad", + "filename": "Icon152.png" + }, + { + "scale": "2x", + "size": "83.5x83.5", + "idiom": "ipad", + "filename": "Icon167.png" + }, + { + "scale": "1x", + "size": "1024x1024", + "idiom": "ios-marketing", + "filename": "Icon1024.png" + } + ], + "properties": {}, + "info": { + "version": 1, + "author": "xcode" + } +} \ No newline at end of file diff --git a/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png b/mederly.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png new file mode 100644 index 0000000000000000000000000000000000000000..9174c989a9c8b8a5ca133228f4ed7c173fffd2ee GIT binary patch literal 70429 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 z zCn)b8&=oMu6ygwwJfdasJX|@L6?m1Dv0X9t>JAWO^UIj0#&(3UrHx;vP^3g= zL{(XT!?`D*pP8)WoGHYEZZc$!odTzb8n)q0|88*>6P z`?6&CSv_W7r2yF0beQ2*?V^_%pKktVAo`)T^26X@NpK_*-ni{D7{Sp{C0A<|16l(; zOL*xGW|*sKsiwHvE!h3QXe@^a#6W3}8!DQu-h?A_4gkeRYkt4NC~GR5P8eyp;9kVQ8$QG$5ad7Fo23Z~ak1jY~RXG{v?3G$RarFe`XePu3X{R+=mBOw&X zks)|Sc$RcG-jhn!`~-x|vg!&DA&@}QH^RNdyy9nq56yrU$^qAaS+F_NOaeFb)CVaH z?!UvPajgrK&zqdAs>&Def#wkcG_UhmYOVw^M`VZz@+4IWAVzK%`+za9rm2SD9={u@ zlx5D6UDL;lc7#9`+%vnlP3PescU=N`DHQPt_N55GNBMkVCRMR4?fvp zAFsvcHN4c9rb>J@{*IH>RTr9de%9i4Gd(cbFa9SP4anhoP;TA0!oZyB8?lNMDHPHK zCaOaFU9?x2A!o>p>mCF9r+hKs9Czu_P1l$LWU%}q#)=T3p`ZnYyeHmsewqw`}L^4LuHqfo+CG6<2n7#l^3;H^^!1 zsaieYFnN)Kc7Mv}^xE)4kXUw8<9I+jMB@QV9T9I8haLDt1Ne#exWUfGYG$4uMoEu& zo81#2up18Y40h%tIsOZglp(ltVsE*j1~$lVd|;rN)&${~o~-%KZnJp&3|OFR{^8E9 zJ;fCu53Ysw%}@VYWE*z7r)&4P=^B-SF%a@>*9g84<4aFUZT7x)qdsS+#2tu5NbpU@ zg;EwV)l-#sK>#r9>(0Figx{9lKm>KvRj;y<8 zc8SxMW4<11(s@QMV_}n9MRzA*62->vzxmHh1)GVASEJY7LVtRw`Rv{v`(Fuc00(&o z%m>gS2aJekmdNQ4p<{pD3HqZ-%4hdU1__xYhLi9mTJXD|E zE`t6SX)}l_DY5vO0Xrs#O6_DKtPKn0f+e~SprDYmJL_`<053iA5P`zn z4<5etc%aF58sHFr#M;U-9|=;l)J#Q2vS!Q9(d(EX6fubL%uA_lqa2%!cpNIv78QZ}Ayo(>C(ZpsRtKhzD--fpuoCch87cX-Bna9_{z%$b*dHM0?+T&Hk!+^UM`r|vq z2Id$??bX^|tfYaE+h#Nik(ZcN+wt)28q^gWe!y8jDCXrD<2qV#49x@5$8&Zrd5NTs zNYcix;9fe#PQQ;T?!6hG>9K{K+RCPqiGc9z%t{=`QaX>7O{l(+#7mJ1>Rae^J?82e z6cLqLypskTCyu>uc~$0-XZ^1Qvhwr+pKQ#CKImhGu*MGM*ZrROuAHWuT*yM$ieEy8*KLFMMdLZL|D+yDmy@3_PELTEVMI6nwfcYA3ZQ9wwKdtkT z;`;z7fU{U6>CS7kr3=A-()_G*G(Mjf2wXKe