From 4ff3464abda4b4cbf8cb8e949cb7c97ceca290bc Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 17 Mar 2018 17:26:10 -0400 Subject: [PATCH] new ic_launcher for adaptive icons --- src/Android/Android.csproj | 84 +- src/Android/AutofillActivity.cs | 5 +- src/Android/MainActivity.cs | 5 +- src/Android/Properties/AndroidManifest.xml | 5 +- src/Android/Resources/Resource.Designer.cs | 4805 +++++++++-------- src/Android/Resources/drawable-hdpi/icon.png | Bin 1746 -> 1301 bytes src/Android/Resources/drawable-xhdpi/icon.png | Bin 2233 -> 1721 bytes .../Resources/drawable-xxhdpi/icon.png | Bin 3290 -> 2748 bytes .../Resources/drawable-xxxhdpi/icon.png | Bin 4297 -> 3679 bytes src/Android/Resources/drawable/icon.png | Bin 1280 -> 941 bytes .../mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../Resources/mipmap-hdpi/ic_launcher.png | Bin 0 -> 1266 bytes .../mipmap-hdpi/ic_launcher_foreground.png | Bin 0 -> 941 bytes .../mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 3224 bytes .../Resources/mipmap-mdpi/ic_launcher.png | Bin 0 -> 896 bytes .../mipmap-mdpi/ic_launcher_foreground.png | Bin 0 -> 608 bytes .../mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 1870 bytes .../Resources/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 1769 bytes .../mipmap-xhdpi/ic_launcher_foreground.png | Bin 0 -> 1307 bytes .../mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 4460 bytes .../Resources/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 2718 bytes .../mipmap-xxhdpi/ic_launcher_foreground.png | Bin 0 -> 2117 bytes .../mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 8808 bytes .../Resources/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 3863 bytes .../mipmap-xxxhdpi/ic_launcher_foreground.png | Bin 0 -> 3178 bytes .../mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 11586 bytes .../values/ic_launcher_background.xml | 4 + 28 files changed, 2503 insertions(+), 2415 deletions(-) create mode 100644 src/Android/Resources/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 src/Android/Resources/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 src/Android/Resources/mipmap-hdpi/ic_launcher.png create mode 100644 src/Android/Resources/mipmap-hdpi/ic_launcher_foreground.png create mode 100644 src/Android/Resources/mipmap-hdpi/ic_launcher_round.png create mode 100644 src/Android/Resources/mipmap-mdpi/ic_launcher.png create mode 100644 src/Android/Resources/mipmap-mdpi/ic_launcher_foreground.png create mode 100644 src/Android/Resources/mipmap-mdpi/ic_launcher_round.png create mode 100644 src/Android/Resources/mipmap-xhdpi/ic_launcher.png create mode 100644 src/Android/Resources/mipmap-xhdpi/ic_launcher_foreground.png create mode 100644 src/Android/Resources/mipmap-xhdpi/ic_launcher_round.png create mode 100644 src/Android/Resources/mipmap-xxhdpi/ic_launcher.png create mode 100644 src/Android/Resources/mipmap-xxhdpi/ic_launcher_foreground.png create mode 100644 src/Android/Resources/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 src/Android/Resources/mipmap-xxxhdpi/ic_launcher.png create mode 100644 src/Android/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png create mode 100644 src/Android/Resources/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 src/Android/Resources/values/ic_launcher_background.xml diff --git a/src/Android/Android.csproj b/src/Android/Android.csproj index 65f9590bb..7d938bd12 100644 --- a/src/Android/Android.csproj +++ b/src/Android/Android.csproj @@ -472,21 +472,6 @@ - - - - - - - - - - - - - - - @@ -936,5 +921,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Android/AutofillActivity.cs b/src/Android/AutofillActivity.cs index 724ff36d0..0c4a6c062 100644 --- a/src/Android/AutofillActivity.cs +++ b/src/Android/AutofillActivity.cs @@ -6,10 +6,7 @@ using Android.Views; namespace Bit.Android { - [Activity(Theme = "@style/BitwardenTheme.Splash", - Label = "Bitwarden", - Icon = "@drawable/icon", - WindowSoftInputMode = SoftInput.StateHidden)] + [Activity(Theme = "@style/BitwardenTheme.Splash", WindowSoftInputMode = SoftInput.StateHidden)] public class AutofillActivity : Activity { private string _lastQueriedUri; diff --git a/src/Android/MainActivity.cs b/src/Android/MainActivity.cs index e9192b149..bd2beaa4f 100644 --- a/src/Android/MainActivity.cs +++ b/src/Android/MainActivity.cs @@ -21,10 +21,7 @@ using Bit.App.Enums; namespace Bit.Android { - [Activity(Label = "Bitwarden", - Icon = "@drawable/icon", - ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation, - Exported = false)] + [Activity(ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation, Exported = false)] public class MainActivity : FormsAppCompatActivity { private const string HockeyAppId = "d3834185b4a643479047b86c65293d42"; diff --git a/src/Android/Properties/AndroidManifest.xml b/src/Android/Properties/AndroidManifest.xml index 596e03e81..8f0cb0308 100644 --- a/src/Android/Properties/AndroidManifest.xml +++ b/src/Android/Properties/AndroidManifest.xml @@ -12,7 +12,8 @@ - + - + diff --git a/src/Android/Resources/Resource.Designer.cs b/src/Android/Resources/Resource.Designer.cs index 9a444d582..0b96097c2 100644 --- a/src/Android/Resources/Resource.Designer.cs +++ b/src/Android/Resources/Resource.Designer.cs @@ -2354,53 +2354,53 @@ namespace Bit.Android public partial class Animation { - // aapt resource value: 0x7f040000 - public const int abc_fade_in = 2130968576; + // aapt resource value: 0x7f050000 + public const int abc_fade_in = 2131034112; - // aapt resource value: 0x7f040001 - public const int abc_fade_out = 2130968577; + // aapt resource value: 0x7f050001 + public const int abc_fade_out = 2131034113; - // aapt resource value: 0x7f040002 - public const int abc_grow_fade_in_from_bottom = 2130968578; + // aapt resource value: 0x7f050002 + public const int abc_grow_fade_in_from_bottom = 2131034114; - // aapt resource value: 0x7f040003 - public const int abc_popup_enter = 2130968579; + // aapt resource value: 0x7f050003 + public const int abc_popup_enter = 2131034115; - // aapt resource value: 0x7f040004 - public const int abc_popup_exit = 2130968580; + // aapt resource value: 0x7f050004 + public const int abc_popup_exit = 2131034116; - // aapt resource value: 0x7f040005 - public const int abc_shrink_fade_out_from_bottom = 2130968581; + // aapt resource value: 0x7f050005 + public const int abc_shrink_fade_out_from_bottom = 2131034117; - // aapt resource value: 0x7f040006 - public const int abc_slide_in_bottom = 2130968582; + // aapt resource value: 0x7f050006 + public const int abc_slide_in_bottom = 2131034118; - // aapt resource value: 0x7f040007 - public const int abc_slide_in_top = 2130968583; + // aapt resource value: 0x7f050007 + public const int abc_slide_in_top = 2131034119; - // aapt resource value: 0x7f040008 - public const int abc_slide_out_bottom = 2130968584; + // aapt resource value: 0x7f050008 + public const int abc_slide_out_bottom = 2131034120; - // aapt resource value: 0x7f040009 - public const int abc_slide_out_top = 2130968585; + // aapt resource value: 0x7f050009 + public const int abc_slide_out_top = 2131034121; - // aapt resource value: 0x7f04000a - public const int design_bottom_sheet_slide_in = 2130968586; + // aapt resource value: 0x7f05000a + public const int design_bottom_sheet_slide_in = 2131034122; - // aapt resource value: 0x7f04000b - public const int design_bottom_sheet_slide_out = 2130968587; + // aapt resource value: 0x7f05000b + public const int design_bottom_sheet_slide_out = 2131034123; - // aapt resource value: 0x7f04000c - public const int design_fab_in = 2130968588; + // aapt resource value: 0x7f05000c + public const int design_fab_in = 2131034124; - // aapt resource value: 0x7f04000d - public const int design_fab_out = 2130968589; + // aapt resource value: 0x7f05000d + public const int design_fab_out = 2131034125; - // aapt resource value: 0x7f04000e - public const int design_snackbar_in = 2130968590; + // aapt resource value: 0x7f05000e + public const int design_snackbar_in = 2131034126; - // aapt resource value: 0x7f04000f - public const int design_snackbar_out = 2130968591; + // aapt resource value: 0x7f05000f + public const int design_snackbar_out = 2131034127; static Animation() { @@ -2415,8 +2415,8 @@ namespace Bit.Android public partial class Animator { - // aapt resource value: 0x7f050000 - public const int design_appbar_state_list_animator = 2131034112; + // aapt resource value: 0x7f060000 + public const int design_appbar_state_list_animator = 2131099648; static Animator() { @@ -3503,20 +3503,20 @@ namespace Bit.Android public partial class Boolean { - // aapt resource value: 0x7f0e0000 - public const int abc_action_bar_embed_tabs = 2131623936; + // aapt resource value: 0x7f0f0000 + public const int abc_action_bar_embed_tabs = 2131689472; - // aapt resource value: 0x7f0e0001 - public const int abc_allow_stacked_button_bar = 2131623937; + // aapt resource value: 0x7f0f0001 + public const int abc_allow_stacked_button_bar = 2131689473; - // aapt resource value: 0x7f0e0002 - public const int abc_config_actionMenuItemAllCaps = 2131623938; + // aapt resource value: 0x7f0f0002 + public const int abc_config_actionMenuItemAllCaps = 2131689474; - // aapt resource value: 0x7f0e0003 - public const int abc_config_closeDialogWhenTouchOutside = 2131623939; + // aapt resource value: 0x7f0f0003 + public const int abc_config_closeDialogWhenTouchOutside = 2131689475; - // aapt resource value: 0x7f0e0004 - public const int abc_config_showMenuShortcutsWhenKeyboardPresent = 2131623940; + // aapt resource value: 0x7f0f0004 + public const int abc_config_showMenuShortcutsWhenKeyboardPresent = 2131689476; static Boolean() { @@ -3531,395 +3531,398 @@ namespace Bit.Android public partial class Color { - // aapt resource value: 0x7f080066 - public const int abc_background_cache_hint_selector_material_dark = 2131230822; + // aapt resource value: 0x7f090067 + public const int abc_background_cache_hint_selector_material_dark = 2131296359; - // aapt resource value: 0x7f080067 - public const int abc_background_cache_hint_selector_material_light = 2131230823; + // aapt resource value: 0x7f090068 + public const int abc_background_cache_hint_selector_material_light = 2131296360; - // aapt resource value: 0x7f080068 - public const int abc_btn_colored_borderless_text_material = 2131230824; + // aapt resource value: 0x7f090069 + public const int abc_btn_colored_borderless_text_material = 2131296361; - // aapt resource value: 0x7f080069 - public const int abc_btn_colored_text_material = 2131230825; + // aapt resource value: 0x7f09006a + public const int abc_btn_colored_text_material = 2131296362; - // aapt resource value: 0x7f08006a - public const int abc_color_highlight_material = 2131230826; + // aapt resource value: 0x7f09006b + public const int abc_color_highlight_material = 2131296363; - // aapt resource value: 0x7f08006b - public const int abc_hint_foreground_material_dark = 2131230827; + // aapt resource value: 0x7f09006c + public const int abc_hint_foreground_material_dark = 2131296364; - // aapt resource value: 0x7f08006c - public const int abc_hint_foreground_material_light = 2131230828; + // aapt resource value: 0x7f09006d + public const int abc_hint_foreground_material_light = 2131296365; - // aapt resource value: 0x7f08000d - public const int abc_input_method_navigation_guard = 2131230733; + // aapt resource value: 0x7f09000d + public const int abc_input_method_navigation_guard = 2131296269; - // aapt resource value: 0x7f08006d - public const int abc_primary_text_disable_only_material_dark = 2131230829; + // aapt resource value: 0x7f09006e + public const int abc_primary_text_disable_only_material_dark = 2131296366; - // aapt resource value: 0x7f08006e - public const int abc_primary_text_disable_only_material_light = 2131230830; + // aapt resource value: 0x7f09006f + public const int abc_primary_text_disable_only_material_light = 2131296367; - // aapt resource value: 0x7f08006f - public const int abc_primary_text_material_dark = 2131230831; + // aapt resource value: 0x7f090070 + public const int abc_primary_text_material_dark = 2131296368; - // aapt resource value: 0x7f080070 - public const int abc_primary_text_material_light = 2131230832; + // aapt resource value: 0x7f090071 + public const int abc_primary_text_material_light = 2131296369; - // aapt resource value: 0x7f080071 - public const int abc_search_url_text = 2131230833; + // aapt resource value: 0x7f090072 + public const int abc_search_url_text = 2131296370; - // aapt resource value: 0x7f08000e - public const int abc_search_url_text_normal = 2131230734; + // aapt resource value: 0x7f09000e + public const int abc_search_url_text_normal = 2131296270; - // aapt resource value: 0x7f08000f - public const int abc_search_url_text_pressed = 2131230735; + // aapt resource value: 0x7f09000f + public const int abc_search_url_text_pressed = 2131296271; - // aapt resource value: 0x7f080010 - public const int abc_search_url_text_selected = 2131230736; + // aapt resource value: 0x7f090010 + public const int abc_search_url_text_selected = 2131296272; - // aapt resource value: 0x7f080072 - public const int abc_secondary_text_material_dark = 2131230834; + // aapt resource value: 0x7f090073 + public const int abc_secondary_text_material_dark = 2131296371; - // aapt resource value: 0x7f080073 - public const int abc_secondary_text_material_light = 2131230835; + // aapt resource value: 0x7f090074 + public const int abc_secondary_text_material_light = 2131296372; - // aapt resource value: 0x7f080074 - public const int abc_tint_btn_checkable = 2131230836; + // aapt resource value: 0x7f090075 + public const int abc_tint_btn_checkable = 2131296373; - // aapt resource value: 0x7f080075 - public const int abc_tint_default = 2131230837; + // aapt resource value: 0x7f090076 + public const int abc_tint_default = 2131296374; - // aapt resource value: 0x7f080076 - public const int abc_tint_edittext = 2131230838; + // aapt resource value: 0x7f090077 + public const int abc_tint_edittext = 2131296375; - // aapt resource value: 0x7f080077 - public const int abc_tint_seek_thumb = 2131230839; + // aapt resource value: 0x7f090078 + public const int abc_tint_seek_thumb = 2131296376; - // aapt resource value: 0x7f080078 - public const int abc_tint_spinner = 2131230840; + // aapt resource value: 0x7f090079 + public const int abc_tint_spinner = 2131296377; - // aapt resource value: 0x7f080079 - public const int abc_tint_switch_thumb = 2131230841; + // aapt resource value: 0x7f09007a + public const int abc_tint_switch_thumb = 2131296378; - // aapt resource value: 0x7f08007a - public const int abc_tint_switch_track = 2131230842; + // aapt resource value: 0x7f09007b + public const int abc_tint_switch_track = 2131296379; - // aapt resource value: 0x7f080064 - public const int accent = 2131230820; + // aapt resource value: 0x7f090064 + public const int accent = 2131296356; - // aapt resource value: 0x7f080011 - public const int accent_material_dark = 2131230737; + // aapt resource value: 0x7f090011 + public const int accent_material_dark = 2131296273; - // aapt resource value: 0x7f080012 - public const int accent_material_light = 2131230738; + // aapt resource value: 0x7f090012 + public const int accent_material_light = 2131296274; - // aapt resource value: 0x7f080013 - public const int background_floating_material_dark = 2131230739; + // aapt resource value: 0x7f090013 + public const int background_floating_material_dark = 2131296275; - // aapt resource value: 0x7f080014 - public const int background_floating_material_light = 2131230740; + // aapt resource value: 0x7f090014 + public const int background_floating_material_light = 2131296276; - // aapt resource value: 0x7f080015 - public const int background_material_dark = 2131230741; + // aapt resource value: 0x7f090015 + public const int background_material_dark = 2131296277; - // aapt resource value: 0x7f080016 - public const int background_material_light = 2131230742; + // aapt resource value: 0x7f090016 + public const int background_material_light = 2131296278; - // aapt resource value: 0x7f08005e - public const int black = 2131230814; + // aapt resource value: 0x7f09005e + public const int black = 2131296350; - // aapt resource value: 0x7f080017 - public const int bright_foreground_disabled_material_dark = 2131230743; + // aapt resource value: 0x7f090017 + public const int bright_foreground_disabled_material_dark = 2131296279; - // aapt resource value: 0x7f080018 - public const int bright_foreground_disabled_material_light = 2131230744; + // aapt resource value: 0x7f090018 + public const int bright_foreground_disabled_material_light = 2131296280; - // aapt resource value: 0x7f080019 - public const int bright_foreground_inverse_material_dark = 2131230745; + // aapt resource value: 0x7f090019 + public const int bright_foreground_inverse_material_dark = 2131296281; - // aapt resource value: 0x7f08001a - public const int bright_foreground_inverse_material_light = 2131230746; + // aapt resource value: 0x7f09001a + public const int bright_foreground_inverse_material_light = 2131296282; - // aapt resource value: 0x7f08001b - public const int bright_foreground_material_dark = 2131230747; + // aapt resource value: 0x7f09001b + public const int bright_foreground_material_dark = 2131296283; - // aapt resource value: 0x7f08001c - public const int bright_foreground_material_light = 2131230748; + // aapt resource value: 0x7f09001c + public const int bright_foreground_material_light = 2131296284; - // aapt resource value: 0x7f08001d - public const int button_material_dark = 2131230749; + // aapt resource value: 0x7f09001d + public const int button_material_dark = 2131296285; - // aapt resource value: 0x7f08001e - public const int button_material_light = 2131230750; + // aapt resource value: 0x7f09001e + public const int button_material_light = 2131296286; - // aapt resource value: 0x7f080008 - public const int cardview_dark_background = 2131230728; + // aapt resource value: 0x7f090008 + public const int cardview_dark_background = 2131296264; - // aapt resource value: 0x7f080009 - public const int cardview_light_background = 2131230729; + // aapt resource value: 0x7f090009 + public const int cardview_light_background = 2131296265; - // aapt resource value: 0x7f08000a - public const int cardview_shadow_end_color = 2131230730; + // aapt resource value: 0x7f09000a + public const int cardview_shadow_end_color = 2131296266; - // aapt resource value: 0x7f08000b - public const int cardview_shadow_start_color = 2131230731; + // aapt resource value: 0x7f09000b + public const int cardview_shadow_start_color = 2131296267; - // aapt resource value: 0x7f08007b - public const int common_google_signin_btn_text_dark = 2131230843; + // aapt resource value: 0x7f09007c + public const int common_google_signin_btn_text_dark = 2131296380; - // aapt resource value: 0x7f080000 - public const int common_google_signin_btn_text_dark_default = 2131230720; + // aapt resource value: 0x7f090000 + public const int common_google_signin_btn_text_dark_default = 2131296256; - // aapt resource value: 0x7f080001 - public const int common_google_signin_btn_text_dark_disabled = 2131230721; + // aapt resource value: 0x7f090001 + public const int common_google_signin_btn_text_dark_disabled = 2131296257; - // aapt resource value: 0x7f080002 - public const int common_google_signin_btn_text_dark_focused = 2131230722; + // aapt resource value: 0x7f090002 + public const int common_google_signin_btn_text_dark_focused = 2131296258; - // aapt resource value: 0x7f080003 - public const int common_google_signin_btn_text_dark_pressed = 2131230723; + // aapt resource value: 0x7f090003 + public const int common_google_signin_btn_text_dark_pressed = 2131296259; - // aapt resource value: 0x7f08007c - public const int common_google_signin_btn_text_light = 2131230844; + // aapt resource value: 0x7f09007d + public const int common_google_signin_btn_text_light = 2131296381; - // aapt resource value: 0x7f080004 - public const int common_google_signin_btn_text_light_default = 2131230724; + // aapt resource value: 0x7f090004 + public const int common_google_signin_btn_text_light_default = 2131296260; - // aapt resource value: 0x7f080005 - public const int common_google_signin_btn_text_light_disabled = 2131230725; + // aapt resource value: 0x7f090005 + public const int common_google_signin_btn_text_light_disabled = 2131296261; - // aapt resource value: 0x7f080006 - public const int common_google_signin_btn_text_light_focused = 2131230726; + // aapt resource value: 0x7f090006 + public const int common_google_signin_btn_text_light_focused = 2131296262; - // aapt resource value: 0x7f080007 - public const int common_google_signin_btn_text_light_pressed = 2131230727; + // aapt resource value: 0x7f090007 + public const int common_google_signin_btn_text_light_pressed = 2131296263; - // aapt resource value: 0x7f08007d - public const int common_google_signin_btn_tint = 2131230845; + // aapt resource value: 0x7f09007e + public const int common_google_signin_btn_tint = 2131296382; - // aapt resource value: 0x7f080063 - public const int darkaccent = 2131230819; + // aapt resource value: 0x7f090063 + public const int darkaccent = 2131296355; - // aapt resource value: 0x7f08005f - public const int darkgray = 2131230815; + // aapt resource value: 0x7f09005f + public const int darkgray = 2131296351; - // aapt resource value: 0x7f080047 - public const int design_bottom_navigation_shadow_color = 2131230791; + // aapt resource value: 0x7f090047 + public const int design_bottom_navigation_shadow_color = 2131296327; - // aapt resource value: 0x7f08007e - public const int design_error = 2131230846; + // aapt resource value: 0x7f09007f + public const int design_error = 2131296383; - // aapt resource value: 0x7f080048 - public const int design_fab_shadow_end_color = 2131230792; + // aapt resource value: 0x7f090048 + public const int design_fab_shadow_end_color = 2131296328; - // aapt resource value: 0x7f080049 - public const int design_fab_shadow_mid_color = 2131230793; + // aapt resource value: 0x7f090049 + public const int design_fab_shadow_mid_color = 2131296329; - // aapt resource value: 0x7f08004a - public const int design_fab_shadow_start_color = 2131230794; + // aapt resource value: 0x7f09004a + public const int design_fab_shadow_start_color = 2131296330; - // aapt resource value: 0x7f08004b - public const int design_fab_stroke_end_inner_color = 2131230795; + // aapt resource value: 0x7f09004b + public const int design_fab_stroke_end_inner_color = 2131296331; - // aapt resource value: 0x7f08004c - public const int design_fab_stroke_end_outer_color = 2131230796; + // aapt resource value: 0x7f09004c + public const int design_fab_stroke_end_outer_color = 2131296332; - // aapt resource value: 0x7f08004d - public const int design_fab_stroke_top_inner_color = 2131230797; + // aapt resource value: 0x7f09004d + public const int design_fab_stroke_top_inner_color = 2131296333; - // aapt resource value: 0x7f08004e - public const int design_fab_stroke_top_outer_color = 2131230798; + // aapt resource value: 0x7f09004e + public const int design_fab_stroke_top_outer_color = 2131296334; - // aapt resource value: 0x7f08004f - public const int design_snackbar_background_color = 2131230799; + // aapt resource value: 0x7f09004f + public const int design_snackbar_background_color = 2131296335; - // aapt resource value: 0x7f080050 - public const int design_textinput_error_color_dark = 2131230800; + // aapt resource value: 0x7f090050 + public const int design_textinput_error_color_dark = 2131296336; - // aapt resource value: 0x7f080051 - public const int design_textinput_error_color_light = 2131230801; + // aapt resource value: 0x7f090051 + public const int design_textinput_error_color_light = 2131296337; - // aapt resource value: 0x7f08007f - public const int design_tint_password_toggle = 2131230847; + // aapt resource value: 0x7f090080 + public const int design_tint_password_toggle = 2131296384; - // aapt resource value: 0x7f08001f - public const int dim_foreground_disabled_material_dark = 2131230751; + // aapt resource value: 0x7f09001f + public const int dim_foreground_disabled_material_dark = 2131296287; - // aapt resource value: 0x7f080020 - public const int dim_foreground_disabled_material_light = 2131230752; + // aapt resource value: 0x7f090020 + public const int dim_foreground_disabled_material_light = 2131296288; - // aapt resource value: 0x7f080021 - public const int dim_foreground_material_dark = 2131230753; + // aapt resource value: 0x7f090021 + public const int dim_foreground_material_dark = 2131296289; - // aapt resource value: 0x7f080022 - public const int dim_foreground_material_light = 2131230754; + // aapt resource value: 0x7f090022 + public const int dim_foreground_material_light = 2131296290; - // aapt resource value: 0x7f080052 - public const int fab_material_blue_500 = 2131230802; + // aapt resource value: 0x7f090052 + public const int fab_material_blue_500 = 2131296338; - // aapt resource value: 0x7f080023 - public const int foreground_material_dark = 2131230755; + // aapt resource value: 0x7f090023 + public const int foreground_material_dark = 2131296291; - // aapt resource value: 0x7f080024 - public const int foreground_material_light = 2131230756; + // aapt resource value: 0x7f090024 + public const int foreground_material_light = 2131296292; - // aapt resource value: 0x7f080060 - public const int gray = 2131230816; + // aapt resource value: 0x7f090060 + public const int gray = 2131296352; - // aapt resource value: 0x7f080025 - public const int highlighted_text_material_dark = 2131230757; + // aapt resource value: 0x7f090025 + public const int highlighted_text_material_dark = 2131296293; - // aapt resource value: 0x7f080026 - public const int highlighted_text_material_light = 2131230758; + // aapt resource value: 0x7f090026 + public const int highlighted_text_material_light = 2131296294; - // aapt resource value: 0x7f080053 - public const int hockeyapp_background_header = 2131230803; + // aapt resource value: 0x7f090053 + public const int hockeyapp_background_header = 2131296339; - // aapt resource value: 0x7f080054 - public const int hockeyapp_background_light = 2131230804; + // aapt resource value: 0x7f090054 + public const int hockeyapp_background_light = 2131296340; - // aapt resource value: 0x7f080055 - public const int hockeyapp_background_white = 2131230805; + // aapt resource value: 0x7f090055 + public const int hockeyapp_background_white = 2131296341; - // aapt resource value: 0x7f080056 - public const int hockeyapp_button_background = 2131230806; + // aapt resource value: 0x7f090056 + public const int hockeyapp_button_background = 2131296342; - // aapt resource value: 0x7f080057 - public const int hockeyapp_button_background_pressed = 2131230807; + // aapt resource value: 0x7f090057 + public const int hockeyapp_button_background_pressed = 2131296343; - // aapt resource value: 0x7f080058 - public const int hockeyapp_button_background_selected = 2131230808; + // aapt resource value: 0x7f090058 + public const int hockeyapp_button_background_selected = 2131296344; - // aapt resource value: 0x7f080059 - public const int hockeyapp_text_black = 2131230809; + // aapt resource value: 0x7f090059 + public const int hockeyapp_text_black = 2131296345; - // aapt resource value: 0x7f08005a - public const int hockeyapp_text_light = 2131230810; + // aapt resource value: 0x7f09005a + public const int hockeyapp_text_light = 2131296346; - // aapt resource value: 0x7f08005b - public const int hockeyapp_text_normal = 2131230811; + // aapt resource value: 0x7f09005b + public const int hockeyapp_text_normal = 2131296347; - // aapt resource value: 0x7f08005c - public const int hockeyapp_text_white = 2131230812; + // aapt resource value: 0x7f09005c + public const int hockeyapp_text_white = 2131296348; - // aapt resource value: 0x7f080061 - public const int lightgray = 2131230817; + // aapt resource value: 0x7f090066 + public const int ic_launcher_background = 2131296358; - // aapt resource value: 0x7f080027 - public const int material_blue_grey_800 = 2131230759; + // aapt resource value: 0x7f090061 + public const int lightgray = 2131296353; - // aapt resource value: 0x7f080028 - public const int material_blue_grey_900 = 2131230760; + // aapt resource value: 0x7f090027 + public const int material_blue_grey_800 = 2131296295; - // aapt resource value: 0x7f080029 - public const int material_blue_grey_950 = 2131230761; + // aapt resource value: 0x7f090028 + public const int material_blue_grey_900 = 2131296296; - // aapt resource value: 0x7f08002a - public const int material_deep_teal_200 = 2131230762; + // aapt resource value: 0x7f090029 + public const int material_blue_grey_950 = 2131296297; - // aapt resource value: 0x7f08002b - public const int material_deep_teal_500 = 2131230763; + // aapt resource value: 0x7f09002a + public const int material_deep_teal_200 = 2131296298; - // aapt resource value: 0x7f08002c - public const int material_grey_100 = 2131230764; + // aapt resource value: 0x7f09002b + public const int material_deep_teal_500 = 2131296299; - // aapt resource value: 0x7f08002d - public const int material_grey_300 = 2131230765; + // aapt resource value: 0x7f09002c + public const int material_grey_100 = 2131296300; - // aapt resource value: 0x7f08002e - public const int material_grey_50 = 2131230766; + // aapt resource value: 0x7f09002d + public const int material_grey_300 = 2131296301; - // aapt resource value: 0x7f08002f - public const int material_grey_600 = 2131230767; + // aapt resource value: 0x7f09002e + public const int material_grey_50 = 2131296302; - // aapt resource value: 0x7f080030 - public const int material_grey_800 = 2131230768; + // aapt resource value: 0x7f09002f + public const int material_grey_600 = 2131296303; - // aapt resource value: 0x7f080031 - public const int material_grey_850 = 2131230769; + // aapt resource value: 0x7f090030 + public const int material_grey_800 = 2131296304; - // aapt resource value: 0x7f080032 - public const int material_grey_900 = 2131230770; + // aapt resource value: 0x7f090031 + public const int material_grey_850 = 2131296305; - // aapt resource value: 0x7f08000c - public const int notification_action_color_filter = 2131230732; + // aapt resource value: 0x7f090032 + public const int material_grey_900 = 2131296306; - // aapt resource value: 0x7f080033 - public const int notification_icon_bg_color = 2131230771; + // aapt resource value: 0x7f09000c + public const int notification_action_color_filter = 2131296268; - // aapt resource value: 0x7f080034 - public const int notification_material_background_media_default_color = 2131230772; + // aapt resource value: 0x7f090033 + public const int notification_icon_bg_color = 2131296307; - // aapt resource value: 0x7f080062 - public const int primary = 2131230818; + // aapt resource value: 0x7f090034 + public const int notification_material_background_media_default_color = 2131296308; - // aapt resource value: 0x7f080035 - public const int primary_dark_material_dark = 2131230773; + // aapt resource value: 0x7f090062 + public const int primary = 2131296354; - // aapt resource value: 0x7f080036 - public const int primary_dark_material_light = 2131230774; + // aapt resource value: 0x7f090035 + public const int primary_dark_material_dark = 2131296309; - // aapt resource value: 0x7f080037 - public const int primary_material_dark = 2131230775; + // aapt resource value: 0x7f090036 + public const int primary_dark_material_light = 2131296310; - // aapt resource value: 0x7f080038 - public const int primary_material_light = 2131230776; + // aapt resource value: 0x7f090037 + public const int primary_material_dark = 2131296311; - // aapt resource value: 0x7f080039 - public const int primary_text_default_material_dark = 2131230777; + // aapt resource value: 0x7f090038 + public const int primary_material_light = 2131296312; - // aapt resource value: 0x7f08003a - public const int primary_text_default_material_light = 2131230778; + // aapt resource value: 0x7f090039 + public const int primary_text_default_material_dark = 2131296313; - // aapt resource value: 0x7f08003b - public const int primary_text_disabled_material_dark = 2131230779; + // aapt resource value: 0x7f09003a + public const int primary_text_default_material_light = 2131296314; - // aapt resource value: 0x7f08003c - public const int primary_text_disabled_material_light = 2131230780; + // aapt resource value: 0x7f09003b + public const int primary_text_disabled_material_dark = 2131296315; - // aapt resource value: 0x7f08003d - public const int ripple_material_dark = 2131230781; + // aapt resource value: 0x7f09003c + public const int primary_text_disabled_material_light = 2131296316; - // aapt resource value: 0x7f08003e - public const int ripple_material_light = 2131230782; + // aapt resource value: 0x7f09003d + public const int ripple_material_dark = 2131296317; - // aapt resource value: 0x7f08003f - public const int secondary_text_default_material_dark = 2131230783; + // aapt resource value: 0x7f09003e + public const int ripple_material_light = 2131296318; - // aapt resource value: 0x7f080040 - public const int secondary_text_default_material_light = 2131230784; + // aapt resource value: 0x7f09003f + public const int secondary_text_default_material_dark = 2131296319; - // aapt resource value: 0x7f080041 - public const int secondary_text_disabled_material_dark = 2131230785; + // aapt resource value: 0x7f090040 + public const int secondary_text_default_material_light = 2131296320; - // aapt resource value: 0x7f080042 - public const int secondary_text_disabled_material_light = 2131230786; + // aapt resource value: 0x7f090041 + public const int secondary_text_disabled_material_dark = 2131296321; - // aapt resource value: 0x7f080043 - public const int switch_thumb_disabled_material_dark = 2131230787; + // aapt resource value: 0x7f090042 + public const int secondary_text_disabled_material_light = 2131296322; - // aapt resource value: 0x7f080044 - public const int switch_thumb_disabled_material_light = 2131230788; + // aapt resource value: 0x7f090043 + public const int switch_thumb_disabled_material_dark = 2131296323; - // aapt resource value: 0x7f080080 - public const int switch_thumb_material_dark = 2131230848; + // aapt resource value: 0x7f090044 + public const int switch_thumb_disabled_material_light = 2131296324; - // aapt resource value: 0x7f080081 - public const int switch_thumb_material_light = 2131230849; + // aapt resource value: 0x7f090081 + public const int switch_thumb_material_dark = 2131296385; - // aapt resource value: 0x7f080045 - public const int switch_thumb_normal_material_dark = 2131230789; + // aapt resource value: 0x7f090082 + public const int switch_thumb_material_light = 2131296386; - // aapt resource value: 0x7f080046 - public const int switch_thumb_normal_material_light = 2131230790; + // aapt resource value: 0x7f090045 + public const int switch_thumb_normal_material_dark = 2131296325; - // aapt resource value: 0x7f080065 - public const int tabtext = 2131230821; + // aapt resource value: 0x7f090046 + public const int switch_thumb_normal_material_light = 2131296326; - // aapt resource value: 0x7f08005d - public const int white = 2131230813; + // aapt resource value: 0x7f090065 + public const int tabtext = 2131296357; + + // aapt resource value: 0x7f09005d + public const int white = 2131296349; static Color() { @@ -3934,464 +3937,464 @@ namespace Bit.Android public partial class Dimension { - // aapt resource value: 0x7f0b0018 - public const int abc_action_bar_content_inset_material = 2131427352; + // aapt resource value: 0x7f0c0018 + public const int abc_action_bar_content_inset_material = 2131492888; - // aapt resource value: 0x7f0b0019 - public const int abc_action_bar_content_inset_with_nav = 2131427353; + // aapt resource value: 0x7f0c0019 + public const int abc_action_bar_content_inset_with_nav = 2131492889; - // aapt resource value: 0x7f0b000d - public const int abc_action_bar_default_height_material = 2131427341; + // aapt resource value: 0x7f0c000d + public const int abc_action_bar_default_height_material = 2131492877; - // aapt resource value: 0x7f0b001a - public const int abc_action_bar_default_padding_end_material = 2131427354; + // aapt resource value: 0x7f0c001a + public const int abc_action_bar_default_padding_end_material = 2131492890; - // aapt resource value: 0x7f0b001b - public const int abc_action_bar_default_padding_start_material = 2131427355; + // aapt resource value: 0x7f0c001b + public const int abc_action_bar_default_padding_start_material = 2131492891; - // aapt resource value: 0x7f0b0021 - public const int abc_action_bar_elevation_material = 2131427361; + // aapt resource value: 0x7f0c0021 + public const int abc_action_bar_elevation_material = 2131492897; - // aapt resource value: 0x7f0b0022 - public const int abc_action_bar_icon_vertical_padding_material = 2131427362; + // aapt resource value: 0x7f0c0022 + public const int abc_action_bar_icon_vertical_padding_material = 2131492898; - // aapt resource value: 0x7f0b0023 - public const int abc_action_bar_overflow_padding_end_material = 2131427363; + // aapt resource value: 0x7f0c0023 + public const int abc_action_bar_overflow_padding_end_material = 2131492899; - // aapt resource value: 0x7f0b0024 - public const int abc_action_bar_overflow_padding_start_material = 2131427364; + // aapt resource value: 0x7f0c0024 + public const int abc_action_bar_overflow_padding_start_material = 2131492900; - // aapt resource value: 0x7f0b000e - public const int abc_action_bar_progress_bar_size = 2131427342; + // aapt resource value: 0x7f0c000e + public const int abc_action_bar_progress_bar_size = 2131492878; - // aapt resource value: 0x7f0b0025 - public const int abc_action_bar_stacked_max_height = 2131427365; + // aapt resource value: 0x7f0c0025 + public const int abc_action_bar_stacked_max_height = 2131492901; - // aapt resource value: 0x7f0b0026 - public const int abc_action_bar_stacked_tab_max_width = 2131427366; + // aapt resource value: 0x7f0c0026 + public const int abc_action_bar_stacked_tab_max_width = 2131492902; - // aapt resource value: 0x7f0b0027 - public const int abc_action_bar_subtitle_bottom_margin_material = 2131427367; + // aapt resource value: 0x7f0c0027 + public const int abc_action_bar_subtitle_bottom_margin_material = 2131492903; - // aapt resource value: 0x7f0b0028 - public const int abc_action_bar_subtitle_top_margin_material = 2131427368; + // aapt resource value: 0x7f0c0028 + public const int abc_action_bar_subtitle_top_margin_material = 2131492904; - // aapt resource value: 0x7f0b0029 - public const int abc_action_button_min_height_material = 2131427369; + // aapt resource value: 0x7f0c0029 + public const int abc_action_button_min_height_material = 2131492905; - // aapt resource value: 0x7f0b002a - public const int abc_action_button_min_width_material = 2131427370; + // aapt resource value: 0x7f0c002a + public const int abc_action_button_min_width_material = 2131492906; - // aapt resource value: 0x7f0b002b - public const int abc_action_button_min_width_overflow_material = 2131427371; + // aapt resource value: 0x7f0c002b + public const int abc_action_button_min_width_overflow_material = 2131492907; - // aapt resource value: 0x7f0b000c - public const int abc_alert_dialog_button_bar_height = 2131427340; + // aapt resource value: 0x7f0c000c + public const int abc_alert_dialog_button_bar_height = 2131492876; - // aapt resource value: 0x7f0b002c - public const int abc_button_inset_horizontal_material = 2131427372; + // aapt resource value: 0x7f0c002c + public const int abc_button_inset_horizontal_material = 2131492908; - // aapt resource value: 0x7f0b002d - public const int abc_button_inset_vertical_material = 2131427373; + // aapt resource value: 0x7f0c002d + public const int abc_button_inset_vertical_material = 2131492909; - // aapt resource value: 0x7f0b002e - public const int abc_button_padding_horizontal_material = 2131427374; + // aapt resource value: 0x7f0c002e + public const int abc_button_padding_horizontal_material = 2131492910; - // aapt resource value: 0x7f0b002f - public const int abc_button_padding_vertical_material = 2131427375; + // aapt resource value: 0x7f0c002f + public const int abc_button_padding_vertical_material = 2131492911; - // aapt resource value: 0x7f0b0030 - public const int abc_cascading_menus_min_smallest_width = 2131427376; + // aapt resource value: 0x7f0c0030 + public const int abc_cascading_menus_min_smallest_width = 2131492912; - // aapt resource value: 0x7f0b0011 - public const int abc_config_prefDialogWidth = 2131427345; + // aapt resource value: 0x7f0c0011 + public const int abc_config_prefDialogWidth = 2131492881; - // aapt resource value: 0x7f0b0031 - public const int abc_control_corner_material = 2131427377; + // aapt resource value: 0x7f0c0031 + public const int abc_control_corner_material = 2131492913; - // aapt resource value: 0x7f0b0032 - public const int abc_control_inset_material = 2131427378; + // aapt resource value: 0x7f0c0032 + public const int abc_control_inset_material = 2131492914; - // aapt resource value: 0x7f0b0033 - public const int abc_control_padding_material = 2131427379; + // aapt resource value: 0x7f0c0033 + public const int abc_control_padding_material = 2131492915; - // aapt resource value: 0x7f0b0012 - public const int abc_dialog_fixed_height_major = 2131427346; + // aapt resource value: 0x7f0c0012 + public const int abc_dialog_fixed_height_major = 2131492882; - // aapt resource value: 0x7f0b0013 - public const int abc_dialog_fixed_height_minor = 2131427347; + // aapt resource value: 0x7f0c0013 + public const int abc_dialog_fixed_height_minor = 2131492883; - // aapt resource value: 0x7f0b0014 - public const int abc_dialog_fixed_width_major = 2131427348; + // aapt resource value: 0x7f0c0014 + public const int abc_dialog_fixed_width_major = 2131492884; - // aapt resource value: 0x7f0b0015 - public const int abc_dialog_fixed_width_minor = 2131427349; + // aapt resource value: 0x7f0c0015 + public const int abc_dialog_fixed_width_minor = 2131492885; - // aapt resource value: 0x7f0b0034 - public const int abc_dialog_list_padding_bottom_no_buttons = 2131427380; + // aapt resource value: 0x7f0c0034 + public const int abc_dialog_list_padding_bottom_no_buttons = 2131492916; - // aapt resource value: 0x7f0b0035 - public const int abc_dialog_list_padding_top_no_title = 2131427381; + // aapt resource value: 0x7f0c0035 + public const int abc_dialog_list_padding_top_no_title = 2131492917; - // aapt resource value: 0x7f0b0016 - public const int abc_dialog_min_width_major = 2131427350; + // aapt resource value: 0x7f0c0016 + public const int abc_dialog_min_width_major = 2131492886; - // aapt resource value: 0x7f0b0017 - public const int abc_dialog_min_width_minor = 2131427351; + // aapt resource value: 0x7f0c0017 + public const int abc_dialog_min_width_minor = 2131492887; - // aapt resource value: 0x7f0b0036 - public const int abc_dialog_padding_material = 2131427382; + // aapt resource value: 0x7f0c0036 + public const int abc_dialog_padding_material = 2131492918; - // aapt resource value: 0x7f0b0037 - public const int abc_dialog_padding_top_material = 2131427383; + // aapt resource value: 0x7f0c0037 + public const int abc_dialog_padding_top_material = 2131492919; - // aapt resource value: 0x7f0b0038 - public const int abc_dialog_title_divider_material = 2131427384; + // aapt resource value: 0x7f0c0038 + public const int abc_dialog_title_divider_material = 2131492920; - // aapt resource value: 0x7f0b0039 - public const int abc_disabled_alpha_material_dark = 2131427385; + // aapt resource value: 0x7f0c0039 + public const int abc_disabled_alpha_material_dark = 2131492921; - // aapt resource value: 0x7f0b003a - public const int abc_disabled_alpha_material_light = 2131427386; + // aapt resource value: 0x7f0c003a + public const int abc_disabled_alpha_material_light = 2131492922; - // aapt resource value: 0x7f0b003b - public const int abc_dropdownitem_icon_width = 2131427387; + // aapt resource value: 0x7f0c003b + public const int abc_dropdownitem_icon_width = 2131492923; - // aapt resource value: 0x7f0b003c - public const int abc_dropdownitem_text_padding_left = 2131427388; + // aapt resource value: 0x7f0c003c + public const int abc_dropdownitem_text_padding_left = 2131492924; - // aapt resource value: 0x7f0b003d - public const int abc_dropdownitem_text_padding_right = 2131427389; + // aapt resource value: 0x7f0c003d + public const int abc_dropdownitem_text_padding_right = 2131492925; - // aapt resource value: 0x7f0b003e - public const int abc_edit_text_inset_bottom_material = 2131427390; + // aapt resource value: 0x7f0c003e + public const int abc_edit_text_inset_bottom_material = 2131492926; - // aapt resource value: 0x7f0b003f - public const int abc_edit_text_inset_horizontal_material = 2131427391; + // aapt resource value: 0x7f0c003f + public const int abc_edit_text_inset_horizontal_material = 2131492927; - // aapt resource value: 0x7f0b0040 - public const int abc_edit_text_inset_top_material = 2131427392; + // aapt resource value: 0x7f0c0040 + public const int abc_edit_text_inset_top_material = 2131492928; - // aapt resource value: 0x7f0b0041 - public const int abc_floating_window_z = 2131427393; + // aapt resource value: 0x7f0c0041 + public const int abc_floating_window_z = 2131492929; - // aapt resource value: 0x7f0b0042 - public const int abc_list_item_padding_horizontal_material = 2131427394; + // aapt resource value: 0x7f0c0042 + public const int abc_list_item_padding_horizontal_material = 2131492930; - // aapt resource value: 0x7f0b0043 - public const int abc_panel_menu_list_width = 2131427395; + // aapt resource value: 0x7f0c0043 + public const int abc_panel_menu_list_width = 2131492931; - // aapt resource value: 0x7f0b0044 - public const int abc_progress_bar_height_material = 2131427396; + // aapt resource value: 0x7f0c0044 + public const int abc_progress_bar_height_material = 2131492932; - // aapt resource value: 0x7f0b0045 - public const int abc_search_view_preferred_height = 2131427397; + // aapt resource value: 0x7f0c0045 + public const int abc_search_view_preferred_height = 2131492933; - // aapt resource value: 0x7f0b0046 - public const int abc_search_view_preferred_width = 2131427398; + // aapt resource value: 0x7f0c0046 + public const int abc_search_view_preferred_width = 2131492934; - // aapt resource value: 0x7f0b0047 - public const int abc_seekbar_track_background_height_material = 2131427399; + // aapt resource value: 0x7f0c0047 + public const int abc_seekbar_track_background_height_material = 2131492935; - // aapt resource value: 0x7f0b0048 - public const int abc_seekbar_track_progress_height_material = 2131427400; + // aapt resource value: 0x7f0c0048 + public const int abc_seekbar_track_progress_height_material = 2131492936; - // aapt resource value: 0x7f0b0049 - public const int abc_select_dialog_padding_start_material = 2131427401; + // aapt resource value: 0x7f0c0049 + public const int abc_select_dialog_padding_start_material = 2131492937; - // aapt resource value: 0x7f0b001d - public const int abc_switch_padding = 2131427357; + // aapt resource value: 0x7f0c001d + public const int abc_switch_padding = 2131492893; - // aapt resource value: 0x7f0b004a - public const int abc_text_size_body_1_material = 2131427402; + // aapt resource value: 0x7f0c004a + public const int abc_text_size_body_1_material = 2131492938; - // aapt resource value: 0x7f0b004b - public const int abc_text_size_body_2_material = 2131427403; + // aapt resource value: 0x7f0c004b + public const int abc_text_size_body_2_material = 2131492939; - // aapt resource value: 0x7f0b004c - public const int abc_text_size_button_material = 2131427404; + // aapt resource value: 0x7f0c004c + public const int abc_text_size_button_material = 2131492940; - // aapt resource value: 0x7f0b004d - public const int abc_text_size_caption_material = 2131427405; + // aapt resource value: 0x7f0c004d + public const int abc_text_size_caption_material = 2131492941; - // aapt resource value: 0x7f0b004e - public const int abc_text_size_display_1_material = 2131427406; + // aapt resource value: 0x7f0c004e + public const int abc_text_size_display_1_material = 2131492942; - // aapt resource value: 0x7f0b004f - public const int abc_text_size_display_2_material = 2131427407; + // aapt resource value: 0x7f0c004f + public const int abc_text_size_display_2_material = 2131492943; - // aapt resource value: 0x7f0b0050 - public const int abc_text_size_display_3_material = 2131427408; + // aapt resource value: 0x7f0c0050 + public const int abc_text_size_display_3_material = 2131492944; - // aapt resource value: 0x7f0b0051 - public const int abc_text_size_display_4_material = 2131427409; + // aapt resource value: 0x7f0c0051 + public const int abc_text_size_display_4_material = 2131492945; - // aapt resource value: 0x7f0b0052 - public const int abc_text_size_headline_material = 2131427410; + // aapt resource value: 0x7f0c0052 + public const int abc_text_size_headline_material = 2131492946; - // aapt resource value: 0x7f0b0053 - public const int abc_text_size_large_material = 2131427411; + // aapt resource value: 0x7f0c0053 + public const int abc_text_size_large_material = 2131492947; - // aapt resource value: 0x7f0b0054 - public const int abc_text_size_medium_material = 2131427412; + // aapt resource value: 0x7f0c0054 + public const int abc_text_size_medium_material = 2131492948; - // aapt resource value: 0x7f0b0055 - public const int abc_text_size_menu_header_material = 2131427413; + // aapt resource value: 0x7f0c0055 + public const int abc_text_size_menu_header_material = 2131492949; - // aapt resource value: 0x7f0b0056 - public const int abc_text_size_menu_material = 2131427414; + // aapt resource value: 0x7f0c0056 + public const int abc_text_size_menu_material = 2131492950; - // aapt resource value: 0x7f0b0057 - public const int abc_text_size_small_material = 2131427415; + // aapt resource value: 0x7f0c0057 + public const int abc_text_size_small_material = 2131492951; - // aapt resource value: 0x7f0b0058 - public const int abc_text_size_subhead_material = 2131427416; + // aapt resource value: 0x7f0c0058 + public const int abc_text_size_subhead_material = 2131492952; - // aapt resource value: 0x7f0b000f - public const int abc_text_size_subtitle_material_toolbar = 2131427343; + // aapt resource value: 0x7f0c000f + public const int abc_text_size_subtitle_material_toolbar = 2131492879; - // aapt resource value: 0x7f0b0059 - public const int abc_text_size_title_material = 2131427417; + // aapt resource value: 0x7f0c0059 + public const int abc_text_size_title_material = 2131492953; - // aapt resource value: 0x7f0b0010 - public const int abc_text_size_title_material_toolbar = 2131427344; + // aapt resource value: 0x7f0c0010 + public const int abc_text_size_title_material_toolbar = 2131492880; - // aapt resource value: 0x7f0b0009 - public const int cardview_compat_inset_shadow = 2131427337; + // aapt resource value: 0x7f0c0009 + public const int cardview_compat_inset_shadow = 2131492873; - // aapt resource value: 0x7f0b000a - public const int cardview_default_elevation = 2131427338; + // aapt resource value: 0x7f0c000a + public const int cardview_default_elevation = 2131492874; - // aapt resource value: 0x7f0b000b - public const int cardview_default_radius = 2131427339; + // aapt resource value: 0x7f0c000b + public const int cardview_default_radius = 2131492875; - // aapt resource value: 0x7f0b0076 - public const int design_appbar_elevation = 2131427446; + // aapt resource value: 0x7f0c0076 + public const int design_appbar_elevation = 2131492982; - // aapt resource value: 0x7f0b0077 - public const int design_bottom_navigation_active_item_max_width = 2131427447; + // aapt resource value: 0x7f0c0077 + public const int design_bottom_navigation_active_item_max_width = 2131492983; - // aapt resource value: 0x7f0b0078 - public const int design_bottom_navigation_active_text_size = 2131427448; + // aapt resource value: 0x7f0c0078 + public const int design_bottom_navigation_active_text_size = 2131492984; - // aapt resource value: 0x7f0b0079 - public const int design_bottom_navigation_elevation = 2131427449; + // aapt resource value: 0x7f0c0079 + public const int design_bottom_navigation_elevation = 2131492985; - // aapt resource value: 0x7f0b007a - public const int design_bottom_navigation_height = 2131427450; + // aapt resource value: 0x7f0c007a + public const int design_bottom_navigation_height = 2131492986; - // aapt resource value: 0x7f0b007b - public const int design_bottom_navigation_item_max_width = 2131427451; + // aapt resource value: 0x7f0c007b + public const int design_bottom_navigation_item_max_width = 2131492987; - // aapt resource value: 0x7f0b007c - public const int design_bottom_navigation_item_min_width = 2131427452; + // aapt resource value: 0x7f0c007c + public const int design_bottom_navigation_item_min_width = 2131492988; - // aapt resource value: 0x7f0b007d - public const int design_bottom_navigation_margin = 2131427453; + // aapt resource value: 0x7f0c007d + public const int design_bottom_navigation_margin = 2131492989; - // aapt resource value: 0x7f0b007e - public const int design_bottom_navigation_shadow_height = 2131427454; + // aapt resource value: 0x7f0c007e + public const int design_bottom_navigation_shadow_height = 2131492990; - // aapt resource value: 0x7f0b007f - public const int design_bottom_navigation_text_size = 2131427455; + // aapt resource value: 0x7f0c007f + public const int design_bottom_navigation_text_size = 2131492991; - // aapt resource value: 0x7f0b0080 - public const int design_bottom_sheet_modal_elevation = 2131427456; + // aapt resource value: 0x7f0c0080 + public const int design_bottom_sheet_modal_elevation = 2131492992; - // aapt resource value: 0x7f0b0081 - public const int design_bottom_sheet_peek_height_min = 2131427457; + // aapt resource value: 0x7f0c0081 + public const int design_bottom_sheet_peek_height_min = 2131492993; - // aapt resource value: 0x7f0b0082 - public const int design_fab_border_width = 2131427458; + // aapt resource value: 0x7f0c0082 + public const int design_fab_border_width = 2131492994; - // aapt resource value: 0x7f0b0083 - public const int design_fab_elevation = 2131427459; + // aapt resource value: 0x7f0c0083 + public const int design_fab_elevation = 2131492995; - // aapt resource value: 0x7f0b0084 - public const int design_fab_image_size = 2131427460; + // aapt resource value: 0x7f0c0084 + public const int design_fab_image_size = 2131492996; - // aapt resource value: 0x7f0b0085 - public const int design_fab_size_mini = 2131427461; + // aapt resource value: 0x7f0c0085 + public const int design_fab_size_mini = 2131492997; - // aapt resource value: 0x7f0b0086 - public const int design_fab_size_normal = 2131427462; + // aapt resource value: 0x7f0c0086 + public const int design_fab_size_normal = 2131492998; - // aapt resource value: 0x7f0b0087 - public const int design_fab_translation_z_pressed = 2131427463; + // aapt resource value: 0x7f0c0087 + public const int design_fab_translation_z_pressed = 2131492999; - // aapt resource value: 0x7f0b0088 - public const int design_navigation_elevation = 2131427464; + // aapt resource value: 0x7f0c0088 + public const int design_navigation_elevation = 2131493000; - // aapt resource value: 0x7f0b0089 - public const int design_navigation_icon_padding = 2131427465; + // aapt resource value: 0x7f0c0089 + public const int design_navigation_icon_padding = 2131493001; - // aapt resource value: 0x7f0b008a - public const int design_navigation_icon_size = 2131427466; + // aapt resource value: 0x7f0c008a + public const int design_navigation_icon_size = 2131493002; - // aapt resource value: 0x7f0b006e - public const int design_navigation_max_width = 2131427438; + // aapt resource value: 0x7f0c006e + public const int design_navigation_max_width = 2131492974; - // aapt resource value: 0x7f0b008b - public const int design_navigation_padding_bottom = 2131427467; + // aapt resource value: 0x7f0c008b + public const int design_navigation_padding_bottom = 2131493003; - // aapt resource value: 0x7f0b008c - public const int design_navigation_separator_vertical_padding = 2131427468; + // aapt resource value: 0x7f0c008c + public const int design_navigation_separator_vertical_padding = 2131493004; - // aapt resource value: 0x7f0b006f - public const int design_snackbar_action_inline_max_width = 2131427439; + // aapt resource value: 0x7f0c006f + public const int design_snackbar_action_inline_max_width = 2131492975; - // aapt resource value: 0x7f0b0070 - public const int design_snackbar_background_corner_radius = 2131427440; + // aapt resource value: 0x7f0c0070 + public const int design_snackbar_background_corner_radius = 2131492976; - // aapt resource value: 0x7f0b008d - public const int design_snackbar_elevation = 2131427469; + // aapt resource value: 0x7f0c008d + public const int design_snackbar_elevation = 2131493005; - // aapt resource value: 0x7f0b0071 - public const int design_snackbar_extra_spacing_horizontal = 2131427441; + // aapt resource value: 0x7f0c0071 + public const int design_snackbar_extra_spacing_horizontal = 2131492977; - // aapt resource value: 0x7f0b0072 - public const int design_snackbar_max_width = 2131427442; + // aapt resource value: 0x7f0c0072 + public const int design_snackbar_max_width = 2131492978; - // aapt resource value: 0x7f0b0073 - public const int design_snackbar_min_width = 2131427443; + // aapt resource value: 0x7f0c0073 + public const int design_snackbar_min_width = 2131492979; - // aapt resource value: 0x7f0b008e - public const int design_snackbar_padding_horizontal = 2131427470; + // aapt resource value: 0x7f0c008e + public const int design_snackbar_padding_horizontal = 2131493006; - // aapt resource value: 0x7f0b008f - public const int design_snackbar_padding_vertical = 2131427471; + // aapt resource value: 0x7f0c008f + public const int design_snackbar_padding_vertical = 2131493007; - // aapt resource value: 0x7f0b0074 - public const int design_snackbar_padding_vertical_2lines = 2131427444; + // aapt resource value: 0x7f0c0074 + public const int design_snackbar_padding_vertical_2lines = 2131492980; - // aapt resource value: 0x7f0b0090 - public const int design_snackbar_text_size = 2131427472; + // aapt resource value: 0x7f0c0090 + public const int design_snackbar_text_size = 2131493008; - // aapt resource value: 0x7f0b0091 - public const int design_tab_max_width = 2131427473; + // aapt resource value: 0x7f0c0091 + public const int design_tab_max_width = 2131493009; - // aapt resource value: 0x7f0b0075 - public const int design_tab_scrollable_min_width = 2131427445; + // aapt resource value: 0x7f0c0075 + public const int design_tab_scrollable_min_width = 2131492981; - // aapt resource value: 0x7f0b0092 - public const int design_tab_text_size = 2131427474; + // aapt resource value: 0x7f0c0092 + public const int design_tab_text_size = 2131493010; - // aapt resource value: 0x7f0b0093 - public const int design_tab_text_size_2line = 2131427475; + // aapt resource value: 0x7f0c0093 + public const int design_tab_text_size_2line = 2131493011; - // aapt resource value: 0x7f0b005a - public const int disabled_alpha_material_dark = 2131427418; + // aapt resource value: 0x7f0c005a + public const int disabled_alpha_material_dark = 2131492954; - // aapt resource value: 0x7f0b005b - public const int disabled_alpha_material_light = 2131427419; + // aapt resource value: 0x7f0c005b + public const int disabled_alpha_material_light = 2131492955; - // aapt resource value: 0x7f0b0098 - public const int fab_elevation_lollipop = 2131427480; + // aapt resource value: 0x7f0c0098 + public const int fab_elevation_lollipop = 2131493016; - // aapt resource value: 0x7f0b0097 - public const int fab_scroll_threshold = 2131427479; + // aapt resource value: 0x7f0c0097 + public const int fab_scroll_threshold = 2131493015; - // aapt resource value: 0x7f0b0096 - public const int fab_shadow_size = 2131427478; + // aapt resource value: 0x7f0c0096 + public const int fab_shadow_size = 2131493014; - // aapt resource value: 0x7f0b0095 - public const int fab_size_mini = 2131427477; + // aapt resource value: 0x7f0c0095 + public const int fab_size_mini = 2131493013; - // aapt resource value: 0x7f0b0094 - public const int fab_size_normal = 2131427476; + // aapt resource value: 0x7f0c0094 + public const int fab_size_normal = 2131493012; - // aapt resource value: 0x7f0b005c - public const int highlight_alpha_material_colored = 2131427420; + // aapt resource value: 0x7f0c005c + public const int highlight_alpha_material_colored = 2131492956; - // aapt resource value: 0x7f0b005d - public const int highlight_alpha_material_dark = 2131427421; + // aapt resource value: 0x7f0c005d + public const int highlight_alpha_material_dark = 2131492957; - // aapt resource value: 0x7f0b005e - public const int highlight_alpha_material_light = 2131427422; + // aapt resource value: 0x7f0c005e + public const int highlight_alpha_material_light = 2131492958; - // aapt resource value: 0x7f0b005f - public const int hint_alpha_material_dark = 2131427423; + // aapt resource value: 0x7f0c005f + public const int hint_alpha_material_dark = 2131492959; - // aapt resource value: 0x7f0b0060 - public const int hint_alpha_material_light = 2131427424; + // aapt resource value: 0x7f0c0060 + public const int hint_alpha_material_light = 2131492960; - // aapt resource value: 0x7f0b0061 - public const int hint_pressed_alpha_material_dark = 2131427425; + // aapt resource value: 0x7f0c0061 + public const int hint_pressed_alpha_material_dark = 2131492961; - // aapt resource value: 0x7f0b0062 - public const int hint_pressed_alpha_material_light = 2131427426; + // aapt resource value: 0x7f0c0062 + public const int hint_pressed_alpha_material_light = 2131492962; - // aapt resource value: 0x7f0b0000 - public const int item_touch_helper_max_drag_scroll_per_frame = 2131427328; + // aapt resource value: 0x7f0c0000 + public const int item_touch_helper_max_drag_scroll_per_frame = 2131492864; - // aapt resource value: 0x7f0b0001 - public const int item_touch_helper_swipe_escape_max_velocity = 2131427329; + // aapt resource value: 0x7f0c0001 + public const int item_touch_helper_swipe_escape_max_velocity = 2131492865; - // aapt resource value: 0x7f0b0002 - public const int item_touch_helper_swipe_escape_velocity = 2131427330; + // aapt resource value: 0x7f0c0002 + public const int item_touch_helper_swipe_escape_velocity = 2131492866; - // aapt resource value: 0x7f0b0003 - public const int mr_controller_volume_group_list_item_height = 2131427331; + // aapt resource value: 0x7f0c0003 + public const int mr_controller_volume_group_list_item_height = 2131492867; - // aapt resource value: 0x7f0b0004 - public const int mr_controller_volume_group_list_item_icon_size = 2131427332; + // aapt resource value: 0x7f0c0004 + public const int mr_controller_volume_group_list_item_icon_size = 2131492868; - // aapt resource value: 0x7f0b0005 - public const int mr_controller_volume_group_list_max_height = 2131427333; + // aapt resource value: 0x7f0c0005 + public const int mr_controller_volume_group_list_max_height = 2131492869; - // aapt resource value: 0x7f0b0008 - public const int mr_controller_volume_group_list_padding_top = 2131427336; + // aapt resource value: 0x7f0c0008 + public const int mr_controller_volume_group_list_padding_top = 2131492872; - // aapt resource value: 0x7f0b0006 - public const int mr_dialog_fixed_width_major = 2131427334; + // aapt resource value: 0x7f0c0006 + public const int mr_dialog_fixed_width_major = 2131492870; - // aapt resource value: 0x7f0b0007 - public const int mr_dialog_fixed_width_minor = 2131427335; + // aapt resource value: 0x7f0c0007 + public const int mr_dialog_fixed_width_minor = 2131492871; - // aapt resource value: 0x7f0b0063 - public const int notification_action_icon_size = 2131427427; + // aapt resource value: 0x7f0c0063 + public const int notification_action_icon_size = 2131492963; - // aapt resource value: 0x7f0b0064 - public const int notification_action_text_size = 2131427428; + // aapt resource value: 0x7f0c0064 + public const int notification_action_text_size = 2131492964; - // aapt resource value: 0x7f0b0065 - public const int notification_big_circle_margin = 2131427429; + // aapt resource value: 0x7f0c0065 + public const int notification_big_circle_margin = 2131492965; - // aapt resource value: 0x7f0b001e - public const int notification_content_margin_start = 2131427358; + // aapt resource value: 0x7f0c001e + public const int notification_content_margin_start = 2131492894; - // aapt resource value: 0x7f0b0066 - public const int notification_large_icon_height = 2131427430; + // aapt resource value: 0x7f0c0066 + public const int notification_large_icon_height = 2131492966; - // aapt resource value: 0x7f0b0067 - public const int notification_large_icon_width = 2131427431; + // aapt resource value: 0x7f0c0067 + public const int notification_large_icon_width = 2131492967; - // aapt resource value: 0x7f0b001f - public const int notification_main_column_padding_top = 2131427359; + // aapt resource value: 0x7f0c001f + public const int notification_main_column_padding_top = 2131492895; - // aapt resource value: 0x7f0b0020 - public const int notification_media_narrow_margin = 2131427360; + // aapt resource value: 0x7f0c0020 + public const int notification_media_narrow_margin = 2131492896; - // aapt resource value: 0x7f0b0068 - public const int notification_right_icon_size = 2131427432; + // aapt resource value: 0x7f0c0068 + public const int notification_right_icon_size = 2131492968; - // aapt resource value: 0x7f0b001c - public const int notification_right_side_padding_top = 2131427356; + // aapt resource value: 0x7f0c001c + public const int notification_right_side_padding_top = 2131492892; - // aapt resource value: 0x7f0b0069 - public const int notification_small_icon_background_padding = 2131427433; + // aapt resource value: 0x7f0c0069 + public const int notification_small_icon_background_padding = 2131492969; - // aapt resource value: 0x7f0b006a - public const int notification_small_icon_size_as_large = 2131427434; + // aapt resource value: 0x7f0c006a + public const int notification_small_icon_size_as_large = 2131492970; - // aapt resource value: 0x7f0b006b - public const int notification_subtext_size = 2131427435; + // aapt resource value: 0x7f0c006b + public const int notification_subtext_size = 2131492971; - // aapt resource value: 0x7f0b006c - public const int notification_top_pad = 2131427436; + // aapt resource value: 0x7f0c006c + public const int notification_top_pad = 2131492972; - // aapt resource value: 0x7f0b006d - public const int notification_top_pad_large_text = 2131427437; + // aapt resource value: 0x7f0c006d + public const int notification_top_pad_large_text = 2131492973; static Dimension() { @@ -5481,674 +5484,674 @@ namespace Bit.Android public partial class Id { - // aapt resource value: 0x7f0c00c8 - public const int action0 = 2131493064; + // aapt resource value: 0x7f0d00c8 + public const int action0 = 2131558600; - // aapt resource value: 0x7f0c006b - public const int action_bar = 2131492971; + // aapt resource value: 0x7f0d006b + public const int action_bar = 2131558507; - // aapt resource value: 0x7f0c0001 - public const int action_bar_activity_content = 2131492865; + // aapt resource value: 0x7f0d0001 + public const int action_bar_activity_content = 2131558401; - // aapt resource value: 0x7f0c006a - public const int action_bar_container = 2131492970; + // aapt resource value: 0x7f0d006a + public const int action_bar_container = 2131558506; - // aapt resource value: 0x7f0c0066 - public const int action_bar_root = 2131492966; + // aapt resource value: 0x7f0d0066 + public const int action_bar_root = 2131558502; - // aapt resource value: 0x7f0c0002 - public const int action_bar_spinner = 2131492866; + // aapt resource value: 0x7f0d0002 + public const int action_bar_spinner = 2131558402; - // aapt resource value: 0x7f0c0049 - public const int action_bar_subtitle = 2131492937; + // aapt resource value: 0x7f0d0049 + public const int action_bar_subtitle = 2131558473; - // aapt resource value: 0x7f0c0048 - public const int action_bar_title = 2131492936; + // aapt resource value: 0x7f0d0048 + public const int action_bar_title = 2131558472; - // aapt resource value: 0x7f0c00c5 - public const int action_container = 2131493061; + // aapt resource value: 0x7f0d00c5 + public const int action_container = 2131558597; - // aapt resource value: 0x7f0c006c - public const int action_context_bar = 2131492972; + // aapt resource value: 0x7f0d006c + public const int action_context_bar = 2131558508; - // aapt resource value: 0x7f0c00cc - public const int action_divider = 2131493068; + // aapt resource value: 0x7f0d00cc + public const int action_divider = 2131558604; - // aapt resource value: 0x7f0c00c6 - public const int action_image = 2131493062; + // aapt resource value: 0x7f0d00c6 + public const int action_image = 2131558598; - // aapt resource value: 0x7f0c0003 - public const int action_menu_divider = 2131492867; + // aapt resource value: 0x7f0d0003 + public const int action_menu_divider = 2131558403; - // aapt resource value: 0x7f0c0004 - public const int action_menu_presenter = 2131492868; + // aapt resource value: 0x7f0d0004 + public const int action_menu_presenter = 2131558404; - // aapt resource value: 0x7f0c0068 - public const int action_mode_bar = 2131492968; + // aapt resource value: 0x7f0d0068 + public const int action_mode_bar = 2131558504; - // aapt resource value: 0x7f0c0067 - public const int action_mode_bar_stub = 2131492967; + // aapt resource value: 0x7f0d0067 + public const int action_mode_bar_stub = 2131558503; - // aapt resource value: 0x7f0c004a - public const int action_mode_close_button = 2131492938; + // aapt resource value: 0x7f0d004a + public const int action_mode_close_button = 2131558474; - // aapt resource value: 0x7f0c00c7 - public const int action_text = 2131493063; + // aapt resource value: 0x7f0d00c7 + public const int action_text = 2131558599; - // aapt resource value: 0x7f0c00d5 - public const int actions = 2131493077; + // aapt resource value: 0x7f0d00d5 + public const int actions = 2131558613; - // aapt resource value: 0x7f0c004b - public const int activity_chooser_view_content = 2131492939; + // aapt resource value: 0x7f0d004b + public const int activity_chooser_view_content = 2131558475; - // aapt resource value: 0x7f0c0026 - public const int add = 2131492902; + // aapt resource value: 0x7f0d0026 + public const int add = 2131558438; - // aapt resource value: 0x7f0c000f - public const int adjust_height = 2131492879; + // aapt resource value: 0x7f0d000f + public const int adjust_height = 2131558415; - // aapt resource value: 0x7f0c0010 - public const int adjust_width = 2131492880; + // aapt resource value: 0x7f0d0010 + public const int adjust_width = 2131558416; - // aapt resource value: 0x7f0c005f - public const int alertTitle = 2131492959; + // aapt resource value: 0x7f0d005f + public const int alertTitle = 2131558495; - // aapt resource value: 0x7f0c0044 - public const int all = 2131492932; + // aapt resource value: 0x7f0d0044 + public const int all = 2131558468; - // aapt resource value: 0x7f0c002b - public const int always = 2131492907; + // aapt resource value: 0x7f0d002b + public const int always = 2131558443; - // aapt resource value: 0x7f0c0015 - public const int auto = 2131492885; + // aapt resource value: 0x7f0d0015 + public const int auto = 2131558421; - // aapt resource value: 0x7f0c0028 - public const int beginning = 2131492904; + // aapt resource value: 0x7f0d0028 + public const int beginning = 2131558440; - // aapt resource value: 0x7f0c0030 - public const int bottom = 2131492912; + // aapt resource value: 0x7f0d0030 + public const int bottom = 2131558448; - // aapt resource value: 0x7f0c0052 - public const int buttonPanel = 2131492946; + // aapt resource value: 0x7f0d0052 + public const int buttonPanel = 2131558482; - // aapt resource value: 0x7f0c009c - public const int button_add_response = 2131493020; + // aapt resource value: 0x7f0d009c + public const int button_add_response = 2131558556; - // aapt resource value: 0x7f0c0097 - public const int button_attachment = 2131493015; + // aapt resource value: 0x7f0d0097 + public const int button_attachment = 2131558551; - // aapt resource value: 0x7f0c00a1 - public const int button_login = 2131493025; + // aapt resource value: 0x7f0d00a1 + public const int button_login = 2131558561; - // aapt resource value: 0x7f0c009d - public const int button_refresh = 2131493021; + // aapt resource value: 0x7f0d009d + public const int button_refresh = 2131558557; - // aapt resource value: 0x7f0c0098 - public const int button_send = 2131493016; + // aapt resource value: 0x7f0d0098 + public const int button_send = 2131558552; - // aapt resource value: 0x7f0c00a5 - public const int button_update = 2131493029; + // aapt resource value: 0x7f0d00a5 + public const int button_update = 2131558565; - // aapt resource value: 0x7f0c00c9 - public const int cancel_action = 2131493065; + // aapt resource value: 0x7f0d00c9 + public const int cancel_action = 2131558601; - // aapt resource value: 0x7f0c0037 - public const int center = 2131492919; + // aapt resource value: 0x7f0d0037 + public const int center = 2131558455; - // aapt resource value: 0x7f0c0038 - public const int center_horizontal = 2131492920; + // aapt resource value: 0x7f0d0038 + public const int center_horizontal = 2131558456; - // aapt resource value: 0x7f0c0039 - public const int center_vertical = 2131492921; + // aapt resource value: 0x7f0d0039 + public const int center_vertical = 2131558457; - // aapt resource value: 0x7f0c0062 - public const int checkbox = 2131492962; + // aapt resource value: 0x7f0d0062 + public const int checkbox = 2131558498; - // aapt resource value: 0x7f0c00d1 - public const int chronometer = 2131493073; + // aapt resource value: 0x7f0d00d1 + public const int chronometer = 2131558609; - // aapt resource value: 0x7f0c0040 - public const int clip_horizontal = 2131492928; + // aapt resource value: 0x7f0d0040 + public const int clip_horizontal = 2131558464; - // aapt resource value: 0x7f0c0041 - public const int clip_vertical = 2131492929; + // aapt resource value: 0x7f0d0041 + public const int clip_vertical = 2131558465; - // aapt resource value: 0x7f0c002c - public const int collapseActionView = 2131492908; + // aapt resource value: 0x7f0d002c + public const int collapseActionView = 2131558444; - // aapt resource value: 0x7f0c007e - public const int container = 2131492990; + // aapt resource value: 0x7f0d007e + public const int container = 2131558526; - // aapt resource value: 0x7f0c00dc - public const int contentFrame = 2131493084; + // aapt resource value: 0x7f0d00dc + public const int contentFrame = 2131558620; - // aapt resource value: 0x7f0c0055 - public const int contentPanel = 2131492949; + // aapt resource value: 0x7f0d0055 + public const int contentPanel = 2131558485; - // aapt resource value: 0x7f0c007f - public const int coordinator = 2131492991; + // aapt resource value: 0x7f0d007f + public const int coordinator = 2131558527; - // aapt resource value: 0x7f0c005c - public const int custom = 2131492956; + // aapt resource value: 0x7f0d005c + public const int custom = 2131558492; - // aapt resource value: 0x7f0c005b - public const int customPanel = 2131492955; + // aapt resource value: 0x7f0d005b + public const int customPanel = 2131558491; - // aapt resource value: 0x7f0c0016 - public const int dark = 2131492886; + // aapt resource value: 0x7f0d0016 + public const int dark = 2131558422; - // aapt resource value: 0x7f0c0069 - public const int decor_content_parent = 2131492969; + // aapt resource value: 0x7f0d0069 + public const int decor_content_parent = 2131558505; - // aapt resource value: 0x7f0c004e - public const int default_activity_button = 2131492942; + // aapt resource value: 0x7f0d004e + public const int default_activity_button = 2131558478; - // aapt resource value: 0x7f0c0081 - public const int design_bottom_sheet = 2131492993; + // aapt resource value: 0x7f0d0081 + public const int design_bottom_sheet = 2131558529; - // aapt resource value: 0x7f0c0088 - public const int design_menu_item_action_area = 2131493000; + // aapt resource value: 0x7f0d0088 + public const int design_menu_item_action_area = 2131558536; - // aapt resource value: 0x7f0c0087 - public const int design_menu_item_action_area_stub = 2131492999; + // aapt resource value: 0x7f0d0087 + public const int design_menu_item_action_area_stub = 2131558535; - // aapt resource value: 0x7f0c0086 - public const int design_menu_item_text = 2131492998; + // aapt resource value: 0x7f0d0086 + public const int design_menu_item_text = 2131558534; - // aapt resource value: 0x7f0c0085 - public const int design_navigation_view = 2131492997; + // aapt resource value: 0x7f0d0085 + public const int design_navigation_view = 2131558533; - // aapt resource value: 0x7f0c001b - public const int disableHome = 2131492891; + // aapt resource value: 0x7f0d001b + public const int disableHome = 2131558427; - // aapt resource value: 0x7f0c006d - public const int edit_query = 2131492973; + // aapt resource value: 0x7f0d006d + public const int edit_query = 2131558509; - // aapt resource value: 0x7f0c0029 - public const int end = 2131492905; + // aapt resource value: 0x7f0d0029 + public const int end = 2131558441; - // aapt resource value: 0x7f0c00d9 - public const int end_padder = 2131493081; + // aapt resource value: 0x7f0d00d9 + public const int end_padder = 2131558617; - // aapt resource value: 0x7f0c0032 - public const int enterAlways = 2131492914; + // aapt resource value: 0x7f0d0032 + public const int enterAlways = 2131558450; - // aapt resource value: 0x7f0c0033 - public const int enterAlwaysCollapsed = 2131492915; + // aapt resource value: 0x7f0d0033 + public const int enterAlwaysCollapsed = 2131558451; - // aapt resource value: 0x7f0c0034 - public const int exitUntilCollapsed = 2131492916; + // aapt resource value: 0x7f0d0034 + public const int exitUntilCollapsed = 2131558452; - // aapt resource value: 0x7f0c004c - public const int expand_activities_button = 2131492940; + // aapt resource value: 0x7f0d004c + public const int expand_activities_button = 2131558476; - // aapt resource value: 0x7f0c0061 - public const int expanded_menu = 2131492961; + // aapt resource value: 0x7f0d0061 + public const int expanded_menu = 2131558497; - // aapt resource value: 0x7f0c0042 - public const int fill = 2131492930; + // aapt resource value: 0x7f0d0042 + public const int fill = 2131558466; - // aapt resource value: 0x7f0c0043 - public const int fill_horizontal = 2131492931; + // aapt resource value: 0x7f0d0043 + public const int fill_horizontal = 2131558467; - // aapt resource value: 0x7f0c003a - public const int fill_vertical = 2131492922; + // aapt resource value: 0x7f0d003a + public const int fill_vertical = 2131558458; - // aapt resource value: 0x7f0c008d - public const int fingerprint_btnCancel = 2131493005; + // aapt resource value: 0x7f0d008d + public const int fingerprint_btnCancel = 2131558541; - // aapt resource value: 0x7f0c008e - public const int fingerprint_btnFallback = 2131493006; + // aapt resource value: 0x7f0d008e + public const int fingerprint_btnFallback = 2131558542; - // aapt resource value: 0x7f0c008a - public const int fingerprint_imgFingerprint = 2131493002; + // aapt resource value: 0x7f0d008a + public const int fingerprint_imgFingerprint = 2131558538; - // aapt resource value: 0x7f0c008b - public const int fingerprint_txtHelp = 2131493003; + // aapt resource value: 0x7f0d008b + public const int fingerprint_txtHelp = 2131558539; - // aapt resource value: 0x7f0c008c - public const int fingerprint_txtReason = 2131493004; + // aapt resource value: 0x7f0d008c + public const int fingerprint_txtReason = 2131558540; - // aapt resource value: 0x7f0c0046 - public const int @fixed = 2131492934; + // aapt resource value: 0x7f0d0046 + public const int @fixed = 2131558470; - // aapt resource value: 0x7f0c0005 - public const int home = 2131492869; + // aapt resource value: 0x7f0d0005 + public const int home = 2131558405; - // aapt resource value: 0x7f0c001c - public const int homeAsUp = 2131492892; + // aapt resource value: 0x7f0d001c + public const int homeAsUp = 2131558428; - // aapt resource value: 0x7f0c0050 - public const int icon = 2131492944; + // aapt resource value: 0x7f0d0050 + public const int icon = 2131558480; - // aapt resource value: 0x7f0c00d6 - public const int icon_group = 2131493078; + // aapt resource value: 0x7f0d00d6 + public const int icon_group = 2131558614; - // aapt resource value: 0x7f0c0012 - public const int icon_only = 2131492882; + // aapt resource value: 0x7f0d0012 + public const int icon_only = 2131558418; - // aapt resource value: 0x7f0c002d - public const int ifRoom = 2131492909; + // aapt resource value: 0x7f0d002d + public const int ifRoom = 2131558445; - // aapt resource value: 0x7f0c004d - public const int image = 2131492941; + // aapt resource value: 0x7f0d004d + public const int image = 2131558477; - // aapt resource value: 0x7f0c00d2 - public const int info = 2131493074; + // aapt resource value: 0x7f0d00d2 + public const int info = 2131558610; - // aapt resource value: 0x7f0c0093 - public const int input_email = 2131493011; + // aapt resource value: 0x7f0d0093 + public const int input_email = 2131558547; - // aapt resource value: 0x7f0c0095 - public const int input_message = 2131493013; + // aapt resource value: 0x7f0d0095 + public const int input_message = 2131558549; - // aapt resource value: 0x7f0c0092 - public const int input_name = 2131493010; + // aapt resource value: 0x7f0d0092 + public const int input_name = 2131558546; - // aapt resource value: 0x7f0c00a0 - public const int input_password = 2131493024; + // aapt resource value: 0x7f0d00a0 + public const int input_password = 2131558560; - // aapt resource value: 0x7f0c0094 - public const int input_subject = 2131493012; + // aapt resource value: 0x7f0d0094 + public const int input_subject = 2131558548; - // aapt resource value: 0x7f0c0000 - public const int item_touch_helper_previous_elevation = 2131492864; + // aapt resource value: 0x7f0d0000 + public const int item_touch_helper_previous_elevation = 2131558400; - // aapt resource value: 0x7f0c00a7 - public const int label_author = 2131493031; + // aapt resource value: 0x7f0d00a7 + public const int label_author = 2131558567; - // aapt resource value: 0x7f0c00a8 - public const int label_date = 2131493032; + // aapt resource value: 0x7f0d00a8 + public const int label_date = 2131558568; - // aapt resource value: 0x7f0c009a - public const int label_last_updated = 2131493018; + // aapt resource value: 0x7f0d009a + public const int label_last_updated = 2131558554; - // aapt resource value: 0x7f0c008f - public const int label_message = 2131493007; + // aapt resource value: 0x7f0d008f + public const int label_message = 2131558543; - // aapt resource value: 0x7f0c00a9 - public const int label_text = 2131493033; + // aapt resource value: 0x7f0d00a9 + public const int label_text = 2131558569; - // aapt resource value: 0x7f0c00a3 - public const int label_title = 2131493027; + // aapt resource value: 0x7f0d00a3 + public const int label_title = 2131558563; - // aapt resource value: 0x7f0c00a4 - public const int label_version = 2131493028; + // aapt resource value: 0x7f0d00a4 + public const int label_version = 2131558564; - // aapt resource value: 0x7f0c007d - public const int largeLabel = 2131492989; + // aapt resource value: 0x7f0d007d + public const int largeLabel = 2131558525; - // aapt resource value: 0x7f0c003b - public const int left = 2131492923; + // aapt resource value: 0x7f0d003b + public const int left = 2131558459; - // aapt resource value: 0x7f0c0017 - public const int light = 2131492887; + // aapt resource value: 0x7f0d0017 + public const int light = 2131558423; - // aapt resource value: 0x7f0c00d7 - public const int line1 = 2131493079; + // aapt resource value: 0x7f0d00d7 + public const int line1 = 2131558615; - // aapt resource value: 0x7f0c00d8 - public const int line3 = 2131493080; + // aapt resource value: 0x7f0d00d8 + public const int line3 = 2131558616; - // aapt resource value: 0x7f0c0018 - public const int listMode = 2131492888; + // aapt resource value: 0x7f0d0018 + public const int listMode = 2131558424; - // aapt resource value: 0x7f0c00aa - public const int list_attachments = 2131493034; + // aapt resource value: 0x7f0d00aa + public const int list_attachments = 2131558570; - // aapt resource value: 0x7f0c009e - public const int list_feedback_messages = 2131493022; + // aapt resource value: 0x7f0d009e + public const int list_feedback_messages = 2131558558; - // aapt resource value: 0x7f0c004f - public const int list_item = 2131492943; + // aapt resource value: 0x7f0d004f + public const int list_item = 2131558479; - // aapt resource value: 0x7f0c00de - public const int masked = 2131493086; + // aapt resource value: 0x7f0d00de + public const int masked = 2131558622; - // aapt resource value: 0x7f0c00cb - public const int media_actions = 2131493067; + // aapt resource value: 0x7f0d00cb + public const int media_actions = 2131558603; - // aapt resource value: 0x7f0c002a - public const int middle = 2131492906; + // aapt resource value: 0x7f0d002a + public const int middle = 2131558442; - // aapt resource value: 0x7f0c0045 - public const int mini = 2131492933; + // aapt resource value: 0x7f0d0045 + public const int mini = 2131558469; - // aapt resource value: 0x7f0c00b7 - public const int mr_art = 2131493047; + // aapt resource value: 0x7f0d00b7 + public const int mr_art = 2131558583; - // aapt resource value: 0x7f0c00ac - public const int mr_chooser_list = 2131493036; + // aapt resource value: 0x7f0d00ac + public const int mr_chooser_list = 2131558572; - // aapt resource value: 0x7f0c00af - public const int mr_chooser_route_desc = 2131493039; + // aapt resource value: 0x7f0d00af + public const int mr_chooser_route_desc = 2131558575; - // aapt resource value: 0x7f0c00ad - public const int mr_chooser_route_icon = 2131493037; + // aapt resource value: 0x7f0d00ad + public const int mr_chooser_route_icon = 2131558573; - // aapt resource value: 0x7f0c00ae - public const int mr_chooser_route_name = 2131493038; + // aapt resource value: 0x7f0d00ae + public const int mr_chooser_route_name = 2131558574; - // aapt resource value: 0x7f0c00ab - public const int mr_chooser_title = 2131493035; + // aapt resource value: 0x7f0d00ab + public const int mr_chooser_title = 2131558571; - // aapt resource value: 0x7f0c00b4 - public const int mr_close = 2131493044; + // aapt resource value: 0x7f0d00b4 + public const int mr_close = 2131558580; - // aapt resource value: 0x7f0c00ba - public const int mr_control_divider = 2131493050; + // aapt resource value: 0x7f0d00ba + public const int mr_control_divider = 2131558586; - // aapt resource value: 0x7f0c00c0 - public const int mr_control_playback_ctrl = 2131493056; + // aapt resource value: 0x7f0d00c0 + public const int mr_control_playback_ctrl = 2131558592; - // aapt resource value: 0x7f0c00c3 - public const int mr_control_subtitle = 2131493059; + // aapt resource value: 0x7f0d00c3 + public const int mr_control_subtitle = 2131558595; - // aapt resource value: 0x7f0c00c2 - public const int mr_control_title = 2131493058; + // aapt resource value: 0x7f0d00c2 + public const int mr_control_title = 2131558594; - // aapt resource value: 0x7f0c00c1 - public const int mr_control_title_container = 2131493057; + // aapt resource value: 0x7f0d00c1 + public const int mr_control_title_container = 2131558593; - // aapt resource value: 0x7f0c00b5 - public const int mr_custom_control = 2131493045; + // aapt resource value: 0x7f0d00b5 + public const int mr_custom_control = 2131558581; - // aapt resource value: 0x7f0c00b6 - public const int mr_default_control = 2131493046; + // aapt resource value: 0x7f0d00b6 + public const int mr_default_control = 2131558582; - // aapt resource value: 0x7f0c00b1 - public const int mr_dialog_area = 2131493041; + // aapt resource value: 0x7f0d00b1 + public const int mr_dialog_area = 2131558577; - // aapt resource value: 0x7f0c00b0 - public const int mr_expandable_area = 2131493040; + // aapt resource value: 0x7f0d00b0 + public const int mr_expandable_area = 2131558576; - // aapt resource value: 0x7f0c00c4 - public const int mr_group_expand_collapse = 2131493060; + // aapt resource value: 0x7f0d00c4 + public const int mr_group_expand_collapse = 2131558596; - // aapt resource value: 0x7f0c00b8 - public const int mr_media_main_control = 2131493048; + // aapt resource value: 0x7f0d00b8 + public const int mr_media_main_control = 2131558584; - // aapt resource value: 0x7f0c00b3 - public const int mr_name = 2131493043; + // aapt resource value: 0x7f0d00b3 + public const int mr_name = 2131558579; - // aapt resource value: 0x7f0c00b9 - public const int mr_playback_control = 2131493049; + // aapt resource value: 0x7f0d00b9 + public const int mr_playback_control = 2131558585; - // aapt resource value: 0x7f0c00b2 - public const int mr_title_bar = 2131493042; + // aapt resource value: 0x7f0d00b2 + public const int mr_title_bar = 2131558578; - // aapt resource value: 0x7f0c00bb - public const int mr_volume_control = 2131493051; + // aapt resource value: 0x7f0d00bb + public const int mr_volume_control = 2131558587; - // aapt resource value: 0x7f0c00bc - public const int mr_volume_group_list = 2131493052; + // aapt resource value: 0x7f0d00bc + public const int mr_volume_group_list = 2131558588; - // aapt resource value: 0x7f0c00be - public const int mr_volume_item_icon = 2131493054; + // aapt resource value: 0x7f0d00be + public const int mr_volume_item_icon = 2131558590; - // aapt resource value: 0x7f0c00bf - public const int mr_volume_slider = 2131493055; + // aapt resource value: 0x7f0d00bf + public const int mr_volume_slider = 2131558591; - // aapt resource value: 0x7f0c0021 - public const int multiply = 2131492897; + // aapt resource value: 0x7f0d0021 + public const int multiply = 2131558433; - // aapt resource value: 0x7f0c0084 - public const int navigation_header_container = 2131492996; + // aapt resource value: 0x7f0d0084 + public const int navigation_header_container = 2131558532; - // aapt resource value: 0x7f0c002e - public const int never = 2131492910; + // aapt resource value: 0x7f0d002e + public const int never = 2131558446; - // aapt resource value: 0x7f0c0011 - public const int none = 2131492881; + // aapt resource value: 0x7f0d0011 + public const int none = 2131558417; - // aapt resource value: 0x7f0c0019 - public const int normal = 2131492889; + // aapt resource value: 0x7f0d0019 + public const int normal = 2131558425; - // aapt resource value: 0x7f0c00d4 - public const int notification_background = 2131493076; + // aapt resource value: 0x7f0d00d4 + public const int notification_background = 2131558612; - // aapt resource value: 0x7f0c00ce - public const int notification_main_column = 2131493070; + // aapt resource value: 0x7f0d00ce + public const int notification_main_column = 2131558606; - // aapt resource value: 0x7f0c00cd - public const int notification_main_column_container = 2131493069; + // aapt resource value: 0x7f0d00cd + public const int notification_main_column_container = 2131558605; - // aapt resource value: 0x7f0c003e - public const int parallax = 2131492926; + // aapt resource value: 0x7f0d003e + public const int parallax = 2131558462; - // aapt resource value: 0x7f0c0054 - public const int parentPanel = 2131492948; + // aapt resource value: 0x7f0d0054 + public const int parentPanel = 2131558484; - // aapt resource value: 0x7f0c003f - public const int pin = 2131492927; + // aapt resource value: 0x7f0d003f + public const int pin = 2131558463; - // aapt resource value: 0x7f0c0006 - public const int progress_circular = 2131492870; + // aapt resource value: 0x7f0d0006 + public const int progress_circular = 2131558406; - // aapt resource value: 0x7f0c0007 - public const int progress_horizontal = 2131492871; + // aapt resource value: 0x7f0d0007 + public const int progress_horizontal = 2131558407; - // aapt resource value: 0x7f0c0064 - public const int radio = 2131492964; + // aapt resource value: 0x7f0d0064 + public const int radio = 2131558500; - // aapt resource value: 0x7f0c003c - public const int right = 2131492924; + // aapt resource value: 0x7f0d003c + public const int right = 2131558460; - // aapt resource value: 0x7f0c00d3 - public const int right_icon = 2131493075; + // aapt resource value: 0x7f0d00d3 + public const int right_icon = 2131558611; - // aapt resource value: 0x7f0c00cf - public const int right_side = 2131493071; + // aapt resource value: 0x7f0d00cf + public const int right_side = 2131558607; - // aapt resource value: 0x7f0c0022 - public const int screen = 2131492898; + // aapt resource value: 0x7f0d0022 + public const int screen = 2131558434; - // aapt resource value: 0x7f0c0035 - public const int scroll = 2131492917; + // aapt resource value: 0x7f0d0035 + public const int scroll = 2131558453; - // aapt resource value: 0x7f0c005a - public const int scrollIndicatorDown = 2131492954; + // aapt resource value: 0x7f0d005a + public const int scrollIndicatorDown = 2131558490; - // aapt resource value: 0x7f0c0056 - public const int scrollIndicatorUp = 2131492950; + // aapt resource value: 0x7f0d0056 + public const int scrollIndicatorUp = 2131558486; - // aapt resource value: 0x7f0c0057 - public const int scrollView = 2131492951; + // aapt resource value: 0x7f0d0057 + public const int scrollView = 2131558487; - // aapt resource value: 0x7f0c0047 - public const int scrollable = 2131492935; + // aapt resource value: 0x7f0d0047 + public const int scrollable = 2131558471; - // aapt resource value: 0x7f0c006f - public const int search_badge = 2131492975; + // aapt resource value: 0x7f0d006f + public const int search_badge = 2131558511; - // aapt resource value: 0x7f0c006e - public const int search_bar = 2131492974; + // aapt resource value: 0x7f0d006e + public const int search_bar = 2131558510; - // aapt resource value: 0x7f0c0070 - public const int search_button = 2131492976; + // aapt resource value: 0x7f0d0070 + public const int search_button = 2131558512; - // aapt resource value: 0x7f0c0075 - public const int search_close_btn = 2131492981; + // aapt resource value: 0x7f0d0075 + public const int search_close_btn = 2131558517; - // aapt resource value: 0x7f0c0071 - public const int search_edit_frame = 2131492977; + // aapt resource value: 0x7f0d0071 + public const int search_edit_frame = 2131558513; - // aapt resource value: 0x7f0c0077 - public const int search_go_btn = 2131492983; + // aapt resource value: 0x7f0d0077 + public const int search_go_btn = 2131558519; - // aapt resource value: 0x7f0c0072 - public const int search_mag_icon = 2131492978; + // aapt resource value: 0x7f0d0072 + public const int search_mag_icon = 2131558514; - // aapt resource value: 0x7f0c0073 - public const int search_plate = 2131492979; + // aapt resource value: 0x7f0d0073 + public const int search_plate = 2131558515; - // aapt resource value: 0x7f0c0074 - public const int search_src_text = 2131492980; + // aapt resource value: 0x7f0d0074 + public const int search_src_text = 2131558516; - // aapt resource value: 0x7f0c0078 - public const int search_voice_btn = 2131492984; + // aapt resource value: 0x7f0d0078 + public const int search_voice_btn = 2131558520; - // aapt resource value: 0x7f0c0079 - public const int select_dialog_listview = 2131492985; + // aapt resource value: 0x7f0d0079 + public const int select_dialog_listview = 2131558521; - // aapt resource value: 0x7f0c0063 - public const int shortcut = 2131492963; + // aapt resource value: 0x7f0d0063 + public const int shortcut = 2131558499; - // aapt resource value: 0x7f0c001d - public const int showCustom = 2131492893; + // aapt resource value: 0x7f0d001d + public const int showCustom = 2131558429; - // aapt resource value: 0x7f0c001e - public const int showHome = 2131492894; + // aapt resource value: 0x7f0d001e + public const int showHome = 2131558430; - // aapt resource value: 0x7f0c001f - public const int showTitle = 2131492895; + // aapt resource value: 0x7f0d001f + public const int showTitle = 2131558431; - // aapt resource value: 0x7f0c00da - public const int sliding_tabs = 2131493082; + // aapt resource value: 0x7f0d00da + public const int sliding_tabs = 2131558618; - // aapt resource value: 0x7f0c007c - public const int smallLabel = 2131492988; + // aapt resource value: 0x7f0d007c + public const int smallLabel = 2131558524; - // aapt resource value: 0x7f0c0083 - public const int snackbar_action = 2131492995; + // aapt resource value: 0x7f0d0083 + public const int snackbar_action = 2131558531; - // aapt resource value: 0x7f0c0082 - public const int snackbar_text = 2131492994; + // aapt resource value: 0x7f0d0082 + public const int snackbar_text = 2131558530; - // aapt resource value: 0x7f0c0036 - public const int snap = 2131492918; + // aapt resource value: 0x7f0d0036 + public const int snap = 2131558454; - // aapt resource value: 0x7f0c0053 - public const int spacer = 2131492947; + // aapt resource value: 0x7f0d0053 + public const int spacer = 2131558483; - // aapt resource value: 0x7f0c0008 - public const int split_action_bar = 2131492872; + // aapt resource value: 0x7f0d0008 + public const int split_action_bar = 2131558408; - // aapt resource value: 0x7f0c0023 - public const int src_atop = 2131492899; + // aapt resource value: 0x7f0d0023 + public const int src_atop = 2131558435; - // aapt resource value: 0x7f0c0024 - public const int src_in = 2131492900; + // aapt resource value: 0x7f0d0024 + public const int src_in = 2131558436; - // aapt resource value: 0x7f0c0025 - public const int src_over = 2131492901; + // aapt resource value: 0x7f0d0025 + public const int src_over = 2131558437; - // aapt resource value: 0x7f0c0013 - public const int standard = 2131492883; + // aapt resource value: 0x7f0d0013 + public const int standard = 2131558419; - // aapt resource value: 0x7f0c003d - public const int start = 2131492925; + // aapt resource value: 0x7f0d003d + public const int start = 2131558461; - // aapt resource value: 0x7f0c00ca - public const int status_bar_latest_event_content = 2131493066; + // aapt resource value: 0x7f0d00ca + public const int status_bar_latest_event_content = 2131558602; - // aapt resource value: 0x7f0c0065 - public const int submenuarrow = 2131492965; + // aapt resource value: 0x7f0d0065 + public const int submenuarrow = 2131558501; - // aapt resource value: 0x7f0c0076 - public const int submit_area = 2131492982; + // aapt resource value: 0x7f0d0076 + public const int submit_area = 2131558518; - // aapt resource value: 0x7f0c001a - public const int tabMode = 2131492890; + // aapt resource value: 0x7f0d001a + public const int tabMode = 2131558426; - // aapt resource value: 0x7f0c007a - public const int text = 2131492986; + // aapt resource value: 0x7f0d007a + public const int text = 2131558522; - // aapt resource value: 0x7f0c007b - public const int text2 = 2131492987; + // aapt resource value: 0x7f0d007b + public const int text2 = 2131558523; - // aapt resource value: 0x7f0c0059 - public const int textSpacerNoButtons = 2131492953; + // aapt resource value: 0x7f0d0059 + public const int textSpacerNoButtons = 2131558489; - // aapt resource value: 0x7f0c0058 - public const int textSpacerNoTitle = 2131492952; + // aapt resource value: 0x7f0d0058 + public const int textSpacerNoTitle = 2131558488; - // aapt resource value: 0x7f0c009f - public const int text_headline = 2131493023; + // aapt resource value: 0x7f0d009f + public const int text_headline = 2131558559; - // aapt resource value: 0x7f0c0089 - public const int text_input_password_toggle = 2131493001; + // aapt resource value: 0x7f0d0089 + public const int text_input_password_toggle = 2131558537; - // aapt resource value: 0x7f0c000c - public const int textinput_counter = 2131492876; + // aapt resource value: 0x7f0d000c + public const int textinput_counter = 2131558412; - // aapt resource value: 0x7f0c000d - public const int textinput_error = 2131492877; + // aapt resource value: 0x7f0d000d + public const int textinput_error = 2131558413; - // aapt resource value: 0x7f0c00d0 - public const int time = 2131493072; + // aapt resource value: 0x7f0d00d0 + public const int time = 2131558608; - // aapt resource value: 0x7f0c0051 - public const int title = 2131492945; + // aapt resource value: 0x7f0d0051 + public const int title = 2131558481; - // aapt resource value: 0x7f0c0060 - public const int titleDividerNoCustom = 2131492960; + // aapt resource value: 0x7f0d0060 + public const int titleDividerNoCustom = 2131558496; - // aapt resource value: 0x7f0c005e - public const int title_template = 2131492958; + // aapt resource value: 0x7f0d005e + public const int title_template = 2131558494; - // aapt resource value: 0x7f0c00db - public const int toolbar = 2131493083; + // aapt resource value: 0x7f0d00db + public const int toolbar = 2131558619; - // aapt resource value: 0x7f0c0031 - public const int top = 2131492913; + // aapt resource value: 0x7f0d0031 + public const int top = 2131558449; - // aapt resource value: 0x7f0c005d - public const int topPanel = 2131492957; + // aapt resource value: 0x7f0d005d + public const int topPanel = 2131558493; - // aapt resource value: 0x7f0c0080 - public const int touch_outside = 2131492992; + // aapt resource value: 0x7f0d0080 + public const int touch_outside = 2131558528; - // aapt resource value: 0x7f0c000a - public const int transition_current_scene = 2131492874; + // aapt resource value: 0x7f0d000a + public const int transition_current_scene = 2131558410; - // aapt resource value: 0x7f0c000b - public const int transition_scene_layoutid_cache = 2131492875; + // aapt resource value: 0x7f0d000b + public const int transition_scene_layoutid_cache = 2131558411; - // aapt resource value: 0x7f0c0009 - public const int up = 2131492873; + // aapt resource value: 0x7f0d0009 + public const int up = 2131558409; - // aapt resource value: 0x7f0c0020 - public const int useLogo = 2131492896; + // aapt resource value: 0x7f0d0020 + public const int useLogo = 2131558432; - // aapt resource value: 0x7f0c00a2 - public const int view_header = 2131493026; + // aapt resource value: 0x7f0d00a2 + public const int view_header = 2131558562; - // aapt resource value: 0x7f0c000e - public const int view_offset_helper = 2131492878; + // aapt resource value: 0x7f0d000e + public const int view_offset_helper = 2131558414; - // aapt resource value: 0x7f0c00dd - public const int visible = 2131493085; + // aapt resource value: 0x7f0d00dd + public const int visible = 2131558621; - // aapt resource value: 0x7f0c00bd - public const int volume_item_container = 2131493053; + // aapt resource value: 0x7f0d00bd + public const int volume_item_container = 2131558589; - // aapt resource value: 0x7f0c00a6 - public const int web_update_details = 2131493030; + // aapt resource value: 0x7f0d00a6 + public const int web_update_details = 2131558566; - // aapt resource value: 0x7f0c0014 - public const int wide = 2131492884; + // aapt resource value: 0x7f0d0014 + public const int wide = 2131558420; - // aapt resource value: 0x7f0c002f - public const int withText = 2131492911; + // aapt resource value: 0x7f0d002f + public const int withText = 2131558447; - // aapt resource value: 0x7f0c0027 - public const int wrap_content = 2131492903; + // aapt resource value: 0x7f0d0027 + public const int wrap_content = 2131558439; - // aapt resource value: 0x7f0c0096 - public const int wrapper_attachments = 2131493014; + // aapt resource value: 0x7f0d0096 + public const int wrapper_attachments = 2131558550; - // aapt resource value: 0x7f0c0091 - public const int wrapper_feedback = 2131493009; + // aapt resource value: 0x7f0d0091 + public const int wrapper_feedback = 2131558545; - // aapt resource value: 0x7f0c0090 - public const int wrapper_feedback_scroll = 2131493008; + // aapt resource value: 0x7f0d0090 + public const int wrapper_feedback_scroll = 2131558544; - // aapt resource value: 0x7f0c0099 - public const int wrapper_messages = 2131493017; + // aapt resource value: 0x7f0d0099 + public const int wrapper_messages = 2131558553; - // aapt resource value: 0x7f0c009b - public const int wrapper_messages_buttons = 2131493019; + // aapt resource value: 0x7f0d009b + public const int wrapper_messages_buttons = 2131558555; static Id() { @@ -6163,44 +6166,44 @@ namespace Bit.Android public partial class Integer { - // aapt resource value: 0x7f0a0004 - public const int abc_config_activityDefaultDur = 2131361796; + // aapt resource value: 0x7f0b0004 + public const int abc_config_activityDefaultDur = 2131427332; - // aapt resource value: 0x7f0a0005 - public const int abc_config_activityShortDur = 2131361797; + // aapt resource value: 0x7f0b0005 + public const int abc_config_activityShortDur = 2131427333; - // aapt resource value: 0x7f0a0009 - public const int app_bar_elevation_anim_duration = 2131361801; + // aapt resource value: 0x7f0b0009 + public const int app_bar_elevation_anim_duration = 2131427337; - // aapt resource value: 0x7f0a000a - public const int bottom_sheet_slide_duration = 2131361802; + // aapt resource value: 0x7f0b000a + public const int bottom_sheet_slide_duration = 2131427338; - // aapt resource value: 0x7f0a0006 - public const int cancel_button_image_alpha = 2131361798; + // aapt resource value: 0x7f0b0006 + public const int cancel_button_image_alpha = 2131427334; - // aapt resource value: 0x7f0a0008 - public const int design_snackbar_text_max_lines = 2131361800; + // aapt resource value: 0x7f0b0008 + public const int design_snackbar_text_max_lines = 2131427336; - // aapt resource value: 0x7f0a0000 - public const int google_play_services_version = 2131361792; + // aapt resource value: 0x7f0b0000 + public const int google_play_services_version = 2131427328; - // aapt resource value: 0x7f0a000b - public const int hide_password_duration = 2131361803; + // aapt resource value: 0x7f0b000b + public const int hide_password_duration = 2131427339; - // aapt resource value: 0x7f0a0001 - public const int mr_controller_volume_group_list_animation_duration_ms = 2131361793; + // aapt resource value: 0x7f0b0001 + public const int mr_controller_volume_group_list_animation_duration_ms = 2131427329; - // aapt resource value: 0x7f0a0002 - public const int mr_controller_volume_group_list_fade_in_duration_ms = 2131361794; + // aapt resource value: 0x7f0b0002 + public const int mr_controller_volume_group_list_fade_in_duration_ms = 2131427330; - // aapt resource value: 0x7f0a0003 - public const int mr_controller_volume_group_list_fade_out_duration_ms = 2131361795; + // aapt resource value: 0x7f0b0003 + public const int mr_controller_volume_group_list_fade_out_duration_ms = 2131427331; - // aapt resource value: 0x7f0a000c - public const int show_password_duration = 2131361804; + // aapt resource value: 0x7f0b000c + public const int show_password_duration = 2131427340; - // aapt resource value: 0x7f0a0007 - public const int status_bar_notification_info_maxnum = 2131361799; + // aapt resource value: 0x7f0b0007 + public const int status_bar_notification_info_maxnum = 2131427335; static Integer() { @@ -6215,11 +6218,11 @@ namespace Bit.Android public partial class Interpolator { - // aapt resource value: 0x7f060000 - public const int mr_fast_out_slow_in = 2131099648; + // aapt resource value: 0x7f070000 + public const int mr_fast_out_slow_in = 2131165184; - // aapt resource value: 0x7f060001 - public const int mr_linear_out_slow_in = 2131099649; + // aapt resource value: 0x7f070001 + public const int mr_linear_out_slow_in = 2131165185; static Interpolator() { @@ -6234,236 +6237,236 @@ namespace Bit.Android public partial class Layout { - // aapt resource value: 0x7f030000 - public const int abc_action_bar_title_item = 2130903040; + // aapt resource value: 0x7f040000 + public const int abc_action_bar_title_item = 2130968576; - // aapt resource value: 0x7f030001 - public const int abc_action_bar_up_container = 2130903041; + // aapt resource value: 0x7f040001 + public const int abc_action_bar_up_container = 2130968577; - // aapt resource value: 0x7f030002 - public const int abc_action_bar_view_list_nav_layout = 2130903042; + // aapt resource value: 0x7f040002 + public const int abc_action_bar_view_list_nav_layout = 2130968578; - // aapt resource value: 0x7f030003 - public const int abc_action_menu_item_layout = 2130903043; + // aapt resource value: 0x7f040003 + public const int abc_action_menu_item_layout = 2130968579; - // aapt resource value: 0x7f030004 - public const int abc_action_menu_layout = 2130903044; + // aapt resource value: 0x7f040004 + public const int abc_action_menu_layout = 2130968580; - // aapt resource value: 0x7f030005 - public const int abc_action_mode_bar = 2130903045; + // aapt resource value: 0x7f040005 + public const int abc_action_mode_bar = 2130968581; - // aapt resource value: 0x7f030006 - public const int abc_action_mode_close_item_material = 2130903046; + // aapt resource value: 0x7f040006 + public const int abc_action_mode_close_item_material = 2130968582; - // aapt resource value: 0x7f030007 - public const int abc_activity_chooser_view = 2130903047; + // aapt resource value: 0x7f040007 + public const int abc_activity_chooser_view = 2130968583; - // aapt resource value: 0x7f030008 - public const int abc_activity_chooser_view_list_item = 2130903048; + // aapt resource value: 0x7f040008 + public const int abc_activity_chooser_view_list_item = 2130968584; - // aapt resource value: 0x7f030009 - public const int abc_alert_dialog_button_bar_material = 2130903049; + // aapt resource value: 0x7f040009 + public const int abc_alert_dialog_button_bar_material = 2130968585; - // aapt resource value: 0x7f03000a - public const int abc_alert_dialog_material = 2130903050; + // aapt resource value: 0x7f04000a + public const int abc_alert_dialog_material = 2130968586; - // aapt resource value: 0x7f03000b - public const int abc_alert_dialog_title_material = 2130903051; + // aapt resource value: 0x7f04000b + public const int abc_alert_dialog_title_material = 2130968587; - // aapt resource value: 0x7f03000c - public const int abc_dialog_title_material = 2130903052; + // aapt resource value: 0x7f04000c + public const int abc_dialog_title_material = 2130968588; - // aapt resource value: 0x7f03000d - public const int abc_expanded_menu_layout = 2130903053; + // aapt resource value: 0x7f04000d + public const int abc_expanded_menu_layout = 2130968589; - // aapt resource value: 0x7f03000e - public const int abc_list_menu_item_checkbox = 2130903054; + // aapt resource value: 0x7f04000e + public const int abc_list_menu_item_checkbox = 2130968590; - // aapt resource value: 0x7f03000f - public const int abc_list_menu_item_icon = 2130903055; + // aapt resource value: 0x7f04000f + public const int abc_list_menu_item_icon = 2130968591; - // aapt resource value: 0x7f030010 - public const int abc_list_menu_item_layout = 2130903056; + // aapt resource value: 0x7f040010 + public const int abc_list_menu_item_layout = 2130968592; - // aapt resource value: 0x7f030011 - public const int abc_list_menu_item_radio = 2130903057; + // aapt resource value: 0x7f040011 + public const int abc_list_menu_item_radio = 2130968593; - // aapt resource value: 0x7f030012 - public const int abc_popup_menu_header_item_layout = 2130903058; + // aapt resource value: 0x7f040012 + public const int abc_popup_menu_header_item_layout = 2130968594; - // aapt resource value: 0x7f030013 - public const int abc_popup_menu_item_layout = 2130903059; + // aapt resource value: 0x7f040013 + public const int abc_popup_menu_item_layout = 2130968595; - // aapt resource value: 0x7f030014 - public const int abc_screen_content_include = 2130903060; + // aapt resource value: 0x7f040014 + public const int abc_screen_content_include = 2130968596; - // aapt resource value: 0x7f030015 - public const int abc_screen_simple = 2130903061; + // aapt resource value: 0x7f040015 + public const int abc_screen_simple = 2130968597; - // aapt resource value: 0x7f030016 - public const int abc_screen_simple_overlay_action_mode = 2130903062; + // aapt resource value: 0x7f040016 + public const int abc_screen_simple_overlay_action_mode = 2130968598; - // aapt resource value: 0x7f030017 - public const int abc_screen_toolbar = 2130903063; + // aapt resource value: 0x7f040017 + public const int abc_screen_toolbar = 2130968599; - // aapt resource value: 0x7f030018 - public const int abc_search_dropdown_item_icons_2line = 2130903064; + // aapt resource value: 0x7f040018 + public const int abc_search_dropdown_item_icons_2line = 2130968600; - // aapt resource value: 0x7f030019 - public const int abc_search_view = 2130903065; + // aapt resource value: 0x7f040019 + public const int abc_search_view = 2130968601; - // aapt resource value: 0x7f03001a - public const int abc_select_dialog_material = 2130903066; + // aapt resource value: 0x7f04001a + public const int abc_select_dialog_material = 2130968602; - // aapt resource value: 0x7f03001b - public const int autofill_listitem = 2130903067; + // aapt resource value: 0x7f04001b + public const int autofill_listitem = 2130968603; - // aapt resource value: 0x7f03001c - public const int design_bottom_navigation_item = 2130903068; + // aapt resource value: 0x7f04001c + public const int design_bottom_navigation_item = 2130968604; - // aapt resource value: 0x7f03001d - public const int design_bottom_sheet_dialog = 2130903069; + // aapt resource value: 0x7f04001d + public const int design_bottom_sheet_dialog = 2130968605; - // aapt resource value: 0x7f03001e - public const int design_layout_snackbar = 2130903070; + // aapt resource value: 0x7f04001e + public const int design_layout_snackbar = 2130968606; - // aapt resource value: 0x7f03001f - public const int design_layout_snackbar_include = 2130903071; + // aapt resource value: 0x7f04001f + public const int design_layout_snackbar_include = 2130968607; - // aapt resource value: 0x7f030020 - public const int design_layout_tab_icon = 2130903072; + // aapt resource value: 0x7f040020 + public const int design_layout_tab_icon = 2130968608; - // aapt resource value: 0x7f030021 - public const int design_layout_tab_text = 2130903073; + // aapt resource value: 0x7f040021 + public const int design_layout_tab_text = 2130968609; - // aapt resource value: 0x7f030022 - public const int design_menu_item_action_area = 2130903074; + // aapt resource value: 0x7f040022 + public const int design_menu_item_action_area = 2130968610; - // aapt resource value: 0x7f030023 - public const int design_navigation_item = 2130903075; + // aapt resource value: 0x7f040023 + public const int design_navigation_item = 2130968611; - // aapt resource value: 0x7f030024 - public const int design_navigation_item_header = 2130903076; + // aapt resource value: 0x7f040024 + public const int design_navigation_item_header = 2130968612; - // aapt resource value: 0x7f030025 - public const int design_navigation_item_separator = 2130903077; + // aapt resource value: 0x7f040025 + public const int design_navigation_item_separator = 2130968613; - // aapt resource value: 0x7f030026 - public const int design_navigation_item_subheader = 2130903078; + // aapt resource value: 0x7f040026 + public const int design_navigation_item_subheader = 2130968614; - // aapt resource value: 0x7f030027 - public const int design_navigation_menu = 2130903079; + // aapt resource value: 0x7f040027 + public const int design_navigation_menu = 2130968615; - // aapt resource value: 0x7f030028 - public const int design_navigation_menu_item = 2130903080; + // aapt resource value: 0x7f040028 + public const int design_navigation_menu_item = 2130968616; - // aapt resource value: 0x7f030029 - public const int design_text_input_password_icon = 2130903081; + // aapt resource value: 0x7f040029 + public const int design_text_input_password_icon = 2130968617; - // aapt resource value: 0x7f03002a - public const int FingerprintDialog = 2130903082; + // aapt resource value: 0x7f04002a + public const int FingerprintDialog = 2130968618; - // aapt resource value: 0x7f03002b - public const int hockeyapp_activity_expiry_info = 2130903083; + // aapt resource value: 0x7f04002b + public const int hockeyapp_activity_expiry_info = 2130968619; - // aapt resource value: 0x7f03002c - public const int hockeyapp_activity_feedback = 2130903084; + // aapt resource value: 0x7f04002c + public const int hockeyapp_activity_feedback = 2130968620; - // aapt resource value: 0x7f03002d - public const int hockeyapp_activity_login = 2130903085; + // aapt resource value: 0x7f04002d + public const int hockeyapp_activity_login = 2130968621; - // aapt resource value: 0x7f03002e - public const int hockeyapp_fragment_update = 2130903086; + // aapt resource value: 0x7f04002e + public const int hockeyapp_fragment_update = 2130968622; - // aapt resource value: 0x7f03002f - public const int hockeyapp_view_feedback_message = 2130903087; + // aapt resource value: 0x7f04002f + public const int hockeyapp_view_feedback_message = 2130968623; - // aapt resource value: 0x7f030030 - public const int mr_chooser_dialog = 2130903088; + // aapt resource value: 0x7f040030 + public const int mr_chooser_dialog = 2130968624; - // aapt resource value: 0x7f030031 - public const int mr_chooser_list_item = 2130903089; + // aapt resource value: 0x7f040031 + public const int mr_chooser_list_item = 2130968625; - // aapt resource value: 0x7f030032 - public const int mr_controller_material_dialog_b = 2130903090; + // aapt resource value: 0x7f040032 + public const int mr_controller_material_dialog_b = 2130968626; - // aapt resource value: 0x7f030033 - public const int mr_controller_volume_item = 2130903091; + // aapt resource value: 0x7f040033 + public const int mr_controller_volume_item = 2130968627; - // aapt resource value: 0x7f030034 - public const int mr_playback_control = 2130903092; + // aapt resource value: 0x7f040034 + public const int mr_playback_control = 2130968628; - // aapt resource value: 0x7f030035 - public const int mr_volume_control = 2130903093; + // aapt resource value: 0x7f040035 + public const int mr_volume_control = 2130968629; - // aapt resource value: 0x7f030036 - public const int notification_action = 2130903094; + // aapt resource value: 0x7f040036 + public const int notification_action = 2130968630; - // aapt resource value: 0x7f030037 - public const int notification_action_tombstone = 2130903095; + // aapt resource value: 0x7f040037 + public const int notification_action_tombstone = 2130968631; - // aapt resource value: 0x7f030038 - public const int notification_media_action = 2130903096; + // aapt resource value: 0x7f040038 + public const int notification_media_action = 2130968632; - // aapt resource value: 0x7f030039 - public const int notification_media_cancel_action = 2130903097; + // aapt resource value: 0x7f040039 + public const int notification_media_cancel_action = 2130968633; - // aapt resource value: 0x7f03003a - public const int notification_template_big_media = 2130903098; + // aapt resource value: 0x7f04003a + public const int notification_template_big_media = 2130968634; - // aapt resource value: 0x7f03003b - public const int notification_template_big_media_custom = 2130903099; + // aapt resource value: 0x7f04003b + public const int notification_template_big_media_custom = 2130968635; - // aapt resource value: 0x7f03003c - public const int notification_template_big_media_narrow = 2130903100; + // aapt resource value: 0x7f04003c + public const int notification_template_big_media_narrow = 2130968636; - // aapt resource value: 0x7f03003d - public const int notification_template_big_media_narrow_custom = 2130903101; + // aapt resource value: 0x7f04003d + public const int notification_template_big_media_narrow_custom = 2130968637; - // aapt resource value: 0x7f03003e - public const int notification_template_custom_big = 2130903102; + // aapt resource value: 0x7f04003e + public const int notification_template_custom_big = 2130968638; - // aapt resource value: 0x7f03003f - public const int notification_template_icon_group = 2130903103; + // aapt resource value: 0x7f04003f + public const int notification_template_icon_group = 2130968639; - // aapt resource value: 0x7f030040 - public const int notification_template_lines_media = 2130903104; + // aapt resource value: 0x7f040040 + public const int notification_template_lines_media = 2130968640; - // aapt resource value: 0x7f030041 - public const int notification_template_media = 2130903105; + // aapt resource value: 0x7f040041 + public const int notification_template_media = 2130968641; - // aapt resource value: 0x7f030042 - public const int notification_template_media_custom = 2130903106; + // aapt resource value: 0x7f040042 + public const int notification_template_media_custom = 2130968642; - // aapt resource value: 0x7f030043 - public const int notification_template_part_chronometer = 2130903107; + // aapt resource value: 0x7f040043 + public const int notification_template_part_chronometer = 2130968643; - // aapt resource value: 0x7f030044 - public const int notification_template_part_time = 2130903108; + // aapt resource value: 0x7f040044 + public const int notification_template_part_time = 2130968644; - // aapt resource value: 0x7f030045 - public const int select_dialog_item_material = 2130903109; + // aapt resource value: 0x7f040045 + public const int select_dialog_item_material = 2130968645; - // aapt resource value: 0x7f030046 - public const int select_dialog_multichoice_material = 2130903110; + // aapt resource value: 0x7f040046 + public const int select_dialog_multichoice_material = 2130968646; - // aapt resource value: 0x7f030047 - public const int select_dialog_singlechoice_material = 2130903111; + // aapt resource value: 0x7f040047 + public const int select_dialog_singlechoice_material = 2130968647; - // aapt resource value: 0x7f030048 - public const int support_simple_spinner_dropdown_item = 2130903112; + // aapt resource value: 0x7f040048 + public const int support_simple_spinner_dropdown_item = 2130968648; - // aapt resource value: 0x7f030049 - public const int tabs = 2130903113; + // aapt resource value: 0x7f040049 + public const int tabs = 2130968649; - // aapt resource value: 0x7f03004a - public const int toolbar = 2130903114; + // aapt resource value: 0x7f04004a + public const int toolbar = 2130968650; - // aapt resource value: 0x7f03004b - public const int zxingscanneractivitylayout = 2130903115; + // aapt resource value: 0x7f04004b + public const int zxingscanneractivitylayout = 2130968651; - // aapt resource value: 0x7f03004c - public const int zxingscannerfragmentlayout = 2130903116; + // aapt resource value: 0x7f04004c + public const int zxingscannerfragmentlayout = 2130968652; static Layout() { @@ -6475,527 +6478,549 @@ namespace Bit.Android } } + public partial class Mipmap + { + + // aapt resource value: 0x7f030000 + public const int ic_launcher = 2130903040; + + // aapt resource value: 0x7f030001 + public const int ic_launcher_foreground = 2130903041; + + // aapt resource value: 0x7f030002 + public const int ic_launcher_round = 2130903042; + + static Mipmap() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Mipmap() + { + } + } + public partial class String { - // aapt resource value: 0x7f090051 - public const int ApplicationName = 2131296337; + // aapt resource value: 0x7f0a0051 + public const int ApplicationName = 2131361873; - // aapt resource value: 0x7f0900ab - public const int AutoFillServiceDescription = 2131296427; + // aapt resource value: 0x7f0a00ab + public const int AutoFillServiceDescription = 2131361963; - // aapt resource value: 0x7f0900aa - public const int AutoFillServiceSummary = 2131296426; + // aapt resource value: 0x7f0a00aa + public const int AutoFillServiceSummary = 2131361962; - // aapt resource value: 0x7f090050 - public const int Hello = 2131296336; + // aapt resource value: 0x7f0a0050 + public const int Hello = 2131361872; - // aapt resource value: 0x7f0900ac - public const int MyVault = 2131296428; + // aapt resource value: 0x7f0a00ac + public const int MyVault = 2131361964; - // aapt resource value: 0x7f090027 - public const int abc_action_bar_home_description = 2131296295; + // aapt resource value: 0x7f0a0027 + public const int abc_action_bar_home_description = 2131361831; - // aapt resource value: 0x7f090028 - public const int abc_action_bar_home_description_format = 2131296296; + // aapt resource value: 0x7f0a0028 + public const int abc_action_bar_home_description_format = 2131361832; - // aapt resource value: 0x7f090029 - public const int abc_action_bar_home_subtitle_description_format = 2131296297; + // aapt resource value: 0x7f0a0029 + public const int abc_action_bar_home_subtitle_description_format = 2131361833; - // aapt resource value: 0x7f09002a - public const int abc_action_bar_up_description = 2131296298; + // aapt resource value: 0x7f0a002a + public const int abc_action_bar_up_description = 2131361834; - // aapt resource value: 0x7f09002b - public const int abc_action_menu_overflow_description = 2131296299; + // aapt resource value: 0x7f0a002b + public const int abc_action_menu_overflow_description = 2131361835; - // aapt resource value: 0x7f09002c - public const int abc_action_mode_done = 2131296300; + // aapt resource value: 0x7f0a002c + public const int abc_action_mode_done = 2131361836; - // aapt resource value: 0x7f09002d - public const int abc_activity_chooser_view_see_all = 2131296301; + // aapt resource value: 0x7f0a002d + public const int abc_activity_chooser_view_see_all = 2131361837; - // aapt resource value: 0x7f09002e - public const int abc_activitychooserview_choose_application = 2131296302; + // aapt resource value: 0x7f0a002e + public const int abc_activitychooserview_choose_application = 2131361838; - // aapt resource value: 0x7f09002f - public const int abc_capital_off = 2131296303; + // aapt resource value: 0x7f0a002f + public const int abc_capital_off = 2131361839; - // aapt resource value: 0x7f090030 - public const int abc_capital_on = 2131296304; + // aapt resource value: 0x7f0a0030 + public const int abc_capital_on = 2131361840; - // aapt resource value: 0x7f09003c - public const int abc_font_family_body_1_material = 2131296316; + // aapt resource value: 0x7f0a003c + public const int abc_font_family_body_1_material = 2131361852; - // aapt resource value: 0x7f09003d - public const int abc_font_family_body_2_material = 2131296317; + // aapt resource value: 0x7f0a003d + public const int abc_font_family_body_2_material = 2131361853; - // aapt resource value: 0x7f09003e - public const int abc_font_family_button_material = 2131296318; + // aapt resource value: 0x7f0a003e + public const int abc_font_family_button_material = 2131361854; - // aapt resource value: 0x7f09003f - public const int abc_font_family_caption_material = 2131296319; + // aapt resource value: 0x7f0a003f + public const int abc_font_family_caption_material = 2131361855; - // aapt resource value: 0x7f090040 - public const int abc_font_family_display_1_material = 2131296320; + // aapt resource value: 0x7f0a0040 + public const int abc_font_family_display_1_material = 2131361856; - // aapt resource value: 0x7f090041 - public const int abc_font_family_display_2_material = 2131296321; + // aapt resource value: 0x7f0a0041 + public const int abc_font_family_display_2_material = 2131361857; - // aapt resource value: 0x7f090042 - public const int abc_font_family_display_3_material = 2131296322; + // aapt resource value: 0x7f0a0042 + public const int abc_font_family_display_3_material = 2131361858; - // aapt resource value: 0x7f090043 - public const int abc_font_family_display_4_material = 2131296323; + // aapt resource value: 0x7f0a0043 + public const int abc_font_family_display_4_material = 2131361859; - // aapt resource value: 0x7f090044 - public const int abc_font_family_headline_material = 2131296324; + // aapt resource value: 0x7f0a0044 + public const int abc_font_family_headline_material = 2131361860; - // aapt resource value: 0x7f090045 - public const int abc_font_family_menu_material = 2131296325; + // aapt resource value: 0x7f0a0045 + public const int abc_font_family_menu_material = 2131361861; - // aapt resource value: 0x7f090046 - public const int abc_font_family_subhead_material = 2131296326; + // aapt resource value: 0x7f0a0046 + public const int abc_font_family_subhead_material = 2131361862; - // aapt resource value: 0x7f090047 - public const int abc_font_family_title_material = 2131296327; + // aapt resource value: 0x7f0a0047 + public const int abc_font_family_title_material = 2131361863; - // aapt resource value: 0x7f090031 - public const int abc_search_hint = 2131296305; + // aapt resource value: 0x7f0a0031 + public const int abc_search_hint = 2131361841; - // aapt resource value: 0x7f090032 - public const int abc_searchview_description_clear = 2131296306; + // aapt resource value: 0x7f0a0032 + public const int abc_searchview_description_clear = 2131361842; - // aapt resource value: 0x7f090033 - public const int abc_searchview_description_query = 2131296307; + // aapt resource value: 0x7f0a0033 + public const int abc_searchview_description_query = 2131361843; - // aapt resource value: 0x7f090034 - public const int abc_searchview_description_search = 2131296308; + // aapt resource value: 0x7f0a0034 + public const int abc_searchview_description_search = 2131361844; - // aapt resource value: 0x7f090035 - public const int abc_searchview_description_submit = 2131296309; + // aapt resource value: 0x7f0a0035 + public const int abc_searchview_description_submit = 2131361845; - // aapt resource value: 0x7f090036 - public const int abc_searchview_description_voice = 2131296310; + // aapt resource value: 0x7f0a0036 + public const int abc_searchview_description_voice = 2131361846; - // aapt resource value: 0x7f090037 - public const int abc_shareactionprovider_share_with = 2131296311; + // aapt resource value: 0x7f0a0037 + public const int abc_shareactionprovider_share_with = 2131361847; - // aapt resource value: 0x7f090038 - public const int abc_shareactionprovider_share_with_application = 2131296312; + // aapt resource value: 0x7f0a0038 + public const int abc_shareactionprovider_share_with_application = 2131361848; - // aapt resource value: 0x7f090039 - public const int abc_toolbar_collapse_description = 2131296313; + // aapt resource value: 0x7f0a0039 + public const int abc_toolbar_collapse_description = 2131361849; - // aapt resource value: 0x7f090048 - public const int appbar_scrolling_view_behavior = 2131296328; + // aapt resource value: 0x7f0a0048 + public const int appbar_scrolling_view_behavior = 2131361864; - // aapt resource value: 0x7f090049 - public const int bottom_sheet_behavior = 2131296329; + // aapt resource value: 0x7f0a0049 + public const int bottom_sheet_behavior = 2131361865; - // aapt resource value: 0x7f09004a - public const int character_counter_pattern = 2131296330; + // aapt resource value: 0x7f0a004a + public const int character_counter_pattern = 2131361866; - // aapt resource value: 0x7f090000 - public const int common_google_play_services_enable_button = 2131296256; + // aapt resource value: 0x7f0a0000 + public const int common_google_play_services_enable_button = 2131361792; - // aapt resource value: 0x7f090001 - public const int common_google_play_services_enable_text = 2131296257; + // aapt resource value: 0x7f0a0001 + public const int common_google_play_services_enable_text = 2131361793; - // aapt resource value: 0x7f090002 - public const int common_google_play_services_enable_title = 2131296258; + // aapt resource value: 0x7f0a0002 + public const int common_google_play_services_enable_title = 2131361794; - // aapt resource value: 0x7f090003 - public const int common_google_play_services_install_button = 2131296259; + // aapt resource value: 0x7f0a0003 + public const int common_google_play_services_install_button = 2131361795; - // aapt resource value: 0x7f090004 - public const int common_google_play_services_install_text = 2131296260; + // aapt resource value: 0x7f0a0004 + public const int common_google_play_services_install_text = 2131361796; - // aapt resource value: 0x7f090005 - public const int common_google_play_services_install_title = 2131296261; + // aapt resource value: 0x7f0a0005 + public const int common_google_play_services_install_title = 2131361797; - // aapt resource value: 0x7f090006 - public const int common_google_play_services_notification_ticker = 2131296262; + // aapt resource value: 0x7f0a0006 + public const int common_google_play_services_notification_ticker = 2131361798; - // aapt resource value: 0x7f090010 - public const int common_google_play_services_unknown_issue = 2131296272; + // aapt resource value: 0x7f0a0010 + public const int common_google_play_services_unknown_issue = 2131361808; - // aapt resource value: 0x7f090007 - public const int common_google_play_services_unsupported_text = 2131296263; + // aapt resource value: 0x7f0a0007 + public const int common_google_play_services_unsupported_text = 2131361799; - // aapt resource value: 0x7f090008 - public const int common_google_play_services_update_button = 2131296264; + // aapt resource value: 0x7f0a0008 + public const int common_google_play_services_update_button = 2131361800; - // aapt resource value: 0x7f090009 - public const int common_google_play_services_update_text = 2131296265; + // aapt resource value: 0x7f0a0009 + public const int common_google_play_services_update_text = 2131361801; - // aapt resource value: 0x7f09000a - public const int common_google_play_services_update_title = 2131296266; + // aapt resource value: 0x7f0a000a + public const int common_google_play_services_update_title = 2131361802; - // aapt resource value: 0x7f09000b - public const int common_google_play_services_updating_text = 2131296267; + // aapt resource value: 0x7f0a000b + public const int common_google_play_services_updating_text = 2131361803; - // aapt resource value: 0x7f09000c - public const int common_google_play_services_wear_update_text = 2131296268; + // aapt resource value: 0x7f0a000c + public const int common_google_play_services_wear_update_text = 2131361804; - // aapt resource value: 0x7f09000d - public const int common_open_on_phone = 2131296269; + // aapt resource value: 0x7f0a000d + public const int common_open_on_phone = 2131361805; - // aapt resource value: 0x7f09000e - public const int common_signin_button_text = 2131296270; + // aapt resource value: 0x7f0a000e + public const int common_signin_button_text = 2131361806; - // aapt resource value: 0x7f09000f - public const int common_signin_button_text_long = 2131296271; + // aapt resource value: 0x7f0a000f + public const int common_signin_button_text_long = 2131361807; - // aapt resource value: 0x7f090052 - public const int hockeyapp_crash_dialog_app_name_fallback = 2131296338; + // aapt resource value: 0x7f0a0052 + public const int hockeyapp_crash_dialog_app_name_fallback = 2131361874; - // aapt resource value: 0x7f090053 - public const int hockeyapp_crash_dialog_message = 2131296339; + // aapt resource value: 0x7f0a0053 + public const int hockeyapp_crash_dialog_message = 2131361875; - // aapt resource value: 0x7f090054 - public const int hockeyapp_crash_dialog_negative_button = 2131296340; + // aapt resource value: 0x7f0a0054 + public const int hockeyapp_crash_dialog_negative_button = 2131361876; - // aapt resource value: 0x7f090055 - public const int hockeyapp_crash_dialog_neutral_button = 2131296341; + // aapt resource value: 0x7f0a0055 + public const int hockeyapp_crash_dialog_neutral_button = 2131361877; - // aapt resource value: 0x7f090056 - public const int hockeyapp_crash_dialog_positive_button = 2131296342; + // aapt resource value: 0x7f0a0056 + public const int hockeyapp_crash_dialog_positive_button = 2131361878; - // aapt resource value: 0x7f090057 - public const int hockeyapp_crash_dialog_title = 2131296343; + // aapt resource value: 0x7f0a0057 + public const int hockeyapp_crash_dialog_title = 2131361879; - // aapt resource value: 0x7f090058 - public const int hockeyapp_dialog_error_message = 2131296344; + // aapt resource value: 0x7f0a0058 + public const int hockeyapp_dialog_error_message = 2131361880; - // aapt resource value: 0x7f090059 - public const int hockeyapp_dialog_error_title = 2131296345; + // aapt resource value: 0x7f0a0059 + public const int hockeyapp_dialog_error_title = 2131361881; - // aapt resource value: 0x7f09005a - public const int hockeyapp_dialog_negative_button = 2131296346; + // aapt resource value: 0x7f0a005a + public const int hockeyapp_dialog_negative_button = 2131361882; - // aapt resource value: 0x7f09005b - public const int hockeyapp_dialog_positive_button = 2131296347; + // aapt resource value: 0x7f0a005b + public const int hockeyapp_dialog_positive_button = 2131361883; - // aapt resource value: 0x7f09005c - public const int hockeyapp_download_failed_dialog_message = 2131296348; + // aapt resource value: 0x7f0a005c + public const int hockeyapp_download_failed_dialog_message = 2131361884; - // aapt resource value: 0x7f09005d - public const int hockeyapp_download_failed_dialog_negative_button = 2131296349; + // aapt resource value: 0x7f0a005d + public const int hockeyapp_download_failed_dialog_negative_button = 2131361885; - // aapt resource value: 0x7f09005e - public const int hockeyapp_download_failed_dialog_positive_button = 2131296350; + // aapt resource value: 0x7f0a005e + public const int hockeyapp_download_failed_dialog_positive_button = 2131361886; - // aapt resource value: 0x7f09005f - public const int hockeyapp_download_failed_dialog_title = 2131296351; + // aapt resource value: 0x7f0a005f + public const int hockeyapp_download_failed_dialog_title = 2131361887; - // aapt resource value: 0x7f090060 - public const int hockeyapp_error_install_form_unknown_sources_disabled = 2131296352; + // aapt resource value: 0x7f0a0060 + public const int hockeyapp_error_install_form_unknown_sources_disabled = 2131361888; - // aapt resource value: 0x7f090061 - public const int hockeyapp_error_no_external_storage_permission = 2131296353; + // aapt resource value: 0x7f0a0061 + public const int hockeyapp_error_no_external_storage_permission = 2131361889; - // aapt resource value: 0x7f090062 - public const int hockeyapp_error_no_network_message = 2131296354; + // aapt resource value: 0x7f0a0062 + public const int hockeyapp_error_no_network_message = 2131361890; - // aapt resource value: 0x7f090063 - public const int hockeyapp_expiry_info_text = 2131296355; + // aapt resource value: 0x7f0a0063 + public const int hockeyapp_expiry_info_text = 2131361891; - // aapt resource value: 0x7f090064 - public const int hockeyapp_expiry_info_title = 2131296356; + // aapt resource value: 0x7f0a0064 + public const int hockeyapp_expiry_info_title = 2131361892; - // aapt resource value: 0x7f090065 - public const int hockeyapp_feedback_attach_file = 2131296357; + // aapt resource value: 0x7f0a0065 + public const int hockeyapp_feedback_attach_file = 2131361893; - // aapt resource value: 0x7f090066 - public const int hockeyapp_feedback_attach_picture = 2131296358; + // aapt resource value: 0x7f0a0066 + public const int hockeyapp_feedback_attach_picture = 2131361894; - // aapt resource value: 0x7f090067 - public const int hockeyapp_feedback_attachment_added = 2131296359; + // aapt resource value: 0x7f0a0067 + public const int hockeyapp_feedback_attachment_added = 2131361895; - // aapt resource value: 0x7f090068 - public const int hockeyapp_feedback_attachment_button_text = 2131296360; + // aapt resource value: 0x7f0a0068 + public const int hockeyapp_feedback_attachment_button_text = 2131361896; - // aapt resource value: 0x7f090069 - public const int hockeyapp_feedback_attachment_error = 2131296361; + // aapt resource value: 0x7f0a0069 + public const int hockeyapp_feedback_attachment_error = 2131361897; - // aapt resource value: 0x7f09006a - public const int hockeyapp_feedback_attachment_loading = 2131296362; + // aapt resource value: 0x7f0a006a + public const int hockeyapp_feedback_attachment_loading = 2131361898; - // aapt resource value: 0x7f09006b - public const int hockeyapp_feedback_attachment_remove_description = 2131296363; + // aapt resource value: 0x7f0a006b + public const int hockeyapp_feedback_attachment_remove_description = 2131361899; - // aapt resource value: 0x7f09006c - public const int hockeyapp_feedback_attachment_removed = 2131296364; + // aapt resource value: 0x7f0a006c + public const int hockeyapp_feedback_attachment_removed = 2131361900; - // aapt resource value: 0x7f09006d - public const int hockeyapp_feedback_email_hint = 2131296365; + // aapt resource value: 0x7f0a006d + public const int hockeyapp_feedback_email_hint = 2131361901; - // aapt resource value: 0x7f09006e - public const int hockeyapp_feedback_email_hint_required = 2131296366; + // aapt resource value: 0x7f0a006e + public const int hockeyapp_feedback_email_hint_required = 2131361902; - // aapt resource value: 0x7f09006f - public const int hockeyapp_feedback_fetching_feedback_text = 2131296367; + // aapt resource value: 0x7f0a006f + public const int hockeyapp_feedback_fetching_feedback_text = 2131361903; - // aapt resource value: 0x7f090070 - public const int hockeyapp_feedback_generic_error = 2131296368; + // aapt resource value: 0x7f0a0070 + public const int hockeyapp_feedback_generic_error = 2131361904; - // aapt resource value: 0x7f090071 - public const int hockeyapp_feedback_last_updated_text = 2131296369; + // aapt resource value: 0x7f0a0071 + public const int hockeyapp_feedback_last_updated_text = 2131361905; - // aapt resource value: 0x7f090072 - public const int hockeyapp_feedback_max_attachments_allowed = 2131296370; + // aapt resource value: 0x7f0a0072 + public const int hockeyapp_feedback_max_attachments_allowed = 2131361906; - // aapt resource value: 0x7f090073 - public const int hockeyapp_feedback_message_hint = 2131296371; + // aapt resource value: 0x7f0a0073 + public const int hockeyapp_feedback_message_hint = 2131361907; - // aapt resource value: 0x7f090074 - public const int hockeyapp_feedback_message_hint_required = 2131296372; + // aapt resource value: 0x7f0a0074 + public const int hockeyapp_feedback_message_hint_required = 2131361908; - // aapt resource value: 0x7f090075 - public const int hockeyapp_feedback_name_hint = 2131296373; + // aapt resource value: 0x7f0a0075 + public const int hockeyapp_feedback_name_hint = 2131361909; - // aapt resource value: 0x7f090076 - public const int hockeyapp_feedback_name_hint_required = 2131296374; + // aapt resource value: 0x7f0a0076 + public const int hockeyapp_feedback_name_hint_required = 2131361910; - // aapt resource value: 0x7f090077 - public const int hockeyapp_feedback_new_answer_notification_message = 2131296375; + // aapt resource value: 0x7f0a0077 + public const int hockeyapp_feedback_new_answer_notification_message = 2131361911; - // aapt resource value: 0x7f0900a8 - public const int hockeyapp_feedback_notification_channel = 2131296424; + // aapt resource value: 0x7f0a00a8 + public const int hockeyapp_feedback_notification_channel = 2131361960; - // aapt resource value: 0x7f090078 - public const int hockeyapp_feedback_notification_title = 2131296376; + // aapt resource value: 0x7f0a0078 + public const int hockeyapp_feedback_notification_title = 2131361912; - // aapt resource value: 0x7f090079 - public const int hockeyapp_feedback_refresh_button_text = 2131296377; + // aapt resource value: 0x7f0a0079 + public const int hockeyapp_feedback_refresh_button_text = 2131361913; - // aapt resource value: 0x7f09007a - public const int hockeyapp_feedback_response_button_text = 2131296378; + // aapt resource value: 0x7f0a007a + public const int hockeyapp_feedback_response_button_text = 2131361914; - // aapt resource value: 0x7f09007b - public const int hockeyapp_feedback_screenshot_fail = 2131296379; + // aapt resource value: 0x7f0a007b + public const int hockeyapp_feedback_screenshot_fail = 2131361915; - // aapt resource value: 0x7f09007c - public const int hockeyapp_feedback_screenshot_notification_message = 2131296380; + // aapt resource value: 0x7f0a007c + public const int hockeyapp_feedback_screenshot_notification_message = 2131361916; - // aapt resource value: 0x7f09007d - public const int hockeyapp_feedback_select_file = 2131296381; + // aapt resource value: 0x7f0a007d + public const int hockeyapp_feedback_select_file = 2131361917; - // aapt resource value: 0x7f09007e - public const int hockeyapp_feedback_select_picture = 2131296382; + // aapt resource value: 0x7f0a007e + public const int hockeyapp_feedback_select_picture = 2131361918; - // aapt resource value: 0x7f09007f - public const int hockeyapp_feedback_send_button_text = 2131296383; + // aapt resource value: 0x7f0a007f + public const int hockeyapp_feedback_send_button_text = 2131361919; - // aapt resource value: 0x7f090080 - public const int hockeyapp_feedback_send_generic_error = 2131296384; + // aapt resource value: 0x7f0a0080 + public const int hockeyapp_feedback_send_generic_error = 2131361920; - // aapt resource value: 0x7f090081 - public const int hockeyapp_feedback_send_network_error = 2131296385; + // aapt resource value: 0x7f0a0081 + public const int hockeyapp_feedback_send_network_error = 2131361921; - // aapt resource value: 0x7f090082 - public const int hockeyapp_feedback_sending_feedback_text = 2131296386; + // aapt resource value: 0x7f0a0082 + public const int hockeyapp_feedback_sending_feedback_text = 2131361922; - // aapt resource value: 0x7f090083 - public const int hockeyapp_feedback_sent_toast = 2131296387; + // aapt resource value: 0x7f0a0083 + public const int hockeyapp_feedback_sent_toast = 2131361923; - // aapt resource value: 0x7f090084 - public const int hockeyapp_feedback_subject_hint = 2131296388; + // aapt resource value: 0x7f0a0084 + public const int hockeyapp_feedback_subject_hint = 2131361924; - // aapt resource value: 0x7f090085 - public const int hockeyapp_feedback_subject_hint_required = 2131296389; + // aapt resource value: 0x7f0a0085 + public const int hockeyapp_feedback_subject_hint_required = 2131361925; - // aapt resource value: 0x7f090086 - public const int hockeyapp_feedback_title = 2131296390; + // aapt resource value: 0x7f0a0086 + public const int hockeyapp_feedback_title = 2131361926; - // aapt resource value: 0x7f090087 - public const int hockeyapp_feedback_validate_email_empty = 2131296391; + // aapt resource value: 0x7f0a0087 + public const int hockeyapp_feedback_validate_email_empty = 2131361927; - // aapt resource value: 0x7f090088 - public const int hockeyapp_feedback_validate_email_error = 2131296392; + // aapt resource value: 0x7f0a0088 + public const int hockeyapp_feedback_validate_email_error = 2131361928; - // aapt resource value: 0x7f090089 - public const int hockeyapp_feedback_validate_name_error = 2131296393; + // aapt resource value: 0x7f0a0089 + public const int hockeyapp_feedback_validate_name_error = 2131361929; - // aapt resource value: 0x7f09008a - public const int hockeyapp_feedback_validate_subject_error = 2131296394; + // aapt resource value: 0x7f0a008a + public const int hockeyapp_feedback_validate_subject_error = 2131361930; - // aapt resource value: 0x7f09008b - public const int hockeyapp_feedback_validate_text_error = 2131296395; + // aapt resource value: 0x7f0a008b + public const int hockeyapp_feedback_validate_text_error = 2131361931; - // aapt resource value: 0x7f09008c - public const int hockeyapp_login_email_hint_required = 2131296396; + // aapt resource value: 0x7f0a008c + public const int hockeyapp_login_email_hint_required = 2131361932; - // aapt resource value: 0x7f09008d - public const int hockeyapp_login_headline_text = 2131296397; + // aapt resource value: 0x7f0a008d + public const int hockeyapp_login_headline_text = 2131361933; - // aapt resource value: 0x7f09008e - public const int hockeyapp_login_headline_text_email_only = 2131296398; + // aapt resource value: 0x7f0a008e + public const int hockeyapp_login_headline_text_email_only = 2131361934; - // aapt resource value: 0x7f09008f - public const int hockeyapp_login_login_button_text = 2131296399; + // aapt resource value: 0x7f0a008f + public const int hockeyapp_login_login_button_text = 2131361935; - // aapt resource value: 0x7f090090 - public const int hockeyapp_login_missing_credentials_toast = 2131296400; + // aapt resource value: 0x7f0a0090 + public const int hockeyapp_login_missing_credentials_toast = 2131361936; - // aapt resource value: 0x7f090091 - public const int hockeyapp_login_password_hint_required = 2131296401; + // aapt resource value: 0x7f0a0091 + public const int hockeyapp_login_password_hint_required = 2131361937; - // aapt resource value: 0x7f090092 - public const int hockeyapp_paint_dialog_message = 2131296402; + // aapt resource value: 0x7f0a0092 + public const int hockeyapp_paint_dialog_message = 2131361938; - // aapt resource value: 0x7f090093 - public const int hockeyapp_paint_dialog_negative_button = 2131296403; + // aapt resource value: 0x7f0a0093 + public const int hockeyapp_paint_dialog_negative_button = 2131361939; - // aapt resource value: 0x7f090094 - public const int hockeyapp_paint_dialog_neutral_button = 2131296404; + // aapt resource value: 0x7f0a0094 + public const int hockeyapp_paint_dialog_neutral_button = 2131361940; - // aapt resource value: 0x7f090095 - public const int hockeyapp_paint_dialog_positive_button = 2131296405; + // aapt resource value: 0x7f0a0095 + public const int hockeyapp_paint_dialog_positive_button = 2131361941; - // aapt resource value: 0x7f090096 - public const int hockeyapp_paint_indicator_toast = 2131296406; + // aapt resource value: 0x7f0a0096 + public const int hockeyapp_paint_indicator_toast = 2131361942; - // aapt resource value: 0x7f090097 - public const int hockeyapp_paint_menu_clear = 2131296407; + // aapt resource value: 0x7f0a0097 + public const int hockeyapp_paint_menu_clear = 2131361943; - // aapt resource value: 0x7f090098 - public const int hockeyapp_paint_menu_save = 2131296408; + // aapt resource value: 0x7f0a0098 + public const int hockeyapp_paint_menu_save = 2131361944; - // aapt resource value: 0x7f090099 - public const int hockeyapp_paint_menu_undo = 2131296409; + // aapt resource value: 0x7f0a0099 + public const int hockeyapp_paint_menu_undo = 2131361945; - // aapt resource value: 0x7f09009a - public const int hockeyapp_update_already_installed = 2131296410; + // aapt resource value: 0x7f0a009a + public const int hockeyapp_update_already_installed = 2131361946; - // aapt resource value: 0x7f09009b - public const int hockeyapp_update_button = 2131296411; + // aapt resource value: 0x7f0a009b + public const int hockeyapp_update_button = 2131361947; - // aapt resource value: 0x7f09009c - public const int hockeyapp_update_dialog_message = 2131296412; + // aapt resource value: 0x7f0a009c + public const int hockeyapp_update_dialog_message = 2131361948; - // aapt resource value: 0x7f09009d - public const int hockeyapp_update_dialog_negative_button = 2131296413; + // aapt resource value: 0x7f0a009d + public const int hockeyapp_update_dialog_negative_button = 2131361949; - // aapt resource value: 0x7f09009e - public const int hockeyapp_update_dialog_positive_button = 2131296414; + // aapt resource value: 0x7f0a009e + public const int hockeyapp_update_dialog_positive_button = 2131361950; - // aapt resource value: 0x7f09009f - public const int hockeyapp_update_dialog_title = 2131296415; + // aapt resource value: 0x7f0a009f + public const int hockeyapp_update_dialog_title = 2131361951; - // aapt resource value: 0x7f0900a0 - public const int hockeyapp_update_loading = 2131296416; + // aapt resource value: 0x7f0a00a0 + public const int hockeyapp_update_loading = 2131361952; - // aapt resource value: 0x7f0900a1 - public const int hockeyapp_update_mandatory_toast = 2131296417; + // aapt resource value: 0x7f0a00a1 + public const int hockeyapp_update_mandatory_toast = 2131361953; - // aapt resource value: 0x7f0900a2 - public const int hockeyapp_update_newest_version = 2131296418; + // aapt resource value: 0x7f0a00a2 + public const int hockeyapp_update_newest_version = 2131361954; - // aapt resource value: 0x7f0900a3 - public const int hockeyapp_update_no_info = 2131296419; + // aapt resource value: 0x7f0a00a3 + public const int hockeyapp_update_no_info = 2131361955; - // aapt resource value: 0x7f0900a4 - public const int hockeyapp_update_restore = 2131296420; + // aapt resource value: 0x7f0a00a4 + public const int hockeyapp_update_restore = 2131361956; - // aapt resource value: 0x7f0900a5 - public const int hockeyapp_update_title = 2131296421; + // aapt resource value: 0x7f0a00a5 + public const int hockeyapp_update_title = 2131361957; - // aapt resource value: 0x7f0900a6 - public const int hockeyapp_update_unknown_size = 2131296422; + // aapt resource value: 0x7f0a00a6 + public const int hockeyapp_update_unknown_size = 2131361958; - // aapt resource value: 0x7f0900a7 - public const int hockeyapp_update_version = 2131296423; + // aapt resource value: 0x7f0a00a7 + public const int hockeyapp_update_version = 2131361959; - // aapt resource value: 0x7f0900a9 - public const int hockeyapp_update_version_details_label = 2131296425; + // aapt resource value: 0x7f0a00a9 + public const int hockeyapp_update_version_details_label = 2131361961; - // aapt resource value: 0x7f090011 - public const int library_name = 2131296273; + // aapt resource value: 0x7f0a0011 + public const int library_name = 2131361809; - // aapt resource value: 0x7f090012 - public const int mr_button_content_description = 2131296274; + // aapt resource value: 0x7f0a0012 + public const int mr_button_content_description = 2131361810; - // aapt resource value: 0x7f090013 - public const int mr_cast_button_connected = 2131296275; + // aapt resource value: 0x7f0a0013 + public const int mr_cast_button_connected = 2131361811; - // aapt resource value: 0x7f090014 - public const int mr_cast_button_connecting = 2131296276; + // aapt resource value: 0x7f0a0014 + public const int mr_cast_button_connecting = 2131361812; - // aapt resource value: 0x7f090015 - public const int mr_cast_button_disconnected = 2131296277; + // aapt resource value: 0x7f0a0015 + public const int mr_cast_button_disconnected = 2131361813; - // aapt resource value: 0x7f090016 - public const int mr_chooser_searching = 2131296278; + // aapt resource value: 0x7f0a0016 + public const int mr_chooser_searching = 2131361814; - // aapt resource value: 0x7f090017 - public const int mr_chooser_title = 2131296279; + // aapt resource value: 0x7f0a0017 + public const int mr_chooser_title = 2131361815; - // aapt resource value: 0x7f090018 - public const int mr_controller_album_art = 2131296280; + // aapt resource value: 0x7f0a0018 + public const int mr_controller_album_art = 2131361816; - // aapt resource value: 0x7f090019 - public const int mr_controller_casting_screen = 2131296281; + // aapt resource value: 0x7f0a0019 + public const int mr_controller_casting_screen = 2131361817; - // aapt resource value: 0x7f09001a - public const int mr_controller_close_description = 2131296282; + // aapt resource value: 0x7f0a001a + public const int mr_controller_close_description = 2131361818; - // aapt resource value: 0x7f09001b - public const int mr_controller_collapse_group = 2131296283; + // aapt resource value: 0x7f0a001b + public const int mr_controller_collapse_group = 2131361819; - // aapt resource value: 0x7f09001c - public const int mr_controller_disconnect = 2131296284; + // aapt resource value: 0x7f0a001c + public const int mr_controller_disconnect = 2131361820; - // aapt resource value: 0x7f09001d - public const int mr_controller_expand_group = 2131296285; + // aapt resource value: 0x7f0a001d + public const int mr_controller_expand_group = 2131361821; - // aapt resource value: 0x7f09001e - public const int mr_controller_no_info_available = 2131296286; + // aapt resource value: 0x7f0a001e + public const int mr_controller_no_info_available = 2131361822; - // aapt resource value: 0x7f09001f - public const int mr_controller_no_media_selected = 2131296287; + // aapt resource value: 0x7f0a001f + public const int mr_controller_no_media_selected = 2131361823; - // aapt resource value: 0x7f090020 - public const int mr_controller_pause = 2131296288; + // aapt resource value: 0x7f0a0020 + public const int mr_controller_pause = 2131361824; - // aapt resource value: 0x7f090021 - public const int mr_controller_play = 2131296289; + // aapt resource value: 0x7f0a0021 + public const int mr_controller_play = 2131361825; - // aapt resource value: 0x7f090026 - public const int mr_controller_stop = 2131296294; + // aapt resource value: 0x7f0a0026 + public const int mr_controller_stop = 2131361830; - // aapt resource value: 0x7f090022 - public const int mr_controller_stop_casting = 2131296290; + // aapt resource value: 0x7f0a0022 + public const int mr_controller_stop_casting = 2131361826; - // aapt resource value: 0x7f090023 - public const int mr_controller_volume_slider = 2131296291; + // aapt resource value: 0x7f0a0023 + public const int mr_controller_volume_slider = 2131361827; - // aapt resource value: 0x7f090024 - public const int mr_system_route_name = 2131296292; + // aapt resource value: 0x7f0a0024 + public const int mr_system_route_name = 2131361828; - // aapt resource value: 0x7f090025 - public const int mr_user_route_category_name = 2131296293; + // aapt resource value: 0x7f0a0025 + public const int mr_user_route_category_name = 2131361829; - // aapt resource value: 0x7f09004b - public const int password_toggle_content_description = 2131296331; + // aapt resource value: 0x7f0a004b + public const int password_toggle_content_description = 2131361867; - // aapt resource value: 0x7f09004c - public const int path_password_eye = 2131296332; + // aapt resource value: 0x7f0a004c + public const int path_password_eye = 2131361868; - // aapt resource value: 0x7f09004d - public const int path_password_eye_mask_strike_through = 2131296333; + // aapt resource value: 0x7f0a004d + public const int path_password_eye_mask_strike_through = 2131361869; - // aapt resource value: 0x7f09004e - public const int path_password_eye_mask_visible = 2131296334; + // aapt resource value: 0x7f0a004e + public const int path_password_eye_mask_visible = 2131361870; - // aapt resource value: 0x7f09004f - public const int path_password_strike_through = 2131296335; + // aapt resource value: 0x7f0a004f + public const int path_password_strike_through = 2131361871; - // aapt resource value: 0x7f09003a - public const int search_menu_title = 2131296314; + // aapt resource value: 0x7f0a003a + public const int search_menu_title = 2131361850; - // aapt resource value: 0x7f09003b - public const int status_bar_notification_info_overflow = 2131296315; + // aapt resource value: 0x7f0a003b + public const int status_bar_notification_info_overflow = 2131361851; static String() { @@ -7010,1202 +7035,1202 @@ namespace Bit.Android public partial class Style { - // aapt resource value: 0x7f0d00ae - public const int AlertDialog_AppCompat = 2131558574; + // aapt resource value: 0x7f0e00ae + public const int AlertDialog_AppCompat = 2131624110; - // aapt resource value: 0x7f0d00af - public const int AlertDialog_AppCompat_Light = 2131558575; + // aapt resource value: 0x7f0e00af + public const int AlertDialog_AppCompat_Light = 2131624111; - // aapt resource value: 0x7f0d00b0 - public const int Animation_AppCompat_Dialog = 2131558576; + // aapt resource value: 0x7f0e00b0 + public const int Animation_AppCompat_Dialog = 2131624112; - // aapt resource value: 0x7f0d00b1 - public const int Animation_AppCompat_DropDownUp = 2131558577; + // aapt resource value: 0x7f0e00b1 + public const int Animation_AppCompat_DropDownUp = 2131624113; - // aapt resource value: 0x7f0d0170 - public const int Animation_Design_BottomSheetDialog = 2131558768; + // aapt resource value: 0x7f0e0170 + public const int Animation_Design_BottomSheetDialog = 2131624304; - // aapt resource value: 0x7f0d00b2 - public const int Base_AlertDialog_AppCompat = 2131558578; + // aapt resource value: 0x7f0e00b2 + public const int Base_AlertDialog_AppCompat = 2131624114; - // aapt resource value: 0x7f0d00b3 - public const int Base_AlertDialog_AppCompat_Light = 2131558579; + // aapt resource value: 0x7f0e00b3 + public const int Base_AlertDialog_AppCompat_Light = 2131624115; - // aapt resource value: 0x7f0d00b4 - public const int Base_Animation_AppCompat_Dialog = 2131558580; + // aapt resource value: 0x7f0e00b4 + public const int Base_Animation_AppCompat_Dialog = 2131624116; - // aapt resource value: 0x7f0d00b5 - public const int Base_Animation_AppCompat_DropDownUp = 2131558581; + // aapt resource value: 0x7f0e00b5 + public const int Base_Animation_AppCompat_DropDownUp = 2131624117; - // aapt resource value: 0x7f0d000c - public const int Base_CardView = 2131558412; + // aapt resource value: 0x7f0e000c + public const int Base_CardView = 2131623948; - // aapt resource value: 0x7f0d00b6 - public const int Base_DialogWindowTitle_AppCompat = 2131558582; + // aapt resource value: 0x7f0e00b6 + public const int Base_DialogWindowTitle_AppCompat = 2131624118; - // aapt resource value: 0x7f0d00b7 - public const int Base_DialogWindowTitleBackground_AppCompat = 2131558583; + // aapt resource value: 0x7f0e00b7 + public const int Base_DialogWindowTitleBackground_AppCompat = 2131624119; - // aapt resource value: 0x7f0d004e - public const int Base_TextAppearance_AppCompat = 2131558478; + // aapt resource value: 0x7f0e004e + public const int Base_TextAppearance_AppCompat = 2131624014; - // aapt resource value: 0x7f0d004f - public const int Base_TextAppearance_AppCompat_Body1 = 2131558479; + // aapt resource value: 0x7f0e004f + public const int Base_TextAppearance_AppCompat_Body1 = 2131624015; - // aapt resource value: 0x7f0d0050 - public const int Base_TextAppearance_AppCompat_Body2 = 2131558480; + // aapt resource value: 0x7f0e0050 + public const int Base_TextAppearance_AppCompat_Body2 = 2131624016; - // aapt resource value: 0x7f0d0036 - public const int Base_TextAppearance_AppCompat_Button = 2131558454; + // aapt resource value: 0x7f0e0036 + public const int Base_TextAppearance_AppCompat_Button = 2131623990; - // aapt resource value: 0x7f0d0051 - public const int Base_TextAppearance_AppCompat_Caption = 2131558481; + // aapt resource value: 0x7f0e0051 + public const int Base_TextAppearance_AppCompat_Caption = 2131624017; - // aapt resource value: 0x7f0d0052 - public const int Base_TextAppearance_AppCompat_Display1 = 2131558482; + // aapt resource value: 0x7f0e0052 + public const int Base_TextAppearance_AppCompat_Display1 = 2131624018; - // aapt resource value: 0x7f0d0053 - public const int Base_TextAppearance_AppCompat_Display2 = 2131558483; + // aapt resource value: 0x7f0e0053 + public const int Base_TextAppearance_AppCompat_Display2 = 2131624019; - // aapt resource value: 0x7f0d0054 - public const int Base_TextAppearance_AppCompat_Display3 = 2131558484; + // aapt resource value: 0x7f0e0054 + public const int Base_TextAppearance_AppCompat_Display3 = 2131624020; - // aapt resource value: 0x7f0d0055 - public const int Base_TextAppearance_AppCompat_Display4 = 2131558485; + // aapt resource value: 0x7f0e0055 + public const int Base_TextAppearance_AppCompat_Display4 = 2131624021; - // aapt resource value: 0x7f0d0056 - public const int Base_TextAppearance_AppCompat_Headline = 2131558486; + // aapt resource value: 0x7f0e0056 + public const int Base_TextAppearance_AppCompat_Headline = 2131624022; - // aapt resource value: 0x7f0d001a - public const int Base_TextAppearance_AppCompat_Inverse = 2131558426; + // aapt resource value: 0x7f0e001a + public const int Base_TextAppearance_AppCompat_Inverse = 2131623962; - // aapt resource value: 0x7f0d0057 - public const int Base_TextAppearance_AppCompat_Large = 2131558487; + // aapt resource value: 0x7f0e0057 + public const int Base_TextAppearance_AppCompat_Large = 2131624023; - // aapt resource value: 0x7f0d001b - public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131558427; + // aapt resource value: 0x7f0e001b + public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131623963; - // aapt resource value: 0x7f0d0058 - public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131558488; + // aapt resource value: 0x7f0e0058 + public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131624024; - // aapt resource value: 0x7f0d0059 - public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131558489; + // aapt resource value: 0x7f0e0059 + public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131624025; - // aapt resource value: 0x7f0d005a - public const int Base_TextAppearance_AppCompat_Medium = 2131558490; + // aapt resource value: 0x7f0e005a + public const int Base_TextAppearance_AppCompat_Medium = 2131624026; - // aapt resource value: 0x7f0d001c - public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131558428; + // aapt resource value: 0x7f0e001c + public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131623964; - // aapt resource value: 0x7f0d005b - public const int Base_TextAppearance_AppCompat_Menu = 2131558491; + // aapt resource value: 0x7f0e005b + public const int Base_TextAppearance_AppCompat_Menu = 2131624027; - // aapt resource value: 0x7f0d00b8 - public const int Base_TextAppearance_AppCompat_SearchResult = 2131558584; + // aapt resource value: 0x7f0e00b8 + public const int Base_TextAppearance_AppCompat_SearchResult = 2131624120; - // aapt resource value: 0x7f0d005c - public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131558492; + // aapt resource value: 0x7f0e005c + public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131624028; - // aapt resource value: 0x7f0d005d - public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131558493; + // aapt resource value: 0x7f0e005d + public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131624029; - // aapt resource value: 0x7f0d005e - public const int Base_TextAppearance_AppCompat_Small = 2131558494; + // aapt resource value: 0x7f0e005e + public const int Base_TextAppearance_AppCompat_Small = 2131624030; - // aapt resource value: 0x7f0d001d - public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131558429; + // aapt resource value: 0x7f0e001d + public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131623965; - // aapt resource value: 0x7f0d005f - public const int Base_TextAppearance_AppCompat_Subhead = 2131558495; + // aapt resource value: 0x7f0e005f + public const int Base_TextAppearance_AppCompat_Subhead = 2131624031; - // aapt resource value: 0x7f0d001e - public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131558430; + // aapt resource value: 0x7f0e001e + public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131623966; - // aapt resource value: 0x7f0d0060 - public const int Base_TextAppearance_AppCompat_Title = 2131558496; + // aapt resource value: 0x7f0e0060 + public const int Base_TextAppearance_AppCompat_Title = 2131624032; - // aapt resource value: 0x7f0d001f - public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131558431; + // aapt resource value: 0x7f0e001f + public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131623967; - // aapt resource value: 0x7f0d00a3 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131558563; + // aapt resource value: 0x7f0e00a3 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131624099; - // aapt resource value: 0x7f0d0061 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131558497; + // aapt resource value: 0x7f0e0061 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131624033; - // aapt resource value: 0x7f0d0062 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131558498; + // aapt resource value: 0x7f0e0062 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131624034; - // aapt resource value: 0x7f0d0063 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131558499; + // aapt resource value: 0x7f0e0063 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131624035; - // aapt resource value: 0x7f0d0064 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131558500; + // aapt resource value: 0x7f0e0064 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131624036; - // aapt resource value: 0x7f0d0065 - public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131558501; + // aapt resource value: 0x7f0e0065 + public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131624037; - // aapt resource value: 0x7f0d0066 - public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131558502; + // aapt resource value: 0x7f0e0066 + public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131624038; - // aapt resource value: 0x7f0d0067 - public const int Base_TextAppearance_AppCompat_Widget_Button = 2131558503; + // aapt resource value: 0x7f0e0067 + public const int Base_TextAppearance_AppCompat_Widget_Button = 2131624039; - // aapt resource value: 0x7f0d00aa - public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131558570; + // aapt resource value: 0x7f0e00aa + public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131624106; - // aapt resource value: 0x7f0d00ab - public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131558571; + // aapt resource value: 0x7f0e00ab + public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131624107; - // aapt resource value: 0x7f0d00a4 - public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131558564; + // aapt resource value: 0x7f0e00a4 + public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131624100; - // aapt resource value: 0x7f0d00b9 - public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131558585; + // aapt resource value: 0x7f0e00b9 + public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131624121; - // aapt resource value: 0x7f0d0068 - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131558504; + // aapt resource value: 0x7f0e0068 + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131624040; - // aapt resource value: 0x7f0d0069 - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131558505; + // aapt resource value: 0x7f0e0069 + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131624041; - // aapt resource value: 0x7f0d006a - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131558506; + // aapt resource value: 0x7f0e006a + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131624042; - // aapt resource value: 0x7f0d006b - public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131558507; + // aapt resource value: 0x7f0e006b + public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131624043; - // aapt resource value: 0x7f0d006c - public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131558508; + // aapt resource value: 0x7f0e006c + public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131624044; - // aapt resource value: 0x7f0d00ba - public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131558586; + // aapt resource value: 0x7f0e00ba + public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131624122; - // aapt resource value: 0x7f0d006d - public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131558509; + // aapt resource value: 0x7f0e006d + public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131624045; - // aapt resource value: 0x7f0d006e - public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131558510; + // aapt resource value: 0x7f0e006e + public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131624046; - // aapt resource value: 0x7f0d006f - public const int Base_Theme_AppCompat = 2131558511; + // aapt resource value: 0x7f0e006f + public const int Base_Theme_AppCompat = 2131624047; - // aapt resource value: 0x7f0d00bb - public const int Base_Theme_AppCompat_CompactMenu = 2131558587; + // aapt resource value: 0x7f0e00bb + public const int Base_Theme_AppCompat_CompactMenu = 2131624123; - // aapt resource value: 0x7f0d0020 - public const int Base_Theme_AppCompat_Dialog = 2131558432; + // aapt resource value: 0x7f0e0020 + public const int Base_Theme_AppCompat_Dialog = 2131623968; - // aapt resource value: 0x7f0d0021 - public const int Base_Theme_AppCompat_Dialog_Alert = 2131558433; + // aapt resource value: 0x7f0e0021 + public const int Base_Theme_AppCompat_Dialog_Alert = 2131623969; - // aapt resource value: 0x7f0d00bc - public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131558588; + // aapt resource value: 0x7f0e00bc + public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131624124; - // aapt resource value: 0x7f0d0022 - public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131558434; + // aapt resource value: 0x7f0e0022 + public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131623970; - // aapt resource value: 0x7f0d0010 - public const int Base_Theme_AppCompat_DialogWhenLarge = 2131558416; + // aapt resource value: 0x7f0e0010 + public const int Base_Theme_AppCompat_DialogWhenLarge = 2131623952; - // aapt resource value: 0x7f0d0070 - public const int Base_Theme_AppCompat_Light = 2131558512; + // aapt resource value: 0x7f0e0070 + public const int Base_Theme_AppCompat_Light = 2131624048; - // aapt resource value: 0x7f0d00bd - public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131558589; + // aapt resource value: 0x7f0e00bd + public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131624125; - // aapt resource value: 0x7f0d0023 - public const int Base_Theme_AppCompat_Light_Dialog = 2131558435; + // aapt resource value: 0x7f0e0023 + public const int Base_Theme_AppCompat_Light_Dialog = 2131623971; - // aapt resource value: 0x7f0d0024 - public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131558436; + // aapt resource value: 0x7f0e0024 + public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131623972; - // aapt resource value: 0x7f0d00be - public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131558590; + // aapt resource value: 0x7f0e00be + public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131624126; - // aapt resource value: 0x7f0d0025 - public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131558437; + // aapt resource value: 0x7f0e0025 + public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131623973; - // aapt resource value: 0x7f0d0011 - public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131558417; + // aapt resource value: 0x7f0e0011 + public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131623953; - // aapt resource value: 0x7f0d00bf - public const int Base_ThemeOverlay_AppCompat = 2131558591; + // aapt resource value: 0x7f0e00bf + public const int Base_ThemeOverlay_AppCompat = 2131624127; - // aapt resource value: 0x7f0d00c0 - public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131558592; + // aapt resource value: 0x7f0e00c0 + public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131624128; - // aapt resource value: 0x7f0d00c1 - public const int Base_ThemeOverlay_AppCompat_Dark = 2131558593; + // aapt resource value: 0x7f0e00c1 + public const int Base_ThemeOverlay_AppCompat_Dark = 2131624129; - // aapt resource value: 0x7f0d00c2 - public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131558594; + // aapt resource value: 0x7f0e00c2 + public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131624130; - // aapt resource value: 0x7f0d0026 - public const int Base_ThemeOverlay_AppCompat_Dialog = 2131558438; + // aapt resource value: 0x7f0e0026 + public const int Base_ThemeOverlay_AppCompat_Dialog = 2131623974; - // aapt resource value: 0x7f0d0027 - public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131558439; + // aapt resource value: 0x7f0e0027 + public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131623975; - // aapt resource value: 0x7f0d00c3 - public const int Base_ThemeOverlay_AppCompat_Light = 2131558595; + // aapt resource value: 0x7f0e00c3 + public const int Base_ThemeOverlay_AppCompat_Light = 2131624131; - // aapt resource value: 0x7f0d0028 - public const int Base_V11_Theme_AppCompat_Dialog = 2131558440; + // aapt resource value: 0x7f0e0028 + public const int Base_V11_Theme_AppCompat_Dialog = 2131623976; - // aapt resource value: 0x7f0d0029 - public const int Base_V11_Theme_AppCompat_Light_Dialog = 2131558441; + // aapt resource value: 0x7f0e0029 + public const int Base_V11_Theme_AppCompat_Light_Dialog = 2131623977; - // aapt resource value: 0x7f0d002a - public const int Base_V11_ThemeOverlay_AppCompat_Dialog = 2131558442; + // aapt resource value: 0x7f0e002a + public const int Base_V11_ThemeOverlay_AppCompat_Dialog = 2131623978; - // aapt resource value: 0x7f0d0032 - public const int Base_V12_Widget_AppCompat_AutoCompleteTextView = 2131558450; + // aapt resource value: 0x7f0e0032 + public const int Base_V12_Widget_AppCompat_AutoCompleteTextView = 2131623986; - // aapt resource value: 0x7f0d0033 - public const int Base_V12_Widget_AppCompat_EditText = 2131558451; + // aapt resource value: 0x7f0e0033 + public const int Base_V12_Widget_AppCompat_EditText = 2131623987; - // aapt resource value: 0x7f0d0071 - public const int Base_V21_Theme_AppCompat = 2131558513; + // aapt resource value: 0x7f0e0071 + public const int Base_V21_Theme_AppCompat = 2131624049; - // aapt resource value: 0x7f0d0072 - public const int Base_V21_Theme_AppCompat_Dialog = 2131558514; + // aapt resource value: 0x7f0e0072 + public const int Base_V21_Theme_AppCompat_Dialog = 2131624050; - // aapt resource value: 0x7f0d0073 - public const int Base_V21_Theme_AppCompat_Light = 2131558515; + // aapt resource value: 0x7f0e0073 + public const int Base_V21_Theme_AppCompat_Light = 2131624051; - // aapt resource value: 0x7f0d0074 - public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131558516; + // aapt resource value: 0x7f0e0074 + public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131624052; - // aapt resource value: 0x7f0d0075 - public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131558517; + // aapt resource value: 0x7f0e0075 + public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131624053; - // aapt resource value: 0x7f0d00a1 - public const int Base_V22_Theme_AppCompat = 2131558561; + // aapt resource value: 0x7f0e00a1 + public const int Base_V22_Theme_AppCompat = 2131624097; - // aapt resource value: 0x7f0d00a2 - public const int Base_V22_Theme_AppCompat_Light = 2131558562; + // aapt resource value: 0x7f0e00a2 + public const int Base_V22_Theme_AppCompat_Light = 2131624098; - // aapt resource value: 0x7f0d00a5 - public const int Base_V23_Theme_AppCompat = 2131558565; + // aapt resource value: 0x7f0e00a5 + public const int Base_V23_Theme_AppCompat = 2131624101; - // aapt resource value: 0x7f0d00a6 - public const int Base_V23_Theme_AppCompat_Light = 2131558566; + // aapt resource value: 0x7f0e00a6 + public const int Base_V23_Theme_AppCompat_Light = 2131624102; - // aapt resource value: 0x7f0d00c4 - public const int Base_V7_Theme_AppCompat = 2131558596; + // aapt resource value: 0x7f0e00c4 + public const int Base_V7_Theme_AppCompat = 2131624132; - // aapt resource value: 0x7f0d00c5 - public const int Base_V7_Theme_AppCompat_Dialog = 2131558597; + // aapt resource value: 0x7f0e00c5 + public const int Base_V7_Theme_AppCompat_Dialog = 2131624133; - // aapt resource value: 0x7f0d00c6 - public const int Base_V7_Theme_AppCompat_Light = 2131558598; + // aapt resource value: 0x7f0e00c6 + public const int Base_V7_Theme_AppCompat_Light = 2131624134; - // aapt resource value: 0x7f0d00c7 - public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131558599; + // aapt resource value: 0x7f0e00c7 + public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131624135; - // aapt resource value: 0x7f0d00c8 - public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131558600; + // aapt resource value: 0x7f0e00c8 + public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131624136; - // aapt resource value: 0x7f0d00c9 - public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131558601; + // aapt resource value: 0x7f0e00c9 + public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131624137; - // aapt resource value: 0x7f0d00ca - public const int Base_V7_Widget_AppCompat_EditText = 2131558602; + // aapt resource value: 0x7f0e00ca + public const int Base_V7_Widget_AppCompat_EditText = 2131624138; - // aapt resource value: 0x7f0d00cb - public const int Base_Widget_AppCompat_ActionBar = 2131558603; + // aapt resource value: 0x7f0e00cb + public const int Base_Widget_AppCompat_ActionBar = 2131624139; - // aapt resource value: 0x7f0d00cc - public const int Base_Widget_AppCompat_ActionBar_Solid = 2131558604; + // aapt resource value: 0x7f0e00cc + public const int Base_Widget_AppCompat_ActionBar_Solid = 2131624140; - // aapt resource value: 0x7f0d00cd - public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131558605; + // aapt resource value: 0x7f0e00cd + public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131624141; - // aapt resource value: 0x7f0d0076 - public const int Base_Widget_AppCompat_ActionBar_TabText = 2131558518; + // aapt resource value: 0x7f0e0076 + public const int Base_Widget_AppCompat_ActionBar_TabText = 2131624054; - // aapt resource value: 0x7f0d0077 - public const int Base_Widget_AppCompat_ActionBar_TabView = 2131558519; + // aapt resource value: 0x7f0e0077 + public const int Base_Widget_AppCompat_ActionBar_TabView = 2131624055; - // aapt resource value: 0x7f0d0078 - public const int Base_Widget_AppCompat_ActionButton = 2131558520; + // aapt resource value: 0x7f0e0078 + public const int Base_Widget_AppCompat_ActionButton = 2131624056; - // aapt resource value: 0x7f0d0079 - public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131558521; + // aapt resource value: 0x7f0e0079 + public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131624057; - // aapt resource value: 0x7f0d007a - public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131558522; + // aapt resource value: 0x7f0e007a + public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131624058; - // aapt resource value: 0x7f0d00ce - public const int Base_Widget_AppCompat_ActionMode = 2131558606; + // aapt resource value: 0x7f0e00ce + public const int Base_Widget_AppCompat_ActionMode = 2131624142; - // aapt resource value: 0x7f0d00cf - public const int Base_Widget_AppCompat_ActivityChooserView = 2131558607; + // aapt resource value: 0x7f0e00cf + public const int Base_Widget_AppCompat_ActivityChooserView = 2131624143; - // aapt resource value: 0x7f0d0034 - public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131558452; + // aapt resource value: 0x7f0e0034 + public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131623988; - // aapt resource value: 0x7f0d007b - public const int Base_Widget_AppCompat_Button = 2131558523; + // aapt resource value: 0x7f0e007b + public const int Base_Widget_AppCompat_Button = 2131624059; - // aapt resource value: 0x7f0d007c - public const int Base_Widget_AppCompat_Button_Borderless = 2131558524; + // aapt resource value: 0x7f0e007c + public const int Base_Widget_AppCompat_Button_Borderless = 2131624060; - // aapt resource value: 0x7f0d007d - public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131558525; + // aapt resource value: 0x7f0e007d + public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131624061; - // aapt resource value: 0x7f0d00d0 - public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131558608; + // aapt resource value: 0x7f0e00d0 + public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131624144; - // aapt resource value: 0x7f0d00a7 - public const int Base_Widget_AppCompat_Button_Colored = 2131558567; + // aapt resource value: 0x7f0e00a7 + public const int Base_Widget_AppCompat_Button_Colored = 2131624103; - // aapt resource value: 0x7f0d007e - public const int Base_Widget_AppCompat_Button_Small = 2131558526; + // aapt resource value: 0x7f0e007e + public const int Base_Widget_AppCompat_Button_Small = 2131624062; - // aapt resource value: 0x7f0d007f - public const int Base_Widget_AppCompat_ButtonBar = 2131558527; + // aapt resource value: 0x7f0e007f + public const int Base_Widget_AppCompat_ButtonBar = 2131624063; - // aapt resource value: 0x7f0d00d1 - public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131558609; + // aapt resource value: 0x7f0e00d1 + public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131624145; - // aapt resource value: 0x7f0d0080 - public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131558528; + // aapt resource value: 0x7f0e0080 + public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131624064; - // aapt resource value: 0x7f0d0081 - public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131558529; + // aapt resource value: 0x7f0e0081 + public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131624065; - // aapt resource value: 0x7f0d00d2 - public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131558610; + // aapt resource value: 0x7f0e00d2 + public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131624146; - // aapt resource value: 0x7f0d000f - public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131558415; + // aapt resource value: 0x7f0e000f + public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131623951; - // aapt resource value: 0x7f0d00d3 - public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131558611; + // aapt resource value: 0x7f0e00d3 + public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131624147; - // aapt resource value: 0x7f0d0082 - public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131558530; + // aapt resource value: 0x7f0e0082 + public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131624066; - // aapt resource value: 0x7f0d0035 - public const int Base_Widget_AppCompat_EditText = 2131558453; + // aapt resource value: 0x7f0e0035 + public const int Base_Widget_AppCompat_EditText = 2131623989; - // aapt resource value: 0x7f0d0083 - public const int Base_Widget_AppCompat_ImageButton = 2131558531; + // aapt resource value: 0x7f0e0083 + public const int Base_Widget_AppCompat_ImageButton = 2131624067; - // aapt resource value: 0x7f0d00d4 - public const int Base_Widget_AppCompat_Light_ActionBar = 2131558612; + // aapt resource value: 0x7f0e00d4 + public const int Base_Widget_AppCompat_Light_ActionBar = 2131624148; - // aapt resource value: 0x7f0d00d5 - public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131558613; + // aapt resource value: 0x7f0e00d5 + public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131624149; - // aapt resource value: 0x7f0d00d6 - public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131558614; + // aapt resource value: 0x7f0e00d6 + public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131624150; - // aapt resource value: 0x7f0d0084 - public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131558532; + // aapt resource value: 0x7f0e0084 + public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131624068; - // aapt resource value: 0x7f0d0085 - public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131558533; + // aapt resource value: 0x7f0e0085 + public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131624069; - // aapt resource value: 0x7f0d0086 - public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131558534; + // aapt resource value: 0x7f0e0086 + public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131624070; - // aapt resource value: 0x7f0d0087 - public const int Base_Widget_AppCompat_Light_PopupMenu = 2131558535; + // aapt resource value: 0x7f0e0087 + public const int Base_Widget_AppCompat_Light_PopupMenu = 2131624071; - // aapt resource value: 0x7f0d0088 - public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131558536; + // aapt resource value: 0x7f0e0088 + public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131624072; - // aapt resource value: 0x7f0d00d7 - public const int Base_Widget_AppCompat_ListMenuView = 2131558615; + // aapt resource value: 0x7f0e00d7 + public const int Base_Widget_AppCompat_ListMenuView = 2131624151; - // aapt resource value: 0x7f0d0089 - public const int Base_Widget_AppCompat_ListPopupWindow = 2131558537; + // aapt resource value: 0x7f0e0089 + public const int Base_Widget_AppCompat_ListPopupWindow = 2131624073; - // aapt resource value: 0x7f0d008a - public const int Base_Widget_AppCompat_ListView = 2131558538; + // aapt resource value: 0x7f0e008a + public const int Base_Widget_AppCompat_ListView = 2131624074; - // aapt resource value: 0x7f0d008b - public const int Base_Widget_AppCompat_ListView_DropDown = 2131558539; + // aapt resource value: 0x7f0e008b + public const int Base_Widget_AppCompat_ListView_DropDown = 2131624075; - // aapt resource value: 0x7f0d008c - public const int Base_Widget_AppCompat_ListView_Menu = 2131558540; + // aapt resource value: 0x7f0e008c + public const int Base_Widget_AppCompat_ListView_Menu = 2131624076; - // aapt resource value: 0x7f0d008d - public const int Base_Widget_AppCompat_PopupMenu = 2131558541; + // aapt resource value: 0x7f0e008d + public const int Base_Widget_AppCompat_PopupMenu = 2131624077; - // aapt resource value: 0x7f0d008e - public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131558542; + // aapt resource value: 0x7f0e008e + public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131624078; - // aapt resource value: 0x7f0d00d8 - public const int Base_Widget_AppCompat_PopupWindow = 2131558616; + // aapt resource value: 0x7f0e00d8 + public const int Base_Widget_AppCompat_PopupWindow = 2131624152; - // aapt resource value: 0x7f0d002b - public const int Base_Widget_AppCompat_ProgressBar = 2131558443; + // aapt resource value: 0x7f0e002b + public const int Base_Widget_AppCompat_ProgressBar = 2131623979; - // aapt resource value: 0x7f0d002c - public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131558444; + // aapt resource value: 0x7f0e002c + public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131623980; - // aapt resource value: 0x7f0d008f - public const int Base_Widget_AppCompat_RatingBar = 2131558543; + // aapt resource value: 0x7f0e008f + public const int Base_Widget_AppCompat_RatingBar = 2131624079; - // aapt resource value: 0x7f0d00a8 - public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131558568; + // aapt resource value: 0x7f0e00a8 + public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131624104; - // aapt resource value: 0x7f0d00a9 - public const int Base_Widget_AppCompat_RatingBar_Small = 2131558569; + // aapt resource value: 0x7f0e00a9 + public const int Base_Widget_AppCompat_RatingBar_Small = 2131624105; - // aapt resource value: 0x7f0d00d9 - public const int Base_Widget_AppCompat_SearchView = 2131558617; + // aapt resource value: 0x7f0e00d9 + public const int Base_Widget_AppCompat_SearchView = 2131624153; - // aapt resource value: 0x7f0d00da - public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131558618; + // aapt resource value: 0x7f0e00da + public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131624154; - // aapt resource value: 0x7f0d0090 - public const int Base_Widget_AppCompat_SeekBar = 2131558544; + // aapt resource value: 0x7f0e0090 + public const int Base_Widget_AppCompat_SeekBar = 2131624080; - // aapt resource value: 0x7f0d00db - public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131558619; + // aapt resource value: 0x7f0e00db + public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131624155; - // aapt resource value: 0x7f0d0091 - public const int Base_Widget_AppCompat_Spinner = 2131558545; + // aapt resource value: 0x7f0e0091 + public const int Base_Widget_AppCompat_Spinner = 2131624081; - // aapt resource value: 0x7f0d0012 - public const int Base_Widget_AppCompat_Spinner_Underlined = 2131558418; + // aapt resource value: 0x7f0e0012 + public const int Base_Widget_AppCompat_Spinner_Underlined = 2131623954; - // aapt resource value: 0x7f0d0092 - public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131558546; + // aapt resource value: 0x7f0e0092 + public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131624082; - // aapt resource value: 0x7f0d00dc - public const int Base_Widget_AppCompat_Toolbar = 2131558620; + // aapt resource value: 0x7f0e00dc + public const int Base_Widget_AppCompat_Toolbar = 2131624156; - // aapt resource value: 0x7f0d0093 - public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131558547; + // aapt resource value: 0x7f0e0093 + public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131624083; - // aapt resource value: 0x7f0d0171 - public const int Base_Widget_Design_AppBarLayout = 2131558769; + // aapt resource value: 0x7f0e0171 + public const int Base_Widget_Design_AppBarLayout = 2131624305; - // aapt resource value: 0x7f0d0172 - public const int Base_Widget_Design_TabLayout = 2131558770; + // aapt resource value: 0x7f0e0172 + public const int Base_Widget_Design_TabLayout = 2131624306; - // aapt resource value: 0x7f0d018d - public const int BitwardenTheme = 2131558797; + // aapt resource value: 0x7f0e018d + public const int BitwardenTheme = 2131624333; - // aapt resource value: 0x7f0d018e - public const int BitwardenTheme_Base = 2131558798; + // aapt resource value: 0x7f0e018e + public const int BitwardenTheme_Base = 2131624334; - // aapt resource value: 0x7f0d018c - public const int BitwardenTheme_Splash = 2131558796; + // aapt resource value: 0x7f0e018c + public const int BitwardenTheme_Splash = 2131624332; - // aapt resource value: 0x7f0d000b - public const int CardView = 2131558411; + // aapt resource value: 0x7f0e000b + public const int CardView = 2131623947; - // aapt resource value: 0x7f0d000d - public const int CardView_Dark = 2131558413; + // aapt resource value: 0x7f0e000d + public const int CardView_Dark = 2131623949; - // aapt resource value: 0x7f0d000e - public const int CardView_Light = 2131558414; + // aapt resource value: 0x7f0e000e + public const int CardView_Light = 2131623950; - // aapt resource value: 0x7f0d0189 - public const int HockeyApp_ButtonStyle = 2131558793; + // aapt resource value: 0x7f0e0189 + public const int HockeyApp_ButtonStyle = 2131624329; - // aapt resource value: 0x7f0d018a - public const int HockeyApp_EditTextStyle = 2131558794; + // aapt resource value: 0x7f0e018a + public const int HockeyApp_EditTextStyle = 2131624330; - // aapt resource value: 0x7f0d018b - public const int HockeyApp_SingleLineInputStyle = 2131558795; + // aapt resource value: 0x7f0e018b + public const int HockeyApp_SingleLineInputStyle = 2131624331; - // aapt resource value: 0x7f0d002d - public const int Platform_AppCompat = 2131558445; + // aapt resource value: 0x7f0e002d + public const int Platform_AppCompat = 2131623981; - // aapt resource value: 0x7f0d002e - public const int Platform_AppCompat_Light = 2131558446; + // aapt resource value: 0x7f0e002e + public const int Platform_AppCompat_Light = 2131623982; - // aapt resource value: 0x7f0d0094 - public const int Platform_ThemeOverlay_AppCompat = 2131558548; + // aapt resource value: 0x7f0e0094 + public const int Platform_ThemeOverlay_AppCompat = 2131624084; - // aapt resource value: 0x7f0d0095 - public const int Platform_ThemeOverlay_AppCompat_Dark = 2131558549; + // aapt resource value: 0x7f0e0095 + public const int Platform_ThemeOverlay_AppCompat_Dark = 2131624085; - // aapt resource value: 0x7f0d0096 - public const int Platform_ThemeOverlay_AppCompat_Light = 2131558550; + // aapt resource value: 0x7f0e0096 + public const int Platform_ThemeOverlay_AppCompat_Light = 2131624086; - // aapt resource value: 0x7f0d002f - public const int Platform_V11_AppCompat = 2131558447; + // aapt resource value: 0x7f0e002f + public const int Platform_V11_AppCompat = 2131623983; - // aapt resource value: 0x7f0d0030 - public const int Platform_V11_AppCompat_Light = 2131558448; + // aapt resource value: 0x7f0e0030 + public const int Platform_V11_AppCompat_Light = 2131623984; - // aapt resource value: 0x7f0d0037 - public const int Platform_V14_AppCompat = 2131558455; + // aapt resource value: 0x7f0e0037 + public const int Platform_V14_AppCompat = 2131623991; - // aapt resource value: 0x7f0d0038 - public const int Platform_V14_AppCompat_Light = 2131558456; + // aapt resource value: 0x7f0e0038 + public const int Platform_V14_AppCompat_Light = 2131623992; - // aapt resource value: 0x7f0d0097 - public const int Platform_V21_AppCompat = 2131558551; + // aapt resource value: 0x7f0e0097 + public const int Platform_V21_AppCompat = 2131624087; - // aapt resource value: 0x7f0d0098 - public const int Platform_V21_AppCompat_Light = 2131558552; + // aapt resource value: 0x7f0e0098 + public const int Platform_V21_AppCompat_Light = 2131624088; - // aapt resource value: 0x7f0d00ac - public const int Platform_V25_AppCompat = 2131558572; + // aapt resource value: 0x7f0e00ac + public const int Platform_V25_AppCompat = 2131624108; - // aapt resource value: 0x7f0d00ad - public const int Platform_V25_AppCompat_Light = 2131558573; + // aapt resource value: 0x7f0e00ad + public const int Platform_V25_AppCompat_Light = 2131624109; - // aapt resource value: 0x7f0d0031 - public const int Platform_Widget_AppCompat_Spinner = 2131558449; + // aapt resource value: 0x7f0e0031 + public const int Platform_Widget_AppCompat_Spinner = 2131623985; - // aapt resource value: 0x7f0d0040 - public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131558464; + // aapt resource value: 0x7f0e0040 + public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131624000; - // aapt resource value: 0x7f0d0041 - public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131558465; + // aapt resource value: 0x7f0e0041 + public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131624001; - // aapt resource value: 0x7f0d0042 - public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131558466; + // aapt resource value: 0x7f0e0042 + public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131624002; - // aapt resource value: 0x7f0d0043 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131558467; + // aapt resource value: 0x7f0e0043 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131624003; - // aapt resource value: 0x7f0d0044 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131558468; + // aapt resource value: 0x7f0e0044 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131624004; - // aapt resource value: 0x7f0d0045 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131558469; + // aapt resource value: 0x7f0e0045 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131624005; - // aapt resource value: 0x7f0d0046 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131558470; + // aapt resource value: 0x7f0e0046 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131624006; - // aapt resource value: 0x7f0d0047 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131558471; + // aapt resource value: 0x7f0e0047 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131624007; - // aapt resource value: 0x7f0d0048 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131558472; + // aapt resource value: 0x7f0e0048 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131624008; - // aapt resource value: 0x7f0d0049 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131558473; + // aapt resource value: 0x7f0e0049 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131624009; - // aapt resource value: 0x7f0d004a - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131558474; + // aapt resource value: 0x7f0e004a + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131624010; - // aapt resource value: 0x7f0d004b - public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131558475; + // aapt resource value: 0x7f0e004b + public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131624011; - // aapt resource value: 0x7f0d004c - public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131558476; + // aapt resource value: 0x7f0e004c + public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131624012; - // aapt resource value: 0x7f0d004d - public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131558477; + // aapt resource value: 0x7f0e004d + public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131624013; - // aapt resource value: 0x7f0d00dd - public const int TextAppearance_AppCompat = 2131558621; + // aapt resource value: 0x7f0e00dd + public const int TextAppearance_AppCompat = 2131624157; - // aapt resource value: 0x7f0d00de - public const int TextAppearance_AppCompat_Body1 = 2131558622; + // aapt resource value: 0x7f0e00de + public const int TextAppearance_AppCompat_Body1 = 2131624158; - // aapt resource value: 0x7f0d00df - public const int TextAppearance_AppCompat_Body2 = 2131558623; + // aapt resource value: 0x7f0e00df + public const int TextAppearance_AppCompat_Body2 = 2131624159; - // aapt resource value: 0x7f0d00e0 - public const int TextAppearance_AppCompat_Button = 2131558624; + // aapt resource value: 0x7f0e00e0 + public const int TextAppearance_AppCompat_Button = 2131624160; - // aapt resource value: 0x7f0d00e1 - public const int TextAppearance_AppCompat_Caption = 2131558625; + // aapt resource value: 0x7f0e00e1 + public const int TextAppearance_AppCompat_Caption = 2131624161; - // aapt resource value: 0x7f0d00e2 - public const int TextAppearance_AppCompat_Display1 = 2131558626; + // aapt resource value: 0x7f0e00e2 + public const int TextAppearance_AppCompat_Display1 = 2131624162; - // aapt resource value: 0x7f0d00e3 - public const int TextAppearance_AppCompat_Display2 = 2131558627; + // aapt resource value: 0x7f0e00e3 + public const int TextAppearance_AppCompat_Display2 = 2131624163; - // aapt resource value: 0x7f0d00e4 - public const int TextAppearance_AppCompat_Display3 = 2131558628; + // aapt resource value: 0x7f0e00e4 + public const int TextAppearance_AppCompat_Display3 = 2131624164; - // aapt resource value: 0x7f0d00e5 - public const int TextAppearance_AppCompat_Display4 = 2131558629; + // aapt resource value: 0x7f0e00e5 + public const int TextAppearance_AppCompat_Display4 = 2131624165; - // aapt resource value: 0x7f0d00e6 - public const int TextAppearance_AppCompat_Headline = 2131558630; + // aapt resource value: 0x7f0e00e6 + public const int TextAppearance_AppCompat_Headline = 2131624166; - // aapt resource value: 0x7f0d00e7 - public const int TextAppearance_AppCompat_Inverse = 2131558631; + // aapt resource value: 0x7f0e00e7 + public const int TextAppearance_AppCompat_Inverse = 2131624167; - // aapt resource value: 0x7f0d00e8 - public const int TextAppearance_AppCompat_Large = 2131558632; + // aapt resource value: 0x7f0e00e8 + public const int TextAppearance_AppCompat_Large = 2131624168; - // aapt resource value: 0x7f0d00e9 - public const int TextAppearance_AppCompat_Large_Inverse = 2131558633; + // aapt resource value: 0x7f0e00e9 + public const int TextAppearance_AppCompat_Large_Inverse = 2131624169; - // aapt resource value: 0x7f0d00ea - public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131558634; + // aapt resource value: 0x7f0e00ea + public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131624170; - // aapt resource value: 0x7f0d00eb - public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131558635; + // aapt resource value: 0x7f0e00eb + public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131624171; - // aapt resource value: 0x7f0d00ec - public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131558636; + // aapt resource value: 0x7f0e00ec + public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131624172; - // aapt resource value: 0x7f0d00ed - public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131558637; + // aapt resource value: 0x7f0e00ed + public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131624173; - // aapt resource value: 0x7f0d00ee - public const int TextAppearance_AppCompat_Medium = 2131558638; + // aapt resource value: 0x7f0e00ee + public const int TextAppearance_AppCompat_Medium = 2131624174; - // aapt resource value: 0x7f0d00ef - public const int TextAppearance_AppCompat_Medium_Inverse = 2131558639; + // aapt resource value: 0x7f0e00ef + public const int TextAppearance_AppCompat_Medium_Inverse = 2131624175; - // aapt resource value: 0x7f0d00f0 - public const int TextAppearance_AppCompat_Menu = 2131558640; + // aapt resource value: 0x7f0e00f0 + public const int TextAppearance_AppCompat_Menu = 2131624176; - // aapt resource value: 0x7f0d0039 - public const int TextAppearance_AppCompat_Notification = 2131558457; + // aapt resource value: 0x7f0e0039 + public const int TextAppearance_AppCompat_Notification = 2131623993; - // aapt resource value: 0x7f0d0099 - public const int TextAppearance_AppCompat_Notification_Info = 2131558553; + // aapt resource value: 0x7f0e0099 + public const int TextAppearance_AppCompat_Notification_Info = 2131624089; - // aapt resource value: 0x7f0d009a - public const int TextAppearance_AppCompat_Notification_Info_Media = 2131558554; + // aapt resource value: 0x7f0e009a + public const int TextAppearance_AppCompat_Notification_Info_Media = 2131624090; - // aapt resource value: 0x7f0d00f1 - public const int TextAppearance_AppCompat_Notification_Line2 = 2131558641; + // aapt resource value: 0x7f0e00f1 + public const int TextAppearance_AppCompat_Notification_Line2 = 2131624177; - // aapt resource value: 0x7f0d00f2 - public const int TextAppearance_AppCompat_Notification_Line2_Media = 2131558642; + // aapt resource value: 0x7f0e00f2 + public const int TextAppearance_AppCompat_Notification_Line2_Media = 2131624178; - // aapt resource value: 0x7f0d009b - public const int TextAppearance_AppCompat_Notification_Media = 2131558555; + // aapt resource value: 0x7f0e009b + public const int TextAppearance_AppCompat_Notification_Media = 2131624091; - // aapt resource value: 0x7f0d009c - public const int TextAppearance_AppCompat_Notification_Time = 2131558556; + // aapt resource value: 0x7f0e009c + public const int TextAppearance_AppCompat_Notification_Time = 2131624092; - // aapt resource value: 0x7f0d009d - public const int TextAppearance_AppCompat_Notification_Time_Media = 2131558557; + // aapt resource value: 0x7f0e009d + public const int TextAppearance_AppCompat_Notification_Time_Media = 2131624093; - // aapt resource value: 0x7f0d003a - public const int TextAppearance_AppCompat_Notification_Title = 2131558458; + // aapt resource value: 0x7f0e003a + public const int TextAppearance_AppCompat_Notification_Title = 2131623994; - // aapt resource value: 0x7f0d009e - public const int TextAppearance_AppCompat_Notification_Title_Media = 2131558558; + // aapt resource value: 0x7f0e009e + public const int TextAppearance_AppCompat_Notification_Title_Media = 2131624094; - // aapt resource value: 0x7f0d00f3 - public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131558643; + // aapt resource value: 0x7f0e00f3 + public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131624179; - // aapt resource value: 0x7f0d00f4 - public const int TextAppearance_AppCompat_SearchResult_Title = 2131558644; + // aapt resource value: 0x7f0e00f4 + public const int TextAppearance_AppCompat_SearchResult_Title = 2131624180; - // aapt resource value: 0x7f0d00f5 - public const int TextAppearance_AppCompat_Small = 2131558645; + // aapt resource value: 0x7f0e00f5 + public const int TextAppearance_AppCompat_Small = 2131624181; - // aapt resource value: 0x7f0d00f6 - public const int TextAppearance_AppCompat_Small_Inverse = 2131558646; + // aapt resource value: 0x7f0e00f6 + public const int TextAppearance_AppCompat_Small_Inverse = 2131624182; - // aapt resource value: 0x7f0d00f7 - public const int TextAppearance_AppCompat_Subhead = 2131558647; + // aapt resource value: 0x7f0e00f7 + public const int TextAppearance_AppCompat_Subhead = 2131624183; - // aapt resource value: 0x7f0d00f8 - public const int TextAppearance_AppCompat_Subhead_Inverse = 2131558648; + // aapt resource value: 0x7f0e00f8 + public const int TextAppearance_AppCompat_Subhead_Inverse = 2131624184; - // aapt resource value: 0x7f0d00f9 - public const int TextAppearance_AppCompat_Title = 2131558649; + // aapt resource value: 0x7f0e00f9 + public const int TextAppearance_AppCompat_Title = 2131624185; - // aapt resource value: 0x7f0d00fa - public const int TextAppearance_AppCompat_Title_Inverse = 2131558650; + // aapt resource value: 0x7f0e00fa + public const int TextAppearance_AppCompat_Title_Inverse = 2131624186; - // aapt resource value: 0x7f0d00fb - public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131558651; + // aapt resource value: 0x7f0e00fb + public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131624187; - // aapt resource value: 0x7f0d00fc - public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131558652; + // aapt resource value: 0x7f0e00fc + public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131624188; - // aapt resource value: 0x7f0d00fd - public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131558653; + // aapt resource value: 0x7f0e00fd + public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131624189; - // aapt resource value: 0x7f0d00fe - public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131558654; + // aapt resource value: 0x7f0e00fe + public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131624190; - // aapt resource value: 0x7f0d00ff - public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131558655; + // aapt resource value: 0x7f0e00ff + public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131624191; - // aapt resource value: 0x7f0d0100 - public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131558656; + // aapt resource value: 0x7f0e0100 + public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131624192; - // aapt resource value: 0x7f0d0101 - public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131558657; + // aapt resource value: 0x7f0e0101 + public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131624193; - // aapt resource value: 0x7f0d0102 - public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131558658; + // aapt resource value: 0x7f0e0102 + public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131624194; - // aapt resource value: 0x7f0d0103 - public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131558659; + // aapt resource value: 0x7f0e0103 + public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131624195; - // aapt resource value: 0x7f0d0104 - public const int TextAppearance_AppCompat_Widget_Button = 2131558660; + // aapt resource value: 0x7f0e0104 + public const int TextAppearance_AppCompat_Widget_Button = 2131624196; - // aapt resource value: 0x7f0d0105 - public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131558661; + // aapt resource value: 0x7f0e0105 + public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131624197; - // aapt resource value: 0x7f0d0106 - public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131558662; + // aapt resource value: 0x7f0e0106 + public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131624198; - // aapt resource value: 0x7f0d0107 - public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131558663; + // aapt resource value: 0x7f0e0107 + public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131624199; - // aapt resource value: 0x7f0d0108 - public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131558664; + // aapt resource value: 0x7f0e0108 + public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131624200; - // aapt resource value: 0x7f0d0109 - public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131558665; + // aapt resource value: 0x7f0e0109 + public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131624201; - // aapt resource value: 0x7f0d010a - public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131558666; + // aapt resource value: 0x7f0e010a + public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131624202; - // aapt resource value: 0x7f0d010b - public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131558667; + // aapt resource value: 0x7f0e010b + public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131624203; - // aapt resource value: 0x7f0d010c - public const int TextAppearance_AppCompat_Widget_Switch = 2131558668; + // aapt resource value: 0x7f0e010c + public const int TextAppearance_AppCompat_Widget_Switch = 2131624204; - // aapt resource value: 0x7f0d010d - public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131558669; + // aapt resource value: 0x7f0e010d + public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131624205; - // aapt resource value: 0x7f0d0173 - public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131558771; + // aapt resource value: 0x7f0e0173 + public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131624307; - // aapt resource value: 0x7f0d0174 - public const int TextAppearance_Design_Counter = 2131558772; + // aapt resource value: 0x7f0e0174 + public const int TextAppearance_Design_Counter = 2131624308; - // aapt resource value: 0x7f0d0175 - public const int TextAppearance_Design_Counter_Overflow = 2131558773; + // aapt resource value: 0x7f0e0175 + public const int TextAppearance_Design_Counter_Overflow = 2131624309; - // aapt resource value: 0x7f0d0176 - public const int TextAppearance_Design_Error = 2131558774; + // aapt resource value: 0x7f0e0176 + public const int TextAppearance_Design_Error = 2131624310; - // aapt resource value: 0x7f0d0177 - public const int TextAppearance_Design_Hint = 2131558775; + // aapt resource value: 0x7f0e0177 + public const int TextAppearance_Design_Hint = 2131624311; - // aapt resource value: 0x7f0d0178 - public const int TextAppearance_Design_Snackbar_Message = 2131558776; + // aapt resource value: 0x7f0e0178 + public const int TextAppearance_Design_Snackbar_Message = 2131624312; - // aapt resource value: 0x7f0d0179 - public const int TextAppearance_Design_Tab = 2131558777; + // aapt resource value: 0x7f0e0179 + public const int TextAppearance_Design_Tab = 2131624313; - // aapt resource value: 0x7f0d0000 - public const int TextAppearance_MediaRouter_PrimaryText = 2131558400; + // aapt resource value: 0x7f0e0000 + public const int TextAppearance_MediaRouter_PrimaryText = 2131623936; - // aapt resource value: 0x7f0d0001 - public const int TextAppearance_MediaRouter_SecondaryText = 2131558401; + // aapt resource value: 0x7f0e0001 + public const int TextAppearance_MediaRouter_SecondaryText = 2131623937; - // aapt resource value: 0x7f0d0002 - public const int TextAppearance_MediaRouter_Title = 2131558402; + // aapt resource value: 0x7f0e0002 + public const int TextAppearance_MediaRouter_Title = 2131623938; - // aapt resource value: 0x7f0d003b - public const int TextAppearance_StatusBar_EventContent = 2131558459; + // aapt resource value: 0x7f0e003b + public const int TextAppearance_StatusBar_EventContent = 2131623995; - // aapt resource value: 0x7f0d003c - public const int TextAppearance_StatusBar_EventContent_Info = 2131558460; + // aapt resource value: 0x7f0e003c + public const int TextAppearance_StatusBar_EventContent_Info = 2131623996; - // aapt resource value: 0x7f0d003d - public const int TextAppearance_StatusBar_EventContent_Line2 = 2131558461; + // aapt resource value: 0x7f0e003d + public const int TextAppearance_StatusBar_EventContent_Line2 = 2131623997; - // aapt resource value: 0x7f0d003e - public const int TextAppearance_StatusBar_EventContent_Time = 2131558462; + // aapt resource value: 0x7f0e003e + public const int TextAppearance_StatusBar_EventContent_Time = 2131623998; - // aapt resource value: 0x7f0d003f - public const int TextAppearance_StatusBar_EventContent_Title = 2131558463; + // aapt resource value: 0x7f0e003f + public const int TextAppearance_StatusBar_EventContent_Title = 2131623999; - // aapt resource value: 0x7f0d010e - public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131558670; + // aapt resource value: 0x7f0e010e + public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131624206; - // aapt resource value: 0x7f0d010f - public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131558671; + // aapt resource value: 0x7f0e010f + public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131624207; - // aapt resource value: 0x7f0d0110 - public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131558672; + // aapt resource value: 0x7f0e0110 + public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131624208; - // aapt resource value: 0x7f0d0111 - public const int Theme_AppCompat = 2131558673; + // aapt resource value: 0x7f0e0111 + public const int Theme_AppCompat = 2131624209; - // aapt resource value: 0x7f0d0112 - public const int Theme_AppCompat_CompactMenu = 2131558674; + // aapt resource value: 0x7f0e0112 + public const int Theme_AppCompat_CompactMenu = 2131624210; - // aapt resource value: 0x7f0d0013 - public const int Theme_AppCompat_DayNight = 2131558419; + // aapt resource value: 0x7f0e0013 + public const int Theme_AppCompat_DayNight = 2131623955; - // aapt resource value: 0x7f0d0014 - public const int Theme_AppCompat_DayNight_DarkActionBar = 2131558420; + // aapt resource value: 0x7f0e0014 + public const int Theme_AppCompat_DayNight_DarkActionBar = 2131623956; - // aapt resource value: 0x7f0d0015 - public const int Theme_AppCompat_DayNight_Dialog = 2131558421; + // aapt resource value: 0x7f0e0015 + public const int Theme_AppCompat_DayNight_Dialog = 2131623957; - // aapt resource value: 0x7f0d0016 - public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131558422; + // aapt resource value: 0x7f0e0016 + public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131623958; - // aapt resource value: 0x7f0d0017 - public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131558423; + // aapt resource value: 0x7f0e0017 + public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131623959; - // aapt resource value: 0x7f0d0018 - public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131558424; + // aapt resource value: 0x7f0e0018 + public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131623960; - // aapt resource value: 0x7f0d0019 - public const int Theme_AppCompat_DayNight_NoActionBar = 2131558425; + // aapt resource value: 0x7f0e0019 + public const int Theme_AppCompat_DayNight_NoActionBar = 2131623961; - // aapt resource value: 0x7f0d0113 - public const int Theme_AppCompat_Dialog = 2131558675; + // aapt resource value: 0x7f0e0113 + public const int Theme_AppCompat_Dialog = 2131624211; - // aapt resource value: 0x7f0d0114 - public const int Theme_AppCompat_Dialog_Alert = 2131558676; + // aapt resource value: 0x7f0e0114 + public const int Theme_AppCompat_Dialog_Alert = 2131624212; - // aapt resource value: 0x7f0d0115 - public const int Theme_AppCompat_Dialog_MinWidth = 2131558677; + // aapt resource value: 0x7f0e0115 + public const int Theme_AppCompat_Dialog_MinWidth = 2131624213; - // aapt resource value: 0x7f0d0116 - public const int Theme_AppCompat_DialogWhenLarge = 2131558678; + // aapt resource value: 0x7f0e0116 + public const int Theme_AppCompat_DialogWhenLarge = 2131624214; - // aapt resource value: 0x7f0d0117 - public const int Theme_AppCompat_Light = 2131558679; + // aapt resource value: 0x7f0e0117 + public const int Theme_AppCompat_Light = 2131624215; - // aapt resource value: 0x7f0d0118 - public const int Theme_AppCompat_Light_DarkActionBar = 2131558680; + // aapt resource value: 0x7f0e0118 + public const int Theme_AppCompat_Light_DarkActionBar = 2131624216; - // aapt resource value: 0x7f0d0119 - public const int Theme_AppCompat_Light_Dialog = 2131558681; + // aapt resource value: 0x7f0e0119 + public const int Theme_AppCompat_Light_Dialog = 2131624217; - // aapt resource value: 0x7f0d011a - public const int Theme_AppCompat_Light_Dialog_Alert = 2131558682; + // aapt resource value: 0x7f0e011a + public const int Theme_AppCompat_Light_Dialog_Alert = 2131624218; - // aapt resource value: 0x7f0d011b - public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131558683; + // aapt resource value: 0x7f0e011b + public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131624219; - // aapt resource value: 0x7f0d011c - public const int Theme_AppCompat_Light_DialogWhenLarge = 2131558684; + // aapt resource value: 0x7f0e011c + public const int Theme_AppCompat_Light_DialogWhenLarge = 2131624220; - // aapt resource value: 0x7f0d011d - public const int Theme_AppCompat_Light_NoActionBar = 2131558685; + // aapt resource value: 0x7f0e011d + public const int Theme_AppCompat_Light_NoActionBar = 2131624221; - // aapt resource value: 0x7f0d011e - public const int Theme_AppCompat_NoActionBar = 2131558686; + // aapt resource value: 0x7f0e011e + public const int Theme_AppCompat_NoActionBar = 2131624222; - // aapt resource value: 0x7f0d017a - public const int Theme_Design = 2131558778; + // aapt resource value: 0x7f0e017a + public const int Theme_Design = 2131624314; - // aapt resource value: 0x7f0d017b - public const int Theme_Design_BottomSheetDialog = 2131558779; + // aapt resource value: 0x7f0e017b + public const int Theme_Design_BottomSheetDialog = 2131624315; - // aapt resource value: 0x7f0d017c - public const int Theme_Design_Light = 2131558780; + // aapt resource value: 0x7f0e017c + public const int Theme_Design_Light = 2131624316; - // aapt resource value: 0x7f0d017d - public const int Theme_Design_Light_BottomSheetDialog = 2131558781; + // aapt resource value: 0x7f0e017d + public const int Theme_Design_Light_BottomSheetDialog = 2131624317; - // aapt resource value: 0x7f0d017e - public const int Theme_Design_Light_NoActionBar = 2131558782; + // aapt resource value: 0x7f0e017e + public const int Theme_Design_Light_NoActionBar = 2131624318; - // aapt resource value: 0x7f0d017f - public const int Theme_Design_NoActionBar = 2131558783; + // aapt resource value: 0x7f0e017f + public const int Theme_Design_NoActionBar = 2131624319; - // aapt resource value: 0x7f0d0003 - public const int Theme_MediaRouter = 2131558403; + // aapt resource value: 0x7f0e0003 + public const int Theme_MediaRouter = 2131623939; - // aapt resource value: 0x7f0d0004 - public const int Theme_MediaRouter_Light = 2131558404; + // aapt resource value: 0x7f0e0004 + public const int Theme_MediaRouter_Light = 2131623940; - // aapt resource value: 0x7f0d0005 - public const int Theme_MediaRouter_Light_DarkControlPanel = 2131558405; + // aapt resource value: 0x7f0e0005 + public const int Theme_MediaRouter_Light_DarkControlPanel = 2131623941; - // aapt resource value: 0x7f0d0006 - public const int Theme_MediaRouter_LightControlPanel = 2131558406; + // aapt resource value: 0x7f0e0006 + public const int Theme_MediaRouter_LightControlPanel = 2131623942; - // aapt resource value: 0x7f0d011f - public const int ThemeOverlay_AppCompat = 2131558687; + // aapt resource value: 0x7f0e011f + public const int ThemeOverlay_AppCompat = 2131624223; - // aapt resource value: 0x7f0d0120 - public const int ThemeOverlay_AppCompat_ActionBar = 2131558688; + // aapt resource value: 0x7f0e0120 + public const int ThemeOverlay_AppCompat_ActionBar = 2131624224; - // aapt resource value: 0x7f0d0121 - public const int ThemeOverlay_AppCompat_Dark = 2131558689; + // aapt resource value: 0x7f0e0121 + public const int ThemeOverlay_AppCompat_Dark = 2131624225; - // aapt resource value: 0x7f0d0122 - public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131558690; + // aapt resource value: 0x7f0e0122 + public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131624226; - // aapt resource value: 0x7f0d0123 - public const int ThemeOverlay_AppCompat_Dialog = 2131558691; + // aapt resource value: 0x7f0e0123 + public const int ThemeOverlay_AppCompat_Dialog = 2131624227; - // aapt resource value: 0x7f0d0124 - public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131558692; + // aapt resource value: 0x7f0e0124 + public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131624228; - // aapt resource value: 0x7f0d0125 - public const int ThemeOverlay_AppCompat_Light = 2131558693; + // aapt resource value: 0x7f0e0125 + public const int ThemeOverlay_AppCompat_Light = 2131624229; - // aapt resource value: 0x7f0d0007 - public const int ThemeOverlay_MediaRouter_Dark = 2131558407; + // aapt resource value: 0x7f0e0007 + public const int ThemeOverlay_MediaRouter_Dark = 2131623943; - // aapt resource value: 0x7f0d0008 - public const int ThemeOverlay_MediaRouter_Light = 2131558408; + // aapt resource value: 0x7f0e0008 + public const int ThemeOverlay_MediaRouter_Light = 2131623944; - // aapt resource value: 0x7f0d0126 - public const int Widget_AppCompat_ActionBar = 2131558694; + // aapt resource value: 0x7f0e0126 + public const int Widget_AppCompat_ActionBar = 2131624230; - // aapt resource value: 0x7f0d0127 - public const int Widget_AppCompat_ActionBar_Solid = 2131558695; + // aapt resource value: 0x7f0e0127 + public const int Widget_AppCompat_ActionBar_Solid = 2131624231; - // aapt resource value: 0x7f0d0128 - public const int Widget_AppCompat_ActionBar_TabBar = 2131558696; + // aapt resource value: 0x7f0e0128 + public const int Widget_AppCompat_ActionBar_TabBar = 2131624232; - // aapt resource value: 0x7f0d0129 - public const int Widget_AppCompat_ActionBar_TabText = 2131558697; + // aapt resource value: 0x7f0e0129 + public const int Widget_AppCompat_ActionBar_TabText = 2131624233; - // aapt resource value: 0x7f0d012a - public const int Widget_AppCompat_ActionBar_TabView = 2131558698; + // aapt resource value: 0x7f0e012a + public const int Widget_AppCompat_ActionBar_TabView = 2131624234; - // aapt resource value: 0x7f0d012b - public const int Widget_AppCompat_ActionButton = 2131558699; + // aapt resource value: 0x7f0e012b + public const int Widget_AppCompat_ActionButton = 2131624235; - // aapt resource value: 0x7f0d012c - public const int Widget_AppCompat_ActionButton_CloseMode = 2131558700; + // aapt resource value: 0x7f0e012c + public const int Widget_AppCompat_ActionButton_CloseMode = 2131624236; - // aapt resource value: 0x7f0d012d - public const int Widget_AppCompat_ActionButton_Overflow = 2131558701; + // aapt resource value: 0x7f0e012d + public const int Widget_AppCompat_ActionButton_Overflow = 2131624237; - // aapt resource value: 0x7f0d012e - public const int Widget_AppCompat_ActionMode = 2131558702; + // aapt resource value: 0x7f0e012e + public const int Widget_AppCompat_ActionMode = 2131624238; - // aapt resource value: 0x7f0d012f - public const int Widget_AppCompat_ActivityChooserView = 2131558703; + // aapt resource value: 0x7f0e012f + public const int Widget_AppCompat_ActivityChooserView = 2131624239; - // aapt resource value: 0x7f0d0130 - public const int Widget_AppCompat_AutoCompleteTextView = 2131558704; + // aapt resource value: 0x7f0e0130 + public const int Widget_AppCompat_AutoCompleteTextView = 2131624240; - // aapt resource value: 0x7f0d0131 - public const int Widget_AppCompat_Button = 2131558705; + // aapt resource value: 0x7f0e0131 + public const int Widget_AppCompat_Button = 2131624241; - // aapt resource value: 0x7f0d0132 - public const int Widget_AppCompat_Button_Borderless = 2131558706; + // aapt resource value: 0x7f0e0132 + public const int Widget_AppCompat_Button_Borderless = 2131624242; - // aapt resource value: 0x7f0d0133 - public const int Widget_AppCompat_Button_Borderless_Colored = 2131558707; + // aapt resource value: 0x7f0e0133 + public const int Widget_AppCompat_Button_Borderless_Colored = 2131624243; - // aapt resource value: 0x7f0d0134 - public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131558708; + // aapt resource value: 0x7f0e0134 + public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131624244; - // aapt resource value: 0x7f0d0135 - public const int Widget_AppCompat_Button_Colored = 2131558709; + // aapt resource value: 0x7f0e0135 + public const int Widget_AppCompat_Button_Colored = 2131624245; - // aapt resource value: 0x7f0d0136 - public const int Widget_AppCompat_Button_Small = 2131558710; + // aapt resource value: 0x7f0e0136 + public const int Widget_AppCompat_Button_Small = 2131624246; - // aapt resource value: 0x7f0d0137 - public const int Widget_AppCompat_ButtonBar = 2131558711; + // aapt resource value: 0x7f0e0137 + public const int Widget_AppCompat_ButtonBar = 2131624247; - // aapt resource value: 0x7f0d0138 - public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131558712; + // aapt resource value: 0x7f0e0138 + public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131624248; - // aapt resource value: 0x7f0d0139 - public const int Widget_AppCompat_CompoundButton_CheckBox = 2131558713; + // aapt resource value: 0x7f0e0139 + public const int Widget_AppCompat_CompoundButton_CheckBox = 2131624249; - // aapt resource value: 0x7f0d013a - public const int Widget_AppCompat_CompoundButton_RadioButton = 2131558714; + // aapt resource value: 0x7f0e013a + public const int Widget_AppCompat_CompoundButton_RadioButton = 2131624250; - // aapt resource value: 0x7f0d013b - public const int Widget_AppCompat_CompoundButton_Switch = 2131558715; + // aapt resource value: 0x7f0e013b + public const int Widget_AppCompat_CompoundButton_Switch = 2131624251; - // aapt resource value: 0x7f0d013c - public const int Widget_AppCompat_DrawerArrowToggle = 2131558716; + // aapt resource value: 0x7f0e013c + public const int Widget_AppCompat_DrawerArrowToggle = 2131624252; - // aapt resource value: 0x7f0d013d - public const int Widget_AppCompat_DropDownItem_Spinner = 2131558717; + // aapt resource value: 0x7f0e013d + public const int Widget_AppCompat_DropDownItem_Spinner = 2131624253; - // aapt resource value: 0x7f0d013e - public const int Widget_AppCompat_EditText = 2131558718; + // aapt resource value: 0x7f0e013e + public const int Widget_AppCompat_EditText = 2131624254; - // aapt resource value: 0x7f0d013f - public const int Widget_AppCompat_ImageButton = 2131558719; + // aapt resource value: 0x7f0e013f + public const int Widget_AppCompat_ImageButton = 2131624255; - // aapt resource value: 0x7f0d0140 - public const int Widget_AppCompat_Light_ActionBar = 2131558720; + // aapt resource value: 0x7f0e0140 + public const int Widget_AppCompat_Light_ActionBar = 2131624256; - // aapt resource value: 0x7f0d0141 - public const int Widget_AppCompat_Light_ActionBar_Solid = 2131558721; + // aapt resource value: 0x7f0e0141 + public const int Widget_AppCompat_Light_ActionBar_Solid = 2131624257; - // aapt resource value: 0x7f0d0142 - public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131558722; + // aapt resource value: 0x7f0e0142 + public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131624258; - // aapt resource value: 0x7f0d0143 - public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131558723; + // aapt resource value: 0x7f0e0143 + public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131624259; - // aapt resource value: 0x7f0d0144 - public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131558724; + // aapt resource value: 0x7f0e0144 + public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131624260; - // aapt resource value: 0x7f0d0145 - public const int Widget_AppCompat_Light_ActionBar_TabText = 2131558725; + // aapt resource value: 0x7f0e0145 + public const int Widget_AppCompat_Light_ActionBar_TabText = 2131624261; - // aapt resource value: 0x7f0d0146 - public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131558726; + // aapt resource value: 0x7f0e0146 + public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131624262; - // aapt resource value: 0x7f0d0147 - public const int Widget_AppCompat_Light_ActionBar_TabView = 2131558727; + // aapt resource value: 0x7f0e0147 + public const int Widget_AppCompat_Light_ActionBar_TabView = 2131624263; - // aapt resource value: 0x7f0d0148 - public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131558728; + // aapt resource value: 0x7f0e0148 + public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131624264; - // aapt resource value: 0x7f0d0149 - public const int Widget_AppCompat_Light_ActionButton = 2131558729; + // aapt resource value: 0x7f0e0149 + public const int Widget_AppCompat_Light_ActionButton = 2131624265; - // aapt resource value: 0x7f0d014a - public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131558730; + // aapt resource value: 0x7f0e014a + public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131624266; - // aapt resource value: 0x7f0d014b - public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131558731; + // aapt resource value: 0x7f0e014b + public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131624267; - // aapt resource value: 0x7f0d014c - public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131558732; + // aapt resource value: 0x7f0e014c + public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131624268; - // aapt resource value: 0x7f0d014d - public const int Widget_AppCompat_Light_ActivityChooserView = 2131558733; + // aapt resource value: 0x7f0e014d + public const int Widget_AppCompat_Light_ActivityChooserView = 2131624269; - // aapt resource value: 0x7f0d014e - public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131558734; + // aapt resource value: 0x7f0e014e + public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131624270; - // aapt resource value: 0x7f0d014f - public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131558735; + // aapt resource value: 0x7f0e014f + public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131624271; - // aapt resource value: 0x7f0d0150 - public const int Widget_AppCompat_Light_ListPopupWindow = 2131558736; + // aapt resource value: 0x7f0e0150 + public const int Widget_AppCompat_Light_ListPopupWindow = 2131624272; - // aapt resource value: 0x7f0d0151 - public const int Widget_AppCompat_Light_ListView_DropDown = 2131558737; + // aapt resource value: 0x7f0e0151 + public const int Widget_AppCompat_Light_ListView_DropDown = 2131624273; - // aapt resource value: 0x7f0d0152 - public const int Widget_AppCompat_Light_PopupMenu = 2131558738; + // aapt resource value: 0x7f0e0152 + public const int Widget_AppCompat_Light_PopupMenu = 2131624274; - // aapt resource value: 0x7f0d0153 - public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131558739; + // aapt resource value: 0x7f0e0153 + public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131624275; - // aapt resource value: 0x7f0d0154 - public const int Widget_AppCompat_Light_SearchView = 2131558740; + // aapt resource value: 0x7f0e0154 + public const int Widget_AppCompat_Light_SearchView = 2131624276; - // aapt resource value: 0x7f0d0155 - public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131558741; + // aapt resource value: 0x7f0e0155 + public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131624277; - // aapt resource value: 0x7f0d0156 - public const int Widget_AppCompat_ListMenuView = 2131558742; + // aapt resource value: 0x7f0e0156 + public const int Widget_AppCompat_ListMenuView = 2131624278; - // aapt resource value: 0x7f0d0157 - public const int Widget_AppCompat_ListPopupWindow = 2131558743; + // aapt resource value: 0x7f0e0157 + public const int Widget_AppCompat_ListPopupWindow = 2131624279; - // aapt resource value: 0x7f0d0158 - public const int Widget_AppCompat_ListView = 2131558744; + // aapt resource value: 0x7f0e0158 + public const int Widget_AppCompat_ListView = 2131624280; - // aapt resource value: 0x7f0d0159 - public const int Widget_AppCompat_ListView_DropDown = 2131558745; + // aapt resource value: 0x7f0e0159 + public const int Widget_AppCompat_ListView_DropDown = 2131624281; - // aapt resource value: 0x7f0d015a - public const int Widget_AppCompat_ListView_Menu = 2131558746; + // aapt resource value: 0x7f0e015a + public const int Widget_AppCompat_ListView_Menu = 2131624282; - // aapt resource value: 0x7f0d009f - public const int Widget_AppCompat_NotificationActionContainer = 2131558559; + // aapt resource value: 0x7f0e009f + public const int Widget_AppCompat_NotificationActionContainer = 2131624095; - // aapt resource value: 0x7f0d00a0 - public const int Widget_AppCompat_NotificationActionText = 2131558560; + // aapt resource value: 0x7f0e00a0 + public const int Widget_AppCompat_NotificationActionText = 2131624096; - // aapt resource value: 0x7f0d015b - public const int Widget_AppCompat_PopupMenu = 2131558747; + // aapt resource value: 0x7f0e015b + public const int Widget_AppCompat_PopupMenu = 2131624283; - // aapt resource value: 0x7f0d015c - public const int Widget_AppCompat_PopupMenu_Overflow = 2131558748; + // aapt resource value: 0x7f0e015c + public const int Widget_AppCompat_PopupMenu_Overflow = 2131624284; - // aapt resource value: 0x7f0d015d - public const int Widget_AppCompat_PopupWindow = 2131558749; + // aapt resource value: 0x7f0e015d + public const int Widget_AppCompat_PopupWindow = 2131624285; - // aapt resource value: 0x7f0d015e - public const int Widget_AppCompat_ProgressBar = 2131558750; + // aapt resource value: 0x7f0e015e + public const int Widget_AppCompat_ProgressBar = 2131624286; - // aapt resource value: 0x7f0d015f - public const int Widget_AppCompat_ProgressBar_Horizontal = 2131558751; + // aapt resource value: 0x7f0e015f + public const int Widget_AppCompat_ProgressBar_Horizontal = 2131624287; - // aapt resource value: 0x7f0d0160 - public const int Widget_AppCompat_RatingBar = 2131558752; + // aapt resource value: 0x7f0e0160 + public const int Widget_AppCompat_RatingBar = 2131624288; - // aapt resource value: 0x7f0d0161 - public const int Widget_AppCompat_RatingBar_Indicator = 2131558753; + // aapt resource value: 0x7f0e0161 + public const int Widget_AppCompat_RatingBar_Indicator = 2131624289; - // aapt resource value: 0x7f0d0162 - public const int Widget_AppCompat_RatingBar_Small = 2131558754; + // aapt resource value: 0x7f0e0162 + public const int Widget_AppCompat_RatingBar_Small = 2131624290; - // aapt resource value: 0x7f0d0163 - public const int Widget_AppCompat_SearchView = 2131558755; + // aapt resource value: 0x7f0e0163 + public const int Widget_AppCompat_SearchView = 2131624291; - // aapt resource value: 0x7f0d0164 - public const int Widget_AppCompat_SearchView_ActionBar = 2131558756; + // aapt resource value: 0x7f0e0164 + public const int Widget_AppCompat_SearchView_ActionBar = 2131624292; - // aapt resource value: 0x7f0d0165 - public const int Widget_AppCompat_SeekBar = 2131558757; + // aapt resource value: 0x7f0e0165 + public const int Widget_AppCompat_SeekBar = 2131624293; - // aapt resource value: 0x7f0d0166 - public const int Widget_AppCompat_SeekBar_Discrete = 2131558758; + // aapt resource value: 0x7f0e0166 + public const int Widget_AppCompat_SeekBar_Discrete = 2131624294; - // aapt resource value: 0x7f0d0167 - public const int Widget_AppCompat_Spinner = 2131558759; + // aapt resource value: 0x7f0e0167 + public const int Widget_AppCompat_Spinner = 2131624295; - // aapt resource value: 0x7f0d0168 - public const int Widget_AppCompat_Spinner_DropDown = 2131558760; + // aapt resource value: 0x7f0e0168 + public const int Widget_AppCompat_Spinner_DropDown = 2131624296; - // aapt resource value: 0x7f0d0169 - public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131558761; + // aapt resource value: 0x7f0e0169 + public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131624297; - // aapt resource value: 0x7f0d016a - public const int Widget_AppCompat_Spinner_Underlined = 2131558762; + // aapt resource value: 0x7f0e016a + public const int Widget_AppCompat_Spinner_Underlined = 2131624298; - // aapt resource value: 0x7f0d016b - public const int Widget_AppCompat_TextView_SpinnerItem = 2131558763; + // aapt resource value: 0x7f0e016b + public const int Widget_AppCompat_TextView_SpinnerItem = 2131624299; - // aapt resource value: 0x7f0d016c - public const int Widget_AppCompat_Toolbar = 2131558764; + // aapt resource value: 0x7f0e016c + public const int Widget_AppCompat_Toolbar = 2131624300; - // aapt resource value: 0x7f0d016d - public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131558765; + // aapt resource value: 0x7f0e016d + public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131624301; - // aapt resource value: 0x7f0d016f - public const int Widget_Design_AppBarLayout = 2131558767; + // aapt resource value: 0x7f0e016f + public const int Widget_Design_AppBarLayout = 2131624303; - // aapt resource value: 0x7f0d0180 - public const int Widget_Design_BottomNavigationView = 2131558784; + // aapt resource value: 0x7f0e0180 + public const int Widget_Design_BottomNavigationView = 2131624320; - // aapt resource value: 0x7f0d0181 - public const int Widget_Design_BottomSheet_Modal = 2131558785; + // aapt resource value: 0x7f0e0181 + public const int Widget_Design_BottomSheet_Modal = 2131624321; - // aapt resource value: 0x7f0d0182 - public const int Widget_Design_CollapsingToolbar = 2131558786; + // aapt resource value: 0x7f0e0182 + public const int Widget_Design_CollapsingToolbar = 2131624322; - // aapt resource value: 0x7f0d0183 - public const int Widget_Design_CoordinatorLayout = 2131558787; + // aapt resource value: 0x7f0e0183 + public const int Widget_Design_CoordinatorLayout = 2131624323; - // aapt resource value: 0x7f0d0184 - public const int Widget_Design_FloatingActionButton = 2131558788; + // aapt resource value: 0x7f0e0184 + public const int Widget_Design_FloatingActionButton = 2131624324; - // aapt resource value: 0x7f0d0185 - public const int Widget_Design_NavigationView = 2131558789; + // aapt resource value: 0x7f0e0185 + public const int Widget_Design_NavigationView = 2131624325; - // aapt resource value: 0x7f0d0186 - public const int Widget_Design_ScrimInsetsFrameLayout = 2131558790; + // aapt resource value: 0x7f0e0186 + public const int Widget_Design_ScrimInsetsFrameLayout = 2131624326; - // aapt resource value: 0x7f0d0187 - public const int Widget_Design_Snackbar = 2131558791; + // aapt resource value: 0x7f0e0187 + public const int Widget_Design_Snackbar = 2131624327; - // aapt resource value: 0x7f0d016e - public const int Widget_Design_TabLayout = 2131558766; + // aapt resource value: 0x7f0e016e + public const int Widget_Design_TabLayout = 2131624302; - // aapt resource value: 0x7f0d0188 - public const int Widget_Design_TextInputLayout = 2131558792; + // aapt resource value: 0x7f0e0188 + public const int Widget_Design_TextInputLayout = 2131624328; - // aapt resource value: 0x7f0d0009 - public const int Widget_MediaRouter_Light_MediaRouteButton = 2131558409; + // aapt resource value: 0x7f0e0009 + public const int Widget_MediaRouter_Light_MediaRouteButton = 2131623945; - // aapt resource value: 0x7f0d000a - public const int Widget_MediaRouter_MediaRouteButton = 2131558410; + // aapt resource value: 0x7f0e000a + public const int Widget_MediaRouter_MediaRouteButton = 2131623946; static Style() { @@ -8220,14 +8245,14 @@ namespace Bit.Android public partial class Xml { - // aapt resource value: 0x7f070000 - public const int accessibilityservice = 2131165184; + // aapt resource value: 0x7f080000 + public const int accessibilityservice = 2131230720; - // aapt resource value: 0x7f070001 - public const int autofillservice = 2131165185; + // aapt resource value: 0x7f080001 + public const int autofillservice = 2131230721; - // aapt resource value: 0x7f070002 - public const int filepaths = 2131165186; + // aapt resource value: 0x7f080002 + public const int filepaths = 2131230722; static Xml() { diff --git a/src/Android/Resources/drawable-hdpi/icon.png b/src/Android/Resources/drawable-hdpi/icon.png index 1922163bc40ba480e7841cc92868d21b8bb106f6..8b4107e4ad21111ab69e9776fbe7e44459eff66a 100644 GIT binary patch delta 1265 zcmVh()l1W5CRCr$PoY_wkK^(^$-+cCOF)^vP(Rf6S@xiD~ zjBh6L$1Vc%u8_qxZ53?6IiOWF`o=qLH3nKB+jeiKFd|~)Yz$fMcvM+5} zQSg9mzVw{sOaN9DmP_kE!rl19BvAeX3wGYDVFN?MY@%dnc!ce}Qzxy99dP6G@4xMO zh8*ea6T6-`>FOV3vku7XV+Gux50ZXq$KV8NJ!3Qf@PA!tee5uT2#g>CBZ%O?6IAvg z!b0y_mFXK85?e~oq!6?~p%Pibk()!dPpr_59Z-Kn!~J<;9)Hus?W4u2Xb2?B-X^t{i1S;B2M-&f1M24D0o6U81BsSE|%H=LDVv zEj&`jS~WlM>QvC8qh+k-TU3;i2Q3RNT~^*Ho&@oVecsA-axcZ(K5xW=h$)HA!b6SU=ORs52H%B!X* zn|H{0UuK6EL0}>86Y5$z#38CjCTI?y!(c!d#uX=##`bQ{{mxjl2?98<_mNIGRJX@h^0qhJWy3|DN<%ypjX`aPF~mU%D9=L4N?Z z8%{lH@bso4-W)vtB+TY(n&UWO+yo_9f3}iUefcS>>^vCiH=chY-DW0%pntMx39ge` z9Nctk@9t;2Z@+Q50z-O1`A62-KPYtk4emAJ-Z$ z?&}otNg-NPTUUSlvSQf@eU}T$;A*vS{=qCPU`@a*O<~RG(iDhU+$5bpi<=;3d7NbY zsmtRaV)d!o)E{RdwbS=ltU@&^DSKNIT8^chM9{QEpA<>mz$7MuI;Wjhc0mu$3ugH; bfj-}FuJde!w3F%!00000NkvXXu0mjfSM*zj delta 1714 zcmV;j22J^u3epXbG=CX%MObuGZ)S9NVRB^vL1b@YWgtmyVP|DhWnpA_ami&o000JL zNklXN4ekFHdZF4Ac*(=cEG4Mirn;0ThdMuIZLD7NAhn7pR~BOJg}oZqvLgm9LlcZ6jD@I!64v(BwHCa5|lwQ&yoiq0H9bDFd7y$>L7UAEa zs?%x%+pq%!UUE%rL@h>rc0Hgwq<#Z=O}I&bP0LasHGe)5Bb?4}0oAqjK;CyJ;c~xC z^d^aRr#nDtQqLZ=JK(X@c*shO_WPic8W#yU840kXxE?}{g4EMyx(m|NC>i;^Ka#5i>U z*|B{1`F~U^bXW&LFFhrTF-G7xcs4s}Y6Bu9!3G{e?1ET?$^|5|VrDUj0b+m{AO?s5 zVt^PRW(*Jm!~iis3=jjv05L$!7$63S0djA&+N$#>K>l<$p6&}81s;rg-s9)m0zx`{ zwqd^kM2q$jCc)z^=AJ>jwt(pFK}*ko-vAmK9)E$Xq-gXa_kWJL%L<%MLqGw_r)$cPveM7^r=I)!} z_J8T&9)t72)2(38^Wz?4+<+)hQw%y#+3YhoOKzPGPh}>0Jm$xm7HGl%t><*w10tjQ z=!GXO;yl+HPR7hAc=wTc9;X)lc>Bu!5k1{!l{9$~x$#Gb8$hf5X1xe!;j9~A`-*h0 z+W>bSJ1eI5iFl79twu0jWO02v>^)&tIe#EK;XFD&4z@m#=5^oUFLkYuUwJ{1eUysy zVnOJ}JC8O(skuuPICjT~xYv30!dbBK;dx%C4Q>0~a`3e1-Ae3+Q3Mdh0jg%-EUbpc z4&~y}s4Lz?1{q+>AYuYH&=-tV$*fMFG);(XZFqJpdaJQb|*%tn=v+2da#p z$xebjPiDgMlo?~5Q`^!F>kv+Tdw(wmWnS_4r}!SlQCF4Sjb5-JzY<=#|28r6NHL?H zgAa1jAu&2c((#8H+F^6iDICit!cn8tP;C<@b^P>1(B`6A?EHJ-g?nd@nRZRsaZ7vun5w&6X{Rc$<$oBb)TSK*Yav;+J6x!o5LZ-n5!j% z51(lK9(Bf37TXTaH>7B81d65+iRXNFTas>|<#|ir zI!6uA4QAQ-wWoR7*v?Hq3})`VJvdLMNk zDg$*BIN$Rz*^EjrD=X@Pt0+E#svEN$VQ<0nakDzv?Oy=~09YyyOX>cSe*gdg07*qo IM6N<$g6?ZANB{r; diff --git a/src/Android/Resources/drawable-xhdpi/icon.png b/src/Android/Resources/drawable-xhdpi/icon.png index 59230c30f70007f1cfe5fd112967a8fb3b9a49f2..fcd1018f5ec1cc552a5b5922ee2cd83aad36774b 100644 GIT binary patch literal 1721 zcmcIl`CHNl9R5P6;I+&=H;ruBmJ=&QT;8T3rD$qocwvU7gc^`yYH4bzV6&!9^T5bs zOAl!&vZtZeRjue-DAEZ#2v(&~NM^@fak4L?@oLnQqB*%I|{nY~0)S8`j^N%ssZ$kh@QFjIFi%%>tia z=n~ZlqUU+EpA#C(8+JjJ7sGUmqU>osNY9u*Wzd?_qEe{U0M792QVGC8@qsVy7(@cy6k0uC;RRiLpf8@RRN)Lp;&b0d1J?Z3sLc$oaoVjy;IKx~(j%G5}+nHyBbXx<3pqx7jjHEg1SBqNJ1^^kOM1Ej=e`#~-!%z!pAddvrf>-a>Q`ojO!x zk7D*(PAxC7?1z?!60`Xg?yJC$3nwJVCW+;|uaYcjOieh4dLZm)djRpNbUba~GEF^A zEnd@SPSOa|gU1F=))1lvPF+eT)Xa&vK@x8>2gGd2b$;CW0Sw#jEi zb|?b}>PGe&M6`lWb&(_Gj4#|t8~;)%6^^)?1HRK_?e-?eVTdwz>V}(3~f5viFtsP33Ud#dPn#vs3+|U6KL42F*qfN%? z=naau^<+_ygAP!9EuY0n`{_>K zQSG(N35xA+>SABrHKo9Pw}vBT|DYdX!agS)F29@bOn21>qXGCgc}{lt5VP{i7Ddau8oS<$UYUoC&g%_1%Hc?k|fhF4aqMJt@ol3ZaPwV z+N*VAn`Xc`PCtB(|L$lj3*OCJFz4aYNvcw`?xs0>*YrH)8pam=+ z;50|{5{E>?74#{($;5J2O#1^k1o%OIR=zI1?&B=YED9Gj1lbqY5Fi)n@{4Y-u+<~o zarQE0gO>9Cb-#Epuo<0}wRc)I;mbf~x!1d-} zKRf#v9Bo;;NgtTCCUb%=T(!4D4$e9!>XGXz1808|Ds6G*X(_X;XZL42V<3po263@AwO5)TJg#S*vTS!-Nx7Kt))-|ozgJXk6tSo-v ze%ZE9Y0^iRNNXSHCpB^u>HZ%HExX5qi$6uh43t8-flnV;XSUd&JU5D7lt6Aa|I)R* zX3U^)2a2BmWxjn2|IWotZMm|KJx$Mqe8dcCaieD!xy&~6p{xnVU&Ccub>=Kn7ezPT#qJ8I-2WE?UcIUN~10>v~T zn~{ac3}hBE71?R+i)q^z4=#WeXptL`YXsvn00beUkjsVF`N)&V?~yHXx}c@VJIF)K z_!dFlU^g-oxqnJ70X{>fAZIfBibe$Tl+a)`QUv%KxfjVXo7#n~$P<=CP+4jDpD-Ir z#wuYgDYl3*eGu%fEZ9fQjM8uquu}-X`vxr%M4za;r2Q? zl5=|(M70^B90JgFoIUl&24NNjF##Bu089V|CVv1EfPo3X1YlqSFaa2t089V|CIAzF zfeF9_U|<3;0T`G7OaKNZ026?L3BUwkU;;P}v?y1_aqcUCJD=!5i*q$96=*%wPJKq% z1fV6YeQtaJAgv7z&}zWf)ADlJ2E74HGA`g%$=QPF=G+y%eI|$w_QxJz*(6OJJz!E| z4}YMYgZVXWZrlR^=1v)F^>dF~yJX$KA)5fSak-$b4Rl?-ZfAVj`4|$Qg?SNUt-7hQ zrVf6rP@DiN>;be>rMyY+b^>(v7~z$ePzdqYTKrs5y&fLcwPR!BlqUe)5}g%sIltDe zj88`_j6=h}8$a3VXYW@w^I~zF0tM)ILx1UIP5fyo?t(77*Y(d&h0p+RtAlh(Uai#A zQXDG)-Q1&=PPkG~r~IS~sW%uQAuEt}tL26;WVvSE@m7kXe_P#z7U60o4=YO** zTX@$>yC@Ye0Pl)0OgnbFl;6jzMB~#~wR`z95E~XCYLNcnW(nV;RSu}NI79&2@LW{i z4#zXf6=i$_x*cl8)bbZbjuZ8r3pv%0QQidJ9%_f&lf$Z^KAvhgey5!8zDkL9#`=1~ zcZqW#VVXGOmp1C*$c-ZKa***IDt`c#b*a1Wxs=D(Ph1I#cA`W4`Qy}PPZW116@}7Y zUCf16%{ zDFRT?M&;eK;s)4vDc`Barxr{J>z0?JVE6)Q;RJ=6yd!N{)t8&VP#V#RoZ; zT?K*YgFkxdDTn?R#p)e~KHlZ*SP}!zg$LU7eF_|Yyj@~-Ucjvc;Dnw)p((*pB2cSW zV+g!v-W2#?!Bm^iEW;J_Eu;lmmux zZR^n8EQ<{jRZ?0+hqUDxo}YGCdB z2)m3=nfm54nY{7+Tx5Kg3cyE4=x?iaU9kCdCY(kW;4ILj(I)&&62TdvrlMTXKu~?1 z{P6z23i!ll+oC84_SZV(x7xaU;qc!@Z~;SNnnHDSlI0cx5NJh(H}-}C(W@DP$GdKmlAfi^2)x0{Y5=GWVobJ&y$wLQz=2kDSn3n{jq1YwM_W%zz-=^2#T19ZeVyqJMy5IQUn!d zwgZFQ*aJ`g{#;Zo=nOK6*-SS4jyy2f8UoT)YzbrSJm_k%`D?B&DOi;NIJW?EzJeyM@+XDrC4f1Urcjr_E+FYqu^0JF0*Q fFtYKV02TuPhE$QTZ0LH-5G&A^-T2ufQn8Hw)o|!lR@UyGOfn>PcmwTiJrNtu`#M-)#e3B znP@Q|ACBp_TeFX}KkU?{-M<-7TYtSi?BLi$;>&inCy{WgR_9JVpG`?=y?lySIc2nX z%n(x2elJ41CrTn|wAh2W!2@D{4S5Yc2}}7I|MO~!*PDE8fohyG4fQi1{PxVz;>Ve6 zkfdAF`Pph--yVa#4D?#;92b5Y)6{$2sU|>nz^<%eZA{=~S{|+WaZ#qg1D0es4GvM_H&*(Pc4-;eJu!nA@OBY(M>% zawG&GGPAQUkmBZSE%w4R>Iu#LXnVv?`Vk*McT#LB1XJ;{$t#Y0!(%)kENnbeOoHai z-p_hryc^yld~z&#*u8LL*%Qy@FE3@yZ}NRw9ZpzvZFy%Lo7T0|%5&HP#~8uGAjvwz z(S1T6oMY6ZZnd@-d$i?Cy}Fi}d;dd71=^1NT<0LOKW>h#-*}%lULW;G@!}A4Pp9v3eN>A(h* zd;=tbZAgf?QUt8k3I?800CPMPVObTBcIUby)wb9VI z6y3|p;7c$P!W)(>2R7mb4T69rBt!-RrVciOa1@>c;((-K1k4ncEW%O92{LCTsr?@< ze_-oI<~_nsW(bjm-Y^vzCC!fe?vNti|822q@Mw9~$=ddj zT%{aiza=-Wh1=#xz-#B^t*df3x{6?Cm%~}cx!VzyBS02@!@Qh4BtHINZLx4Z{bL5= z`@~nt^U4le=sd!Qhtczk-Go!KoZl0wxb(AcVAZ+2+dqg${9Y5yJFXYHdxm{-h(GL$ z+%rDDMwsfd&Zx9N;2PMw|sR0RcBb}%e^~dGa>ry>rmRjSS=mhqkeW5m;D7jo94OjN`1&wnPivEz4ZG&k$1z9N`?H|0B(zT9UEC-bX3d z>hZ%@G4!6l^c8UeNsY$NU3Ig|^UTE5c^{Y^X&-`{I8lL)fj7qPUzcMmFx;8@1MAae ztAvGmI*mJfu07*%VhdfZAd8g~X%{Vkx+fTUXl53l{X=nhC^lis3RXZ{DPUfTxd;Is z&t*&J@K9^EVr$F7Gnq<^RBTrzX{Fh5{bw}-{@`Y}zj)RoqmP6pJaO1Ib_2+_n}2T4 ze4z*t_%3~OY5m3G{=QMIOD2K?<%1)Ry;K*h0NJIk?yaJ$7F(kOp^@N!k-P+|k0&dc zaWRlu;J`P&4e>^pNkHyYb7oWGuTGAqh}KjM_wirPvzXKvJ`LbNZv^>PlY)tV?(<2R z!%--E;ly?Vf)f=^e866>z2KwzlA3piO#Q!U_t?3JKUqoZPt{6F{l zPge>9!}MU4Xa34Fw`~i|*$Q+d8=7#@bH9e7LW?H2xky5BFv`(Q$TFyaWM=2S9E_xE zx+If18W61&%-XQlt-LN`kkTNtoc{l;f%NKVTV1qdneu zVhB{EWIrs1E{c=}Z!OuA%lb1Fg_aVacH^&V-nNIvjdc`{Lyi)vm}!qORFIT40p}@! zZIZm@zhettB1!}bk4~j=mE%rM?AbT8r}7}$B#!q1Z`)?qx6SkSCNQ}c_q>-Rx!$*j znsF8(K)u-m$FtajNT0>W>!eRbcY~k0!0155%|qR9Ib{_zu~3drzuh+Lm$i|~U_D>* zTN^`z5fFTMuUNLc>OLn_@XUg<{*{TK$zQ(BHG}>honNIxe9csWiirD{Y&zr&g4pEg z(I;&Y#f68W9ts#(OsHDPEuBWXIkJECS6`;sU<9v@;AIA|e^u*l-GiZur`vD)-Y;xw zys)yQBS5-zXAJ^WD`F~dh@oi(Ue8c5ZR4f`dW!}^U5E1d=AAaWO%C$;DX0~T>s7)E ze0I~ARDt4t3ClkhIbH%IB z6bVIPP^Z}YC+-POR3Y&%!O7J*?>=SKBrWOL!Y3o|*#*B$PDDXU47<3k+8`UjDe5kv zp_0KfgbmDM9R>;z6j+#WNOyy)|TPEQhFS zenwKdj`d3KkX`|vOejMLsEx0Uh`0DBi4YtQOinlfLZ*dbaHpsxY<|McQju#{{-#)B ztN~PPC&g;(vq?Thn}+gM|Eljyis7E*%)gDJ$l8q}q+p^UmR@(UT%J-6eXmoH-%`UC zE}wTipl-=b0H_YsJ~V!33E6lZ?;6t%aD%c6wuXy!R5vQh^F2<~(MsE=s!%Z{_*7Au z-D_$WK53XdPC8B?0-s#Suqvhu)GySOouv&L>H)9f)q)XRIJxTRz-7QcbzNoif09^P jWsawdaqQnHsZ-V^oY)uH=u6pWNfTgffI+=MI>-D6grWpi delta 3270 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 diff --git a/src/Android/Resources/drawable-xxxhdpi/icon.png b/src/Android/Resources/drawable-xxxhdpi/icon.png index 8c066db9248c304e0e2e59e92fb0cc58c664613a..6fa399d2a97a5e18dbad5c6607c91e933a0e0426 100644 GIT binary patch literal 3679 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 + + + + \ No newline at end of file diff --git a/src/Android/Resources/mipmap-anydpi-v26/ic_launcher_round.xml b/src/Android/Resources/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 000000000..036d09bc5 --- /dev/null +++ b/src/Android/Resources/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/Android/Resources/mipmap-hdpi/ic_launcher.png b/src/Android/Resources/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..0beee67828fa210a59b0bcd91095a385c452f4d3 GIT binary patch literal 1266 zcmV z{=f6QH_mg8OvZu*3l=OW4}cJ*$`U3ep{L1#qf&)R_QLz^&Fugw8uJ2$x@udBwo0o| zo74)8Nkf&$Io~~Z;(>VaAJS+;rP>mq(3&g?wGkvGt@}BaxJKeBr-vq?SQyqceF&Im}tFU*hhW51^3b%(Q$aKw&RzDcLP~Kx=h-(5o;&TTAk#4rtD2 z1%<)^Z87Mi4@mcY&;ZTTnjo{{JRCcB6)MhO3%U%At?=e|b>an-_Ty>jA9BLT$jFrG zWXnzQ0@_q&gCVDDN&&TY_A)>W5Cb%}3V&_pjx!PEowx+O14I8WK&uY^HsPuIy}efG zatty+3=jjv05L!e5Cg;jF+dCu1H=F^KnxHA!~iisQv~Sq(z8JY^zr^vaJ&EBf0#9Q z+z~IJmBkHy-__s)DE-J;81}dz4VOE`3+T1HYUt@33JRc9qB2{XSNr0I%i;xuYHYm~ z6hO=Lb#UW$|2=I7hn=wD=QH94lx@7=mG+Yj2=Cw?wYP!GqwTeB2fUPH7B`?pq?@&M zIRXl3>oGf*E$;1Ht`YdQu1VbY=KoQS`64)7u7ChqQG6PD2Zp`c;YC@z`ve_;Uir#Q z#-h$i1%!h#{;sEQ(5uY=nK?6lIVb+=4tKr(!%1lG>6;WlIObrt>h=K#yVl_|S3vn? z6V@5B?Yzg6i|%?Np;ljwP(5?poJtO@@p=6t#jPF6=u#Gx*EDF%wRH(z0^m4=nZk#ycEG2GMwq{|3Ig@L)By4XwM<_R zFYYo!pudkgKy+5xs|?bAR%30xAJ1xR`$_s4w64I94BBkiDfI{H5?1Hx1Os~dlbm<{ zqg^Q(IHO*iNts7r_S@-c=vDqv{xrT1^*%uK_;cy|e#cbA14`(D-n-pvO`eT-jOM)Z ze$l|vr3ffIB0gyz8R>0_+YbY#Bp#S*5f6zOrSQy}T>GQ5pP!E&WlCk3Oi;wcJV<^< z5hXmac;&{}4|eQ}TcIt9U!Hv^E=^;gN%70ohw$9d1A0MEoVV!chx~c>LWnFX>S6Nv z7}1kNu|#o{D|XaNq%1OWI_J^vkjtlq$0US567^KXjL2CtX%>1wFX$-{uLB8@h*+>- c!GenT8?osh{;W`x0000007*qoM6N<$g0n+rng9R* literal 0 HcmV?d00001 diff --git a/src/Android/Resources/mipmap-hdpi/ic_launcher_foreground.png b/src/Android/Resources/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..bcee8cd20dcb3fbb590572f43b71e7d8fa58e57a GIT binary patch literal 941 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 KMNUMnLSTZ$up?Oj literal 0 HcmV?d00001 diff --git a/src/Android/Resources/mipmap-mdpi/ic_launcher.png b/src/Android/Resources/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..c8e0b89f8c5801ce278885a18e2bd3b15353c404 GIT binary patch literal 896 zcmV-`1AqL9P){hHE(9iBwv+mmQZZLX4E52NtC=U$Q7|@I@ z(V>b5BIX|Xzx&#={|9fqq#6d92Qrr~9++|P*8jhM|56=;%%zJ5<{Z9F6AysQ9dsVJ z{`|xLjTawd#ak~w`TzRU_rdLfxkv8c%%Cn4_x(Tj@a?DvMm;drZgCAam*Bf$SBhsN#W)<){At`uzv47Gy46 zJm5BI-~Y$&zEI==Q1aP-^95WT$UKm_bn$>~FY%okY#y-h+w*_Q{u}>){`!N`nE{zg z7Y~52`{aH9AH4ZYvIiXc_x|tNb@l(J??2&cK<0qVqg$UChI3Y){{P|Y528H)N;aU9 z=F5*?aCwk^kU4bi)Fb1Dt(Q#d>(Adjvo`UYfJ1shITa^nB37auV^fE?m53{nSDKVaiRxUlc^1OL~Y zefa;|&)-;M10)WT2dNv-fh~L(RLbP7I`jY3{n!70|AB-)hz9XN;vo3}ADJTtgNntP zO&9*}y80AM<0>X;;(;MOxT~8pS!1vc?rJ2I>*DkPY|=m_r9sB3bH|%OHNnxl=f6es z`nPhynMx23G_c^CV&X8aTDS_BjQ)c(fjw5(aIj0WE6McPq7&h}wudfVmEi9BuW!n#rn&#w z51yMUu*NJj-jv8yw$1d4Yt$;`oW4{oYomHEz_MotW+w>TPvSUHdn@-Pd&VwEXd!T#LNug}=RLcmKQ>yrH>m@g>`{nqNLV+O|w~%~5`v=u=np z^Ua=}-qJMH-!xCU&-1&{YM;+S)067_j3R!vek?m6_)>0~NTztM?X&YLO-Gl{J5nQ6 zP+9f9RCSl@ZOISkL!T#nyna5~X1mY(or@2A;7`hT=M}5337J=VSLxcmv;AVZ+aDHQ zJdp75VfT#5V$+v=zp?e>N0-|jKksh5>2&7!wENtbZ%Uil-pj}~yl=(w`|79CmuF0+ z=lN_oI^%qDP1DqKQCn`F{9p9f>RDDxK=@P1I?Z`WJDw)(_#dJZyE&)%Z|m)xpL=!p zrd>Yvsl!bEv)Z#yjRDi2K7W?0wZGt{`_FPi`%|9s`ZsvsvB$vR;Qx-nvu~O2yuj)G OAYo5eKbLh*2~7YnIU5TA literal 0 HcmV?d00001 diff --git a/src/Android/Resources/mipmap-mdpi/ic_launcher_round.png b/src/Android/Resources/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..3b4c2cbd80fe0c1fe5321c931828492d2af35e95 GIT binary patch literal 1870 zcmV-U2eJ5xP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D02y>eSaefwW^{L9 za%BK;VQFr3E^cLXAT%y8E;2FkAZe8V00zEEL_t(&L+zM*P*imk#}{i^S4k910xiRM zXsHP3y1RF=#>vz&v&OUsnvm0UDUrPgmzsS8iQXEmeN*Q?YzBf_Y4cwNoi+k(D02FJ1? zI>E+mI4Du7^`A1D!XgmZ2*NGhYVIV!(bM6*3u_HNsvqq2;VG;`JLZWwsaPpeB(AgE6`)Ge8D%T8=72=ot>pLB z1_>bb0}RJa%_6YGoz!Y(#X<3s7MLZIBsfC_uUHK!gAEHGMhR zO{R?3hJ!=1JFYVnfai;lC8;ww*_^>i3AXK@=mVN?jso;#_=@eR-09A2A3mc@I#fz? z=Hn~{$X4wtN6nmgwAY_yk_zt7ocTCQ0rJ?r)v)C@ZE9X)#&m}_&_kLtAEzlGF0a-@ zChNh;7l{T=n&%0>eGD{bKF(5rB3^6o8WY}!lP?klOqkspX5i^5V6E2BXY@y2oP3eU z!%x=Z>1v_eTKE1zJvsSk{iJY&YjF|pKI`}b-rjVi)dk36cHKqIoOqK-l<^0S)13L> zVS_Ku9$G5k^R49q|H4aER6jl=mS>+r&8&3R#3N(&q|u!De7EnsAelY1R6zRis{;Sc z$F5NQ_yjNgB?C3H(pl>g5}6L?0Q@VEJ_s2L{d&K)L6EQ|nk!%e-23N2-D6*DrD+*u zRNp3a#z8YzN1$d_I%_Wd-U|1F&8(h2sEO7tWLpJ359{oo1zG`Nz}E8X0zZ8EUuK`O^0g%7o6HiC$n!Z)w7|qc z^M9DtQX3(f!b^hW&0$%BK6S&&FQ=kX;70>G#264Bh3!K<8@qJt{gStQZ65w< zOATNKr(gT)Z7UHp_yvsLR7{Ru5uSmOipm-?dVP@~2MyWE9k-;OFZ!TXR_0Az3``%C_d9O%ZT>kZR#Il<=6iMQ>)BX;_mJ{Y~kiy3`9#{ zizz>s65VfqnM7l|oP=JVxviY)YYWU7G=KemiNt*XYGEa{-nvR8Jzg0yZ~eB`w3C@B zX{E4;Pf+hQ2a}Lb2G2>zg4}+nftAvB!vOsQ!_kSj@@gc8K8= z`gkkfeJ?aJ{T$3ji@SAeVG;|BAhI<|C~Ux_xl4yesI%Z)aZft3r@EX6v zdnO-NG>*ZsPvnW)V<-fB7e(O@uI_*v2VUcMcn^IXBw8f;5A`G_*eTZ*%m4rY07*qo IM6N<$g6a-_;{X5v literal 0 HcmV?d00001 diff --git a/src/Android/Resources/mipmap-xhdpi/ic_launcher.png b/src/Android/Resources/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..c0e0aaa3ddde7cfc8cb84acf62ff5d3816f69ed3 GIT binary patch literal 1769 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 literal 0 HcmV?d00001 diff --git a/src/Android/Resources/mipmap-xhdpi/ic_launcher_round.png b/src/Android/Resources/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..60779903c6b9599ee776e9af739bf633fd80e08f GIT binary patch literal 4460 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 literal 0 HcmV?d00001 diff --git a/src/Android/Resources/mipmap-xxhdpi/ic_launcher_foreground.png b/src/Android/Resources/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..875f522ca35a3d16166f8a8ee0cc3187191bbdf4 GIT binary patch literal 2117 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 literal 0 HcmV?d00001 diff --git a/src/Android/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png b/src/Android/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000000000000000000000000000000000..87b9570a366d230f32cad1968b1d7a5d9628045a GIT binary patch literal 3178 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 literal 0 HcmV?d00001 diff --git a/src/Android/Resources/mipmap-xxxhdpi/ic_launcher_round.png b/src/Android/Resources/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..e2dcc09901bc78bfadd051a7e98af0359a6c92c3 GIT binary patch literal 11586 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 + + #3C8DBC + \ No newline at end of file