diff --git a/src/TravelMonkey.Android/Effects/TextViewShadowEffect.cs b/src/TravelMonkey.Android/Effects/TextViewShadowEffect.cs new file mode 100644 index 0000000..aca9ebc --- /dev/null +++ b/src/TravelMonkey.Android/Effects/TextViewShadowEffect.cs @@ -0,0 +1,41 @@ +using Android.Graphics; +using Android.Widget; +using System; +using System.Linq; +using TravelMonkey.Droid.Effects; +using TravelMonkey.Effects; +using Xamarin.Forms.Platform.Android; + +[assembly: Xamarin.Forms.ExportEffect(typeof(TextViewShadowEffect), nameof(ShadowEffect))] +namespace TravelMonkey.Droid.Effects +{ + public class TextViewShadowEffect : PlatformEffect + { + protected override void OnAttached() + { + try + { + var effect = (ShadowEffect)Element.Effects.FirstOrDefault(e => e is ShadowEffect); + if (effect == null) return; + + float radius = effect.Radius; + float distanceX = effect.DistanceX; + float distanceY = effect.DistanceY; + Color color = effect.Color.ToAndroid(); + + if (Control is TextView textView) + { + textView.SetShadowLayer(radius, distanceX, distanceY, color); + } + } + catch (Exception ex) + { + Console.WriteLine("Cannot set property on attached control. Error: ", ex.Message); + } + } + + protected override void OnDetached() + { + } + } +} \ No newline at end of file diff --git a/src/TravelMonkey.Android/MainActivity.cs b/src/TravelMonkey.Android/MainActivity.cs index 8a311e7..f275c0e 100644 --- a/src/TravelMonkey.Android/MainActivity.cs +++ b/src/TravelMonkey.Android/MainActivity.cs @@ -3,10 +3,11 @@ using Android.Runtime; using Android.OS; +[assembly: Xamarin.Forms.ResolutionGroupName("TravelMonkey")] namespace TravelMonkey.Droid { [Activity(Label = "TravelMonkey", Icon = "@mipmap/ic_launcher", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] - public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity + public class MainActivity : Xamarin.Forms.Platform.Android.FormsAppCompatActivity { protected override void OnCreate(Bundle savedInstanceState) { @@ -16,11 +17,12 @@ protected override void OnCreate(Bundle savedInstanceState) base.OnCreate(savedInstanceState); Xamarin.Essentials.Platform.Init(this, savedInstanceState); - global::Xamarin.Forms.Forms.Init(this, savedInstanceState); + Xamarin.Forms.Forms.Init(this, savedInstanceState); Acr.UserDialogs.UserDialogs.Init(this); LoadApplication(new App()); } + public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Permission[] grantResults) { Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults); diff --git a/src/TravelMonkey.Android/Resources/Resource.designer.cs b/src/TravelMonkey.Android/Resources/Resource.designer.cs index 5e6cbf4..01279c3 100644 --- a/src/TravelMonkey.Android/Resources/Resource.designer.cs +++ b/src/TravelMonkey.Android/Resources/Resource.designer.cs @@ -2,6 +2,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -2800,6 +2801,19 @@ public static void UpdateIdValues() global::Plugin.Media.Resource.Styleable.GradientColor_android_tileMode = global::TravelMonkey.Droid.Resource.Styleable.GradientColor_android_tileMode; global::Plugin.Media.Resource.Styleable.GradientColor_android_type = global::TravelMonkey.Droid.Resource.Styleable.GradientColor_android_type; global::Plugin.Media.Resource.Xml.xamarin_essentials_fileprovider_file_paths = global::TravelMonkey.Droid.Resource.Xml.xamarin_essentials_fileprovider_file_paths; + global::Plugin.SharedTransitions.Resource.Animation.enter_bottom = global::TravelMonkey.Droid.Resource.Animation.enter_bottom; + global::Plugin.SharedTransitions.Resource.Animation.enter_left = global::TravelMonkey.Droid.Resource.Animation.enter_left; + global::Plugin.SharedTransitions.Resource.Animation.enter_right = global::TravelMonkey.Droid.Resource.Animation.enter_right; + global::Plugin.SharedTransitions.Resource.Animation.enter_top = global::TravelMonkey.Droid.Resource.Animation.enter_top; + global::Plugin.SharedTransitions.Resource.Animation.exit_bottom = global::TravelMonkey.Droid.Resource.Animation.exit_bottom; + global::Plugin.SharedTransitions.Resource.Animation.exit_left = global::TravelMonkey.Droid.Resource.Animation.exit_left; + global::Plugin.SharedTransitions.Resource.Animation.exit_right = global::TravelMonkey.Droid.Resource.Animation.exit_right; + global::Plugin.SharedTransitions.Resource.Animation.exit_top = global::TravelMonkey.Droid.Resource.Animation.exit_top; + global::Plugin.SharedTransitions.Resource.Animation.fade_in = global::TravelMonkey.Droid.Resource.Animation.fade_in; + global::Plugin.SharedTransitions.Resource.Animation.fade_out = global::TravelMonkey.Droid.Resource.Animation.fade_out; + global::Plugin.SharedTransitions.Resource.Animation.flip_in = global::TravelMonkey.Droid.Resource.Animation.flip_in; + global::Plugin.SharedTransitions.Resource.Animation.flip_out = global::TravelMonkey.Droid.Resource.Animation.flip_out; + global::Plugin.SharedTransitions.Resource.Transition.navigation_transition = global::TravelMonkey.Droid.Resource.Transition.navigation_transition; global::Xamarin.Essentials.Resource.Attribute.alpha = global::TravelMonkey.Droid.Resource.Attribute.alpha; global::Xamarin.Essentials.Resource.Attribute.coordinatorLayoutStyle = global::TravelMonkey.Droid.Resource.Attribute.coordinatorLayoutStyle; global::Xamarin.Essentials.Resource.Attribute.font = global::TravelMonkey.Droid.Resource.Attribute.font; @@ -8167,17 +8181,53 @@ public partial class Animation // aapt resource value: 0x7F01000F public const int design_snackbar_out = 2130771983; + // aapt resource value: 0x7F010014 + public const int EnterFromLeft = 2130771988; + + // aapt resource value: 0x7F010015 + public const int EnterFromRight = 2130771989; + // aapt resource value: 0x7F010010 - public const int EnterFromLeft = 2130771984; + public const int enter_bottom = 2130771984; // aapt resource value: 0x7F010011 - public const int EnterFromRight = 2130771985; + public const int enter_left = 2130771985; // aapt resource value: 0x7F010012 - public const int ExitToLeft = 2130771986; + public const int enter_right = 2130771986; // aapt resource value: 0x7F010013 - public const int ExitToRight = 2130771987; + public const int enter_top = 2130771987; + + // aapt resource value: 0x7F01001A + public const int ExitToLeft = 2130771994; + + // aapt resource value: 0x7F01001B + public const int ExitToRight = 2130771995; + + // aapt resource value: 0x7F010016 + public const int exit_bottom = 2130771990; + + // aapt resource value: 0x7F010017 + public const int exit_left = 2130771991; + + // aapt resource value: 0x7F010018 + public const int exit_right = 2130771992; + + // aapt resource value: 0x7F010019 + public const int exit_top = 2130771993; + + // aapt resource value: 0x7F01001C + public const int fade_in = 2130771996; + + // aapt resource value: 0x7F01001D + public const int fade_out = 2130771997; + + // aapt resource value: 0x7F01001E + public const int flip_in = 2130771998; + + // aapt resource value: 0x7F01001F + public const int flip_out = 2130771999; static Animation() { @@ -11090,115 +11140,118 @@ public partial class Drawable public const int abc_vector_test = 2131165273; // aapt resource value: 0x7F07005A - public const int avd_hide_password = 2131165274; + public const int arrow_back = 2131165274; // aapt resource value: 0x7F07005B - public const int avd_show_password = 2131165275; + public const int avd_hide_password = 2131165275; // aapt resource value: 0x7F07005C - public const int design_bottom_navigation_item_background = 2131165276; + public const int avd_show_password = 2131165276; // aapt resource value: 0x7F07005D - public const int design_fab_background = 2131165277; + public const int design_bottom_navigation_item_background = 2131165277; // aapt resource value: 0x7F07005E - public const int design_ic_visibility = 2131165278; + public const int design_fab_background = 2131165278; // aapt resource value: 0x7F07005F - public const int design_ic_visibility_off = 2131165279; + public const int design_ic_visibility = 2131165279; // aapt resource value: 0x7F070060 - public const int design_password_eye = 2131165280; + public const int design_ic_visibility_off = 2131165280; // aapt resource value: 0x7F070061 - public const int design_snackbar_background = 2131165281; + public const int design_password_eye = 2131165281; // aapt resource value: 0x7F070062 - public const int en = 2131165282; + public const int design_snackbar_background = 2131165282; // aapt resource value: 0x7F070063 - public const int es = 2131165283; + public const int en = 2131165283; // aapt resource value: 0x7F070064 - public const int fr = 2131165284; + public const int es = 2131165284; // aapt resource value: 0x7F070065 - public const int ic_errorstatus = 2131165285; + public const int fr = 2131165285; // aapt resource value: 0x7F070066 - public const int ic_mtrl_chip_checked_black = 2131165286; + public const int ic_errorstatus = 2131165286; // aapt resource value: 0x7F070067 - public const int ic_mtrl_chip_checked_circle = 2131165287; + public const int ic_mtrl_chip_checked_black = 2131165287; // aapt resource value: 0x7F070068 - public const int ic_mtrl_chip_close_circle = 2131165288; + public const int ic_mtrl_chip_checked_circle = 2131165288; // aapt resource value: 0x7F070069 - public const int ic_successstatus = 2131165289; + public const int ic_mtrl_chip_close_circle = 2131165289; // aapt resource value: 0x7F07006A - public const int mtrl_snackbar_background = 2131165290; + public const int ic_successstatus = 2131165290; // aapt resource value: 0x7F07006B - public const int mtrl_tabs_default_indicator = 2131165291; + public const int mtrl_snackbar_background = 2131165291; // aapt resource value: 0x7F07006C - public const int navigation_empty_icon = 2131165292; + public const int mtrl_tabs_default_indicator = 2131165292; // aapt resource value: 0x7F07006D - public const int nl = 2131165293; + public const int navigation_empty_icon = 2131165293; // aapt resource value: 0x7F07006E - public const int notification_action_background = 2131165294; + public const int nl = 2131165294; // aapt resource value: 0x7F07006F - public const int notification_bg = 2131165295; + public const int notification_action_background = 2131165295; // aapt resource value: 0x7F070070 - public const int notification_bg_low = 2131165296; + public const int notification_bg = 2131165296; // aapt resource value: 0x7F070071 - public const int notification_bg_low_normal = 2131165297; + public const int notification_bg_low = 2131165297; // aapt resource value: 0x7F070072 - public const int notification_bg_low_pressed = 2131165298; + public const int notification_bg_low_normal = 2131165298; // aapt resource value: 0x7F070073 - public const int notification_bg_normal = 2131165299; + public const int notification_bg_low_pressed = 2131165299; // aapt resource value: 0x7F070074 - public const int notification_bg_normal_pressed = 2131165300; + public const int notification_bg_normal = 2131165300; // aapt resource value: 0x7F070075 - public const int notification_icon_background = 2131165301; + public const int notification_bg_normal_pressed = 2131165301; // aapt resource value: 0x7F070076 - public const int notification_template_icon_bg = 2131165302; + public const int notification_icon_background = 2131165302; // aapt resource value: 0x7F070077 - public const int notification_template_icon_low_bg = 2131165303; + public const int notification_template_icon_bg = 2131165303; // aapt resource value: 0x7F070078 - public const int notification_tile_bg = 2131165304; + public const int notification_template_icon_low_bg = 2131165304; // aapt resource value: 0x7F070079 - public const int notify_panel_notification_icon_bg = 2131165305; + public const int notification_tile_bg = 2131165305; // aapt resource value: 0x7F07007A - public const int roundedbg = 2131165306; + public const int notify_panel_notification_icon_bg = 2131165306; // aapt resource value: 0x7F07007B - public const int roundedbgdark = 2131165307; + public const int roundedbg = 2131165307; // aapt resource value: 0x7F07007C - public const int tooltip_frame_dark = 2131165308; + public const int roundedbgdark = 2131165308; // aapt resource value: 0x7F07007D - public const int tooltip_frame_light = 2131165309; + public const int tooltip_frame_dark = 2131165309; // aapt resource value: 0x7F07007E - public const int TravelMonkey = 2131165310; + public const int tooltip_frame_light = 2131165310; + + // aapt resource value: 0x7F07007F + public const int TravelMonkey = 2131165311; static Drawable() { @@ -12199,173 +12252,204 @@ private Mipmap() } } - public partial class String + public partial class Raw { // aapt resource value: 0x7F0D0000 - public const int abc_action_bar_home_description = 2131558400; + public const int dream_lake = 2131558400; // aapt resource value: 0x7F0D0001 - public const int abc_action_bar_up_description = 2131558401; + public const int forest = 2131558401; // aapt resource value: 0x7F0D0002 - public const int abc_action_menu_overflow_description = 2131558402; + public const int rice_fields = 2131558402; // aapt resource value: 0x7F0D0003 - public const int abc_action_mode_done = 2131558403; + public const int WalkingThroughTreesatSunsetVidevo = 2131558403; + + // aapt resource value: 0x7F0D0004 + public const int waterfall = 2131558404; // aapt resource value: 0x7F0D0005 - public const int abc_activitychooserview_choose_application = 2131558405; + public const int waterfall2 = 2131558405; - // aapt resource value: 0x7F0D0004 - public const int abc_activity_chooser_view_see_all = 2131558404; + static Raw() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } - // aapt resource value: 0x7F0D0006 - public const int abc_capital_off = 2131558406; + private Raw() + { + } + } + + public partial class String + { - // aapt resource value: 0x7F0D0007 - public const int abc_capital_on = 2131558407; + // aapt resource value: 0x7F0E0000 + public const int abc_action_bar_home_description = 2131623936; - // aapt resource value: 0x7F0D0008 - public const int abc_font_family_body_1_material = 2131558408; + // aapt resource value: 0x7F0E0001 + public const int abc_action_bar_up_description = 2131623937; - // aapt resource value: 0x7F0D0009 - public const int abc_font_family_body_2_material = 2131558409; + // aapt resource value: 0x7F0E0002 + public const int abc_action_menu_overflow_description = 2131623938; - // aapt resource value: 0x7F0D000A - public const int abc_font_family_button_material = 2131558410; + // aapt resource value: 0x7F0E0003 + public const int abc_action_mode_done = 2131623939; - // aapt resource value: 0x7F0D000B - public const int abc_font_family_caption_material = 2131558411; + // aapt resource value: 0x7F0E0005 + public const int abc_activitychooserview_choose_application = 2131623941; - // aapt resource value: 0x7F0D000C - public const int abc_font_family_display_1_material = 2131558412; + // aapt resource value: 0x7F0E0004 + public const int abc_activity_chooser_view_see_all = 2131623940; - // aapt resource value: 0x7F0D000D - public const int abc_font_family_display_2_material = 2131558413; + // aapt resource value: 0x7F0E0006 + public const int abc_capital_off = 2131623942; - // aapt resource value: 0x7F0D000E - public const int abc_font_family_display_3_material = 2131558414; + // aapt resource value: 0x7F0E0007 + public const int abc_capital_on = 2131623943; - // aapt resource value: 0x7F0D000F - public const int abc_font_family_display_4_material = 2131558415; + // aapt resource value: 0x7F0E0008 + public const int abc_font_family_body_1_material = 2131623944; - // aapt resource value: 0x7F0D0010 - public const int abc_font_family_headline_material = 2131558416; + // aapt resource value: 0x7F0E0009 + public const int abc_font_family_body_2_material = 2131623945; - // aapt resource value: 0x7F0D0011 - public const int abc_font_family_menu_material = 2131558417; + // aapt resource value: 0x7F0E000A + public const int abc_font_family_button_material = 2131623946; - // aapt resource value: 0x7F0D0012 - public const int abc_font_family_subhead_material = 2131558418; + // aapt resource value: 0x7F0E000B + public const int abc_font_family_caption_material = 2131623947; - // aapt resource value: 0x7F0D0013 - public const int abc_font_family_title_material = 2131558419; + // aapt resource value: 0x7F0E000C + public const int abc_font_family_display_1_material = 2131623948; - // aapt resource value: 0x7F0D0014 - public const int abc_menu_alt_shortcut_label = 2131558420; + // aapt resource value: 0x7F0E000D + public const int abc_font_family_display_2_material = 2131623949; + + // aapt resource value: 0x7F0E000E + public const int abc_font_family_display_3_material = 2131623950; + + // aapt resource value: 0x7F0E000F + public const int abc_font_family_display_4_material = 2131623951; - // aapt resource value: 0x7F0D0015 - public const int abc_menu_ctrl_shortcut_label = 2131558421; + // aapt resource value: 0x7F0E0010 + public const int abc_font_family_headline_material = 2131623952; - // aapt resource value: 0x7F0D0016 - public const int abc_menu_delete_shortcut_label = 2131558422; + // aapt resource value: 0x7F0E0011 + public const int abc_font_family_menu_material = 2131623953; - // aapt resource value: 0x7F0D0017 - public const int abc_menu_enter_shortcut_label = 2131558423; + // aapt resource value: 0x7F0E0012 + public const int abc_font_family_subhead_material = 2131623954; + + // aapt resource value: 0x7F0E0013 + public const int abc_font_family_title_material = 2131623955; - // aapt resource value: 0x7F0D0018 - public const int abc_menu_function_shortcut_label = 2131558424; + // aapt resource value: 0x7F0E0014 + public const int abc_menu_alt_shortcut_label = 2131623956; + + // aapt resource value: 0x7F0E0015 + public const int abc_menu_ctrl_shortcut_label = 2131623957; + + // aapt resource value: 0x7F0E0016 + public const int abc_menu_delete_shortcut_label = 2131623958; + + // aapt resource value: 0x7F0E0017 + public const int abc_menu_enter_shortcut_label = 2131623959; + + // aapt resource value: 0x7F0E0018 + public const int abc_menu_function_shortcut_label = 2131623960; - // aapt resource value: 0x7F0D0019 - public const int abc_menu_meta_shortcut_label = 2131558425; + // aapt resource value: 0x7F0E0019 + public const int abc_menu_meta_shortcut_label = 2131623961; - // aapt resource value: 0x7F0D001A - public const int abc_menu_shift_shortcut_label = 2131558426; + // aapt resource value: 0x7F0E001A + public const int abc_menu_shift_shortcut_label = 2131623962; - // aapt resource value: 0x7F0D001B - public const int abc_menu_space_shortcut_label = 2131558427; + // aapt resource value: 0x7F0E001B + public const int abc_menu_space_shortcut_label = 2131623963; - // aapt resource value: 0x7F0D001C - public const int abc_menu_sym_shortcut_label = 2131558428; + // aapt resource value: 0x7F0E001C + public const int abc_menu_sym_shortcut_label = 2131623964; - // aapt resource value: 0x7F0D001D - public const int abc_prepend_shortcut_label = 2131558429; + // aapt resource value: 0x7F0E001D + public const int abc_prepend_shortcut_label = 2131623965; - // aapt resource value: 0x7F0D001F - public const int abc_searchview_description_clear = 2131558431; + // aapt resource value: 0x7F0E001F + public const int abc_searchview_description_clear = 2131623967; - // aapt resource value: 0x7F0D0020 - public const int abc_searchview_description_query = 2131558432; + // aapt resource value: 0x7F0E0020 + public const int abc_searchview_description_query = 2131623968; - // aapt resource value: 0x7F0D0021 - public const int abc_searchview_description_search = 2131558433; + // aapt resource value: 0x7F0E0021 + public const int abc_searchview_description_search = 2131623969; - // aapt resource value: 0x7F0D0022 - public const int abc_searchview_description_submit = 2131558434; + // aapt resource value: 0x7F0E0022 + public const int abc_searchview_description_submit = 2131623970; - // aapt resource value: 0x7F0D0023 - public const int abc_searchview_description_voice = 2131558435; + // aapt resource value: 0x7F0E0023 + public const int abc_searchview_description_voice = 2131623971; - // aapt resource value: 0x7F0D001E - public const int abc_search_hint = 2131558430; + // aapt resource value: 0x7F0E001E + public const int abc_search_hint = 2131623966; - // aapt resource value: 0x7F0D0024 - public const int abc_shareactionprovider_share_with = 2131558436; + // aapt resource value: 0x7F0E0024 + public const int abc_shareactionprovider_share_with = 2131623972; - // aapt resource value: 0x7F0D0025 - public const int abc_shareactionprovider_share_with_application = 2131558437; + // aapt resource value: 0x7F0E0025 + public const int abc_shareactionprovider_share_with_application = 2131623973; - // aapt resource value: 0x7F0D0026 - public const int abc_toolbar_collapse_description = 2131558438; + // aapt resource value: 0x7F0E0026 + public const int abc_toolbar_collapse_description = 2131623974; - // aapt resource value: 0x7F0D0027 - public const int appbar_scrolling_view_behavior = 2131558439; + // aapt resource value: 0x7F0E0027 + public const int appbar_scrolling_view_behavior = 2131623975; - // aapt resource value: 0x7F0D0028 - public const int bottom_sheet_behavior = 2131558440; + // aapt resource value: 0x7F0E0028 + public const int bottom_sheet_behavior = 2131623976; - // aapt resource value: 0x7F0D0029 - public const int character_counter_content_description = 2131558441; + // aapt resource value: 0x7F0E0029 + public const int character_counter_content_description = 2131623977; - // aapt resource value: 0x7F0D002A - public const int character_counter_pattern = 2131558442; + // aapt resource value: 0x7F0E002A + public const int character_counter_pattern = 2131623978; - // aapt resource value: 0x7F0D002B - public const int fab_transformation_scrim_behavior = 2131558443; + // aapt resource value: 0x7F0E002B + public const int fab_transformation_scrim_behavior = 2131623979; - // aapt resource value: 0x7F0D002C - public const int fab_transformation_sheet_behavior = 2131558444; + // aapt resource value: 0x7F0E002C + public const int fab_transformation_sheet_behavior = 2131623980; - // aapt resource value: 0x7F0D002D - public const int hide_bottom_view_on_scroll_behavior = 2131558445; + // aapt resource value: 0x7F0E002D + public const int hide_bottom_view_on_scroll_behavior = 2131623981; - // aapt resource value: 0x7F0D002E - public const int library_name = 2131558446; + // aapt resource value: 0x7F0E002E + public const int library_name = 2131623982; - // aapt resource value: 0x7F0D002F - public const int mtrl_chip_close_icon_content_description = 2131558447; + // aapt resource value: 0x7F0E002F + public const int mtrl_chip_close_icon_content_description = 2131623983; - // aapt resource value: 0x7F0D0030 - public const int password_toggle_content_description = 2131558448; + // aapt resource value: 0x7F0E0030 + public const int password_toggle_content_description = 2131623984; - // aapt resource value: 0x7F0D0031 - public const int path_password_eye = 2131558449; + // aapt resource value: 0x7F0E0031 + public const int path_password_eye = 2131623985; - // aapt resource value: 0x7F0D0032 - public const int path_password_eye_mask_strike_through = 2131558450; + // aapt resource value: 0x7F0E0032 + public const int path_password_eye_mask_strike_through = 2131623986; - // aapt resource value: 0x7F0D0033 - public const int path_password_eye_mask_visible = 2131558451; + // aapt resource value: 0x7F0E0033 + public const int path_password_eye_mask_visible = 2131623987; - // aapt resource value: 0x7F0D0034 - public const int path_password_strike_through = 2131558452; + // aapt resource value: 0x7F0E0034 + public const int path_password_strike_through = 2131623988; - // aapt resource value: 0x7F0D0035 - public const int search_menu_title = 2131558453; + // aapt resource value: 0x7F0E0035 + public const int search_menu_title = 2131623989; - // aapt resource value: 0x7F0D0036 - public const int status_bar_notification_info_overflow = 2131558454; + // aapt resource value: 0x7F0E0036 + public const int status_bar_notification_info_overflow = 2131623990; static String() { @@ -12380,1520 +12464,1520 @@ private String() public partial class Style { - // aapt resource value: 0x7F0E0000 - public const int AlertDialog_AppCompat = 2131623936; + // aapt resource value: 0x7F0F0000 + public const int AlertDialog_AppCompat = 2131689472; - // aapt resource value: 0x7F0E0001 - public const int AlertDialog_AppCompat_Light = 2131623937; + // aapt resource value: 0x7F0F0001 + public const int AlertDialog_AppCompat_Light = 2131689473; - // aapt resource value: 0x7F0E0002 - public const int Animation_AppCompat_Dialog = 2131623938; + // aapt resource value: 0x7F0F0002 + public const int Animation_AppCompat_Dialog = 2131689474; - // aapt resource value: 0x7F0E0003 - public const int Animation_AppCompat_DropDownUp = 2131623939; + // aapt resource value: 0x7F0F0003 + public const int Animation_AppCompat_DropDownUp = 2131689475; - // aapt resource value: 0x7F0E0004 - public const int Animation_AppCompat_Tooltip = 2131623940; + // aapt resource value: 0x7F0F0004 + public const int Animation_AppCompat_Tooltip = 2131689476; - // aapt resource value: 0x7F0E0005 - public const int Animation_Design_BottomSheetDialog = 2131623941; + // aapt resource value: 0x7F0F0005 + public const int Animation_Design_BottomSheetDialog = 2131689477; - // aapt resource value: 0x7F0E0006 - public const int AppCompatDialogStyle = 2131623942; + // aapt resource value: 0x7F0F0006 + public const int AppCompatDialogStyle = 2131689478; - // aapt resource value: 0x7F0E0007 - public const int Base_AlertDialog_AppCompat = 2131623943; + // aapt resource value: 0x7F0F0007 + public const int Base_AlertDialog_AppCompat = 2131689479; - // aapt resource value: 0x7F0E0008 - public const int Base_AlertDialog_AppCompat_Light = 2131623944; + // aapt resource value: 0x7F0F0008 + public const int Base_AlertDialog_AppCompat_Light = 2131689480; - // aapt resource value: 0x7F0E0009 - public const int Base_Animation_AppCompat_Dialog = 2131623945; + // aapt resource value: 0x7F0F0009 + public const int Base_Animation_AppCompat_Dialog = 2131689481; - // aapt resource value: 0x7F0E000A - public const int Base_Animation_AppCompat_DropDownUp = 2131623946; + // aapt resource value: 0x7F0F000A + public const int Base_Animation_AppCompat_DropDownUp = 2131689482; - // aapt resource value: 0x7F0E000B - public const int Base_Animation_AppCompat_Tooltip = 2131623947; + // aapt resource value: 0x7F0F000B + public const int Base_Animation_AppCompat_Tooltip = 2131689483; - // aapt resource value: 0x7F0E000C - public const int Base_CardView = 2131623948; + // aapt resource value: 0x7F0F000C + public const int Base_CardView = 2131689484; - // aapt resource value: 0x7F0E000E - public const int Base_DialogWindowTitleBackground_AppCompat = 2131623950; + // aapt resource value: 0x7F0F000E + public const int Base_DialogWindowTitleBackground_AppCompat = 2131689486; - // aapt resource value: 0x7F0E000D - public const int Base_DialogWindowTitle_AppCompat = 2131623949; + // aapt resource value: 0x7F0F000D + public const int Base_DialogWindowTitle_AppCompat = 2131689485; - // aapt resource value: 0x7F0E000F - public const int Base_TextAppearance_AppCompat = 2131623951; + // aapt resource value: 0x7F0F000F + public const int Base_TextAppearance_AppCompat = 2131689487; - // aapt resource value: 0x7F0E0010 - public const int Base_TextAppearance_AppCompat_Body1 = 2131623952; + // aapt resource value: 0x7F0F0010 + public const int Base_TextAppearance_AppCompat_Body1 = 2131689488; - // aapt resource value: 0x7F0E0011 - public const int Base_TextAppearance_AppCompat_Body2 = 2131623953; + // aapt resource value: 0x7F0F0011 + public const int Base_TextAppearance_AppCompat_Body2 = 2131689489; - // aapt resource value: 0x7F0E0012 - public const int Base_TextAppearance_AppCompat_Button = 2131623954; + // aapt resource value: 0x7F0F0012 + public const int Base_TextAppearance_AppCompat_Button = 2131689490; - // aapt resource value: 0x7F0E0013 - public const int Base_TextAppearance_AppCompat_Caption = 2131623955; + // aapt resource value: 0x7F0F0013 + public const int Base_TextAppearance_AppCompat_Caption = 2131689491; - // aapt resource value: 0x7F0E0014 - public const int Base_TextAppearance_AppCompat_Display1 = 2131623956; + // aapt resource value: 0x7F0F0014 + public const int Base_TextAppearance_AppCompat_Display1 = 2131689492; - // aapt resource value: 0x7F0E0015 - public const int Base_TextAppearance_AppCompat_Display2 = 2131623957; + // aapt resource value: 0x7F0F0015 + public const int Base_TextAppearance_AppCompat_Display2 = 2131689493; - // aapt resource value: 0x7F0E0016 - public const int Base_TextAppearance_AppCompat_Display3 = 2131623958; + // aapt resource value: 0x7F0F0016 + public const int Base_TextAppearance_AppCompat_Display3 = 2131689494; - // aapt resource value: 0x7F0E0017 - public const int Base_TextAppearance_AppCompat_Display4 = 2131623959; + // aapt resource value: 0x7F0F0017 + public const int Base_TextAppearance_AppCompat_Display4 = 2131689495; - // aapt resource value: 0x7F0E0018 - public const int Base_TextAppearance_AppCompat_Headline = 2131623960; + // aapt resource value: 0x7F0F0018 + public const int Base_TextAppearance_AppCompat_Headline = 2131689496; - // aapt resource value: 0x7F0E0019 - public const int Base_TextAppearance_AppCompat_Inverse = 2131623961; + // aapt resource value: 0x7F0F0019 + public const int Base_TextAppearance_AppCompat_Inverse = 2131689497; - // aapt resource value: 0x7F0E001A - public const int Base_TextAppearance_AppCompat_Large = 2131623962; + // aapt resource value: 0x7F0F001A + public const int Base_TextAppearance_AppCompat_Large = 2131689498; - // aapt resource value: 0x7F0E001B - public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131623963; + // aapt resource value: 0x7F0F001B + public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131689499; - // aapt resource value: 0x7F0E001C - public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131623964; + // aapt resource value: 0x7F0F001C + public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131689500; - // aapt resource value: 0x7F0E001D - public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131623965; + // aapt resource value: 0x7F0F001D + public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131689501; - // aapt resource value: 0x7F0E001E - public const int Base_TextAppearance_AppCompat_Medium = 2131623966; + // aapt resource value: 0x7F0F001E + public const int Base_TextAppearance_AppCompat_Medium = 2131689502; - // aapt resource value: 0x7F0E001F - public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131623967; + // aapt resource value: 0x7F0F001F + public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131689503; - // aapt resource value: 0x7F0E0020 - public const int Base_TextAppearance_AppCompat_Menu = 2131623968; + // aapt resource value: 0x7F0F0020 + public const int Base_TextAppearance_AppCompat_Menu = 2131689504; - // aapt resource value: 0x7F0E0021 - public const int Base_TextAppearance_AppCompat_SearchResult = 2131623969; + // aapt resource value: 0x7F0F0021 + public const int Base_TextAppearance_AppCompat_SearchResult = 2131689505; - // aapt resource value: 0x7F0E0022 - public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131623970; + // aapt resource value: 0x7F0F0022 + public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131689506; - // aapt resource value: 0x7F0E0023 - public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131623971; + // aapt resource value: 0x7F0F0023 + public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131689507; - // aapt resource value: 0x7F0E0024 - public const int Base_TextAppearance_AppCompat_Small = 2131623972; + // aapt resource value: 0x7F0F0024 + public const int Base_TextAppearance_AppCompat_Small = 2131689508; - // aapt resource value: 0x7F0E0025 - public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131623973; + // aapt resource value: 0x7F0F0025 + public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131689509; - // aapt resource value: 0x7F0E0026 - public const int Base_TextAppearance_AppCompat_Subhead = 2131623974; + // aapt resource value: 0x7F0F0026 + public const int Base_TextAppearance_AppCompat_Subhead = 2131689510; - // aapt resource value: 0x7F0E0027 - public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131623975; + // aapt resource value: 0x7F0F0027 + public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131689511; - // aapt resource value: 0x7F0E0028 - public const int Base_TextAppearance_AppCompat_Title = 2131623976; + // aapt resource value: 0x7F0F0028 + public const int Base_TextAppearance_AppCompat_Title = 2131689512; - // aapt resource value: 0x7F0E0029 - public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131623977; + // aapt resource value: 0x7F0F0029 + public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131689513; - // aapt resource value: 0x7F0E002A - public const int Base_TextAppearance_AppCompat_Tooltip = 2131623978; + // aapt resource value: 0x7F0F002A + public const int Base_TextAppearance_AppCompat_Tooltip = 2131689514; - // aapt resource value: 0x7F0E002B - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131623979; + // aapt resource value: 0x7F0F002B + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131689515; - // aapt resource value: 0x7F0E002C - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131623980; + // aapt resource value: 0x7F0F002C + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131689516; - // aapt resource value: 0x7F0E002D - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131623981; + // aapt resource value: 0x7F0F002D + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131689517; - // aapt resource value: 0x7F0E002E - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131623982; + // aapt resource value: 0x7F0F002E + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131689518; - // aapt resource value: 0x7F0E002F - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131623983; + // aapt resource value: 0x7F0F002F + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131689519; - // aapt resource value: 0x7F0E0030 - public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131623984; + // aapt resource value: 0x7F0F0030 + public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131689520; - // aapt resource value: 0x7F0E0031 - public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131623985; + // aapt resource value: 0x7F0F0031 + public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131689521; - // aapt resource value: 0x7F0E0032 - public const int Base_TextAppearance_AppCompat_Widget_Button = 2131623986; + // aapt resource value: 0x7F0F0032 + public const int Base_TextAppearance_AppCompat_Widget_Button = 2131689522; - // aapt resource value: 0x7F0E0033 - public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131623987; + // aapt resource value: 0x7F0F0033 + public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131689523; - // aapt resource value: 0x7F0E0034 - public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131623988; + // aapt resource value: 0x7F0F0034 + public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131689524; - // aapt resource value: 0x7F0E0035 - public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131623989; + // aapt resource value: 0x7F0F0035 + public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131689525; - // aapt resource value: 0x7F0E0036 - public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131623990; + // aapt resource value: 0x7F0F0036 + public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131689526; - // aapt resource value: 0x7F0E0037 - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131623991; + // aapt resource value: 0x7F0F0037 + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131689527; - // aapt resource value: 0x7F0E0038 - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131623992; + // aapt resource value: 0x7F0F0038 + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131689528; - // aapt resource value: 0x7F0E0039 - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131623993; + // aapt resource value: 0x7F0F0039 + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131689529; - // aapt resource value: 0x7F0E003A - public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131623994; + // aapt resource value: 0x7F0F003A + public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131689530; - // aapt resource value: 0x7F0E003B - public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131623995; + // aapt resource value: 0x7F0F003B + public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131689531; - // aapt resource value: 0x7F0E003C - public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131623996; + // aapt resource value: 0x7F0F003C + public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131689532; - // aapt resource value: 0x7F0E003D - public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131623997; + // aapt resource value: 0x7F0F003D + public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131689533; - // aapt resource value: 0x7F0E003E - public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131623998; + // aapt resource value: 0x7F0F003E + public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131689534; - // aapt resource value: 0x7F0E005E - public const int Base_ThemeOverlay_AppCompat = 2131624030; + // aapt resource value: 0x7F0F005E + public const int Base_ThemeOverlay_AppCompat = 2131689566; - // aapt resource value: 0x7F0E005F - public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131624031; + // aapt resource value: 0x7F0F005F + public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131689567; - // aapt resource value: 0x7F0E0060 - public const int Base_ThemeOverlay_AppCompat_Dark = 2131624032; + // aapt resource value: 0x7F0F0060 + public const int Base_ThemeOverlay_AppCompat_Dark = 2131689568; - // aapt resource value: 0x7F0E0061 - public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131624033; + // aapt resource value: 0x7F0F0061 + public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131689569; - // aapt resource value: 0x7F0E0062 - public const int Base_ThemeOverlay_AppCompat_Dialog = 2131624034; + // aapt resource value: 0x7F0F0062 + public const int Base_ThemeOverlay_AppCompat_Dialog = 2131689570; - // aapt resource value: 0x7F0E0063 - public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131624035; + // aapt resource value: 0x7F0F0063 + public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131689571; - // aapt resource value: 0x7F0E0064 - public const int Base_ThemeOverlay_AppCompat_Light = 2131624036; + // aapt resource value: 0x7F0F0064 + public const int Base_ThemeOverlay_AppCompat_Light = 2131689572; - // aapt resource value: 0x7F0E0065 - public const int Base_ThemeOverlay_MaterialComponents_Dialog = 2131624037; + // aapt resource value: 0x7F0F0065 + public const int Base_ThemeOverlay_MaterialComponents_Dialog = 2131689573; - // aapt resource value: 0x7F0E0066 - public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131624038; + // aapt resource value: 0x7F0F0066 + public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131689574; - // aapt resource value: 0x7F0E003F - public const int Base_Theme_AppCompat = 2131623999; + // aapt resource value: 0x7F0F003F + public const int Base_Theme_AppCompat = 2131689535; - // aapt resource value: 0x7F0E0040 - public const int Base_Theme_AppCompat_CompactMenu = 2131624000; + // aapt resource value: 0x7F0F0040 + public const int Base_Theme_AppCompat_CompactMenu = 2131689536; - // aapt resource value: 0x7F0E0041 - public const int Base_Theme_AppCompat_Dialog = 2131624001; + // aapt resource value: 0x7F0F0041 + public const int Base_Theme_AppCompat_Dialog = 2131689537; - // aapt resource value: 0x7F0E0045 - public const int Base_Theme_AppCompat_DialogWhenLarge = 2131624005; + // aapt resource value: 0x7F0F0045 + public const int Base_Theme_AppCompat_DialogWhenLarge = 2131689541; - // aapt resource value: 0x7F0E0042 - public const int Base_Theme_AppCompat_Dialog_Alert = 2131624002; + // aapt resource value: 0x7F0F0042 + public const int Base_Theme_AppCompat_Dialog_Alert = 2131689538; - // aapt resource value: 0x7F0E0043 - public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131624003; + // aapt resource value: 0x7F0F0043 + public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131689539; - // aapt resource value: 0x7F0E0044 - public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131624004; + // aapt resource value: 0x7F0F0044 + public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131689540; - // aapt resource value: 0x7F0E0046 - public const int Base_Theme_AppCompat_Light = 2131624006; + // aapt resource value: 0x7F0F0046 + public const int Base_Theme_AppCompat_Light = 2131689542; - // aapt resource value: 0x7F0E0047 - public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131624007; + // aapt resource value: 0x7F0F0047 + public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131689543; - // aapt resource value: 0x7F0E0048 - public const int Base_Theme_AppCompat_Light_Dialog = 2131624008; + // aapt resource value: 0x7F0F0048 + public const int Base_Theme_AppCompat_Light_Dialog = 2131689544; - // aapt resource value: 0x7F0E004C - public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131624012; + // aapt resource value: 0x7F0F004C + public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131689548; - // aapt resource value: 0x7F0E0049 - public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131624009; + // aapt resource value: 0x7F0F0049 + public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131689545; - // aapt resource value: 0x7F0E004A - public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131624010; + // aapt resource value: 0x7F0F004A + public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131689546; - // aapt resource value: 0x7F0E004B - public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131624011; + // aapt resource value: 0x7F0F004B + public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131689547; - // aapt resource value: 0x7F0E004D - public const int Base_Theme_MaterialComponents = 2131624013; + // aapt resource value: 0x7F0F004D + public const int Base_Theme_MaterialComponents = 2131689549; - // aapt resource value: 0x7F0E004E - public const int Base_Theme_MaterialComponents_Bridge = 2131624014; + // aapt resource value: 0x7F0F004E + public const int Base_Theme_MaterialComponents_Bridge = 2131689550; - // aapt resource value: 0x7F0E004F - public const int Base_Theme_MaterialComponents_CompactMenu = 2131624015; + // aapt resource value: 0x7F0F004F + public const int Base_Theme_MaterialComponents_CompactMenu = 2131689551; - // aapt resource value: 0x7F0E0050 - public const int Base_Theme_MaterialComponents_Dialog = 2131624016; + // aapt resource value: 0x7F0F0050 + public const int Base_Theme_MaterialComponents_Dialog = 2131689552; - // aapt resource value: 0x7F0E0054 - public const int Base_Theme_MaterialComponents_DialogWhenLarge = 2131624020; + // aapt resource value: 0x7F0F0054 + public const int Base_Theme_MaterialComponents_DialogWhenLarge = 2131689556; - // aapt resource value: 0x7F0E0051 - public const int Base_Theme_MaterialComponents_Dialog_Alert = 2131624017; + // aapt resource value: 0x7F0F0051 + public const int Base_Theme_MaterialComponents_Dialog_Alert = 2131689553; - // aapt resource value: 0x7F0E0052 - public const int Base_Theme_MaterialComponents_Dialog_FixedSize = 2131624018; + // aapt resource value: 0x7F0F0052 + public const int Base_Theme_MaterialComponents_Dialog_FixedSize = 2131689554; - // aapt resource value: 0x7F0E0053 - public const int Base_Theme_MaterialComponents_Dialog_MinWidth = 2131624019; + // aapt resource value: 0x7F0F0053 + public const int Base_Theme_MaterialComponents_Dialog_MinWidth = 2131689555; - // aapt resource value: 0x7F0E0055 - public const int Base_Theme_MaterialComponents_Light = 2131624021; + // aapt resource value: 0x7F0F0055 + public const int Base_Theme_MaterialComponents_Light = 2131689557; - // aapt resource value: 0x7F0E0056 - public const int Base_Theme_MaterialComponents_Light_Bridge = 2131624022; + // aapt resource value: 0x7F0F0056 + public const int Base_Theme_MaterialComponents_Light_Bridge = 2131689558; - // aapt resource value: 0x7F0E0057 - public const int Base_Theme_MaterialComponents_Light_DarkActionBar = 2131624023; + // aapt resource value: 0x7F0F0057 + public const int Base_Theme_MaterialComponents_Light_DarkActionBar = 2131689559; - // aapt resource value: 0x7F0E0058 - public const int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131624024; + // aapt resource value: 0x7F0F0058 + public const int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131689560; - // aapt resource value: 0x7F0E0059 - public const int Base_Theme_MaterialComponents_Light_Dialog = 2131624025; + // aapt resource value: 0x7F0F0059 + public const int Base_Theme_MaterialComponents_Light_Dialog = 2131689561; - // aapt resource value: 0x7F0E005D - public const int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 2131624029; + // aapt resource value: 0x7F0F005D + public const int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 2131689565; - // aapt resource value: 0x7F0E005A - public const int Base_Theme_MaterialComponents_Light_Dialog_Alert = 2131624026; + // aapt resource value: 0x7F0F005A + public const int Base_Theme_MaterialComponents_Light_Dialog_Alert = 2131689562; - // aapt resource value: 0x7F0E005B - public const int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 2131624027; + // aapt resource value: 0x7F0F005B + public const int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 2131689563; - // aapt resource value: 0x7F0E005C - public const int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 2131624028; + // aapt resource value: 0x7F0F005C + public const int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 2131689564; - // aapt resource value: 0x7F0E006E - public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 2131624046; + // aapt resource value: 0x7F0F006E + public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 2131689582; - // aapt resource value: 0x7F0E006F - public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131624047; + // aapt resource value: 0x7F0F006F + public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131689583; - // aapt resource value: 0x7F0E0067 - public const int Base_V14_Theme_MaterialComponents = 2131624039; + // aapt resource value: 0x7F0F0067 + public const int Base_V14_Theme_MaterialComponents = 2131689575; - // aapt resource value: 0x7F0E0068 - public const int Base_V14_Theme_MaterialComponents_Bridge = 2131624040; + // aapt resource value: 0x7F0F0068 + public const int Base_V14_Theme_MaterialComponents_Bridge = 2131689576; - // aapt resource value: 0x7F0E0069 - public const int Base_V14_Theme_MaterialComponents_Dialog = 2131624041; + // aapt resource value: 0x7F0F0069 + public const int Base_V14_Theme_MaterialComponents_Dialog = 2131689577; - // aapt resource value: 0x7F0E006A - public const int Base_V14_Theme_MaterialComponents_Light = 2131624042; + // aapt resource value: 0x7F0F006A + public const int Base_V14_Theme_MaterialComponents_Light = 2131689578; - // aapt resource value: 0x7F0E006B - public const int Base_V14_Theme_MaterialComponents_Light_Bridge = 2131624043; + // aapt resource value: 0x7F0F006B + public const int Base_V14_Theme_MaterialComponents_Light_Bridge = 2131689579; - // aapt resource value: 0x7F0E006C - public const int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131624044; + // aapt resource value: 0x7F0F006C + public const int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131689580; - // aapt resource value: 0x7F0E006D - public const int Base_V14_Theme_MaterialComponents_Light_Dialog = 2131624045; + // aapt resource value: 0x7F0F006D + public const int Base_V14_Theme_MaterialComponents_Light_Dialog = 2131689581; - // aapt resource value: 0x7F0E0074 - public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131624052; + // aapt resource value: 0x7F0F0074 + public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131689588; - // aapt resource value: 0x7F0E0070 - public const int Base_V21_Theme_AppCompat = 2131624048; + // aapt resource value: 0x7F0F0070 + public const int Base_V21_Theme_AppCompat = 2131689584; - // aapt resource value: 0x7F0E0071 - public const int Base_V21_Theme_AppCompat_Dialog = 2131624049; + // aapt resource value: 0x7F0F0071 + public const int Base_V21_Theme_AppCompat_Dialog = 2131689585; - // aapt resource value: 0x7F0E0072 - public const int Base_V21_Theme_AppCompat_Light = 2131624050; + // aapt resource value: 0x7F0F0072 + public const int Base_V21_Theme_AppCompat_Light = 2131689586; - // aapt resource value: 0x7F0E0073 - public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131624051; + // aapt resource value: 0x7F0F0073 + public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131689587; - // aapt resource value: 0x7F0E0075 - public const int Base_V22_Theme_AppCompat = 2131624053; + // aapt resource value: 0x7F0F0075 + public const int Base_V22_Theme_AppCompat = 2131689589; - // aapt resource value: 0x7F0E0076 - public const int Base_V22_Theme_AppCompat_Light = 2131624054; + // aapt resource value: 0x7F0F0076 + public const int Base_V22_Theme_AppCompat_Light = 2131689590; - // aapt resource value: 0x7F0E0077 - public const int Base_V23_Theme_AppCompat = 2131624055; + // aapt resource value: 0x7F0F0077 + public const int Base_V23_Theme_AppCompat = 2131689591; - // aapt resource value: 0x7F0E0078 - public const int Base_V23_Theme_AppCompat_Light = 2131624056; + // aapt resource value: 0x7F0F0078 + public const int Base_V23_Theme_AppCompat_Light = 2131689592; - // aapt resource value: 0x7F0E0079 - public const int Base_V26_Theme_AppCompat = 2131624057; + // aapt resource value: 0x7F0F0079 + public const int Base_V26_Theme_AppCompat = 2131689593; - // aapt resource value: 0x7F0E007A - public const int Base_V26_Theme_AppCompat_Light = 2131624058; + // aapt resource value: 0x7F0F007A + public const int Base_V26_Theme_AppCompat_Light = 2131689594; - // aapt resource value: 0x7F0E007B - public const int Base_V26_Widget_AppCompat_Toolbar = 2131624059; + // aapt resource value: 0x7F0F007B + public const int Base_V26_Widget_AppCompat_Toolbar = 2131689595; - // aapt resource value: 0x7F0E007C - public const int Base_V28_Theme_AppCompat = 2131624060; + // aapt resource value: 0x7F0F007C + public const int Base_V28_Theme_AppCompat = 2131689596; - // aapt resource value: 0x7F0E007D - public const int Base_V28_Theme_AppCompat_Light = 2131624061; + // aapt resource value: 0x7F0F007D + public const int Base_V28_Theme_AppCompat_Light = 2131689597; - // aapt resource value: 0x7F0E0082 - public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131624066; + // aapt resource value: 0x7F0F0082 + public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131689602; - // aapt resource value: 0x7F0E007E - public const int Base_V7_Theme_AppCompat = 2131624062; + // aapt resource value: 0x7F0F007E + public const int Base_V7_Theme_AppCompat = 2131689598; - // aapt resource value: 0x7F0E007F - public const int Base_V7_Theme_AppCompat_Dialog = 2131624063; + // aapt resource value: 0x7F0F007F + public const int Base_V7_Theme_AppCompat_Dialog = 2131689599; - // aapt resource value: 0x7F0E0080 - public const int Base_V7_Theme_AppCompat_Light = 2131624064; + // aapt resource value: 0x7F0F0080 + public const int Base_V7_Theme_AppCompat_Light = 2131689600; - // aapt resource value: 0x7F0E0081 - public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131624065; + // aapt resource value: 0x7F0F0081 + public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131689601; - // aapt resource value: 0x7F0E0083 - public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131624067; + // aapt resource value: 0x7F0F0083 + public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131689603; - // aapt resource value: 0x7F0E0084 - public const int Base_V7_Widget_AppCompat_EditText = 2131624068; + // aapt resource value: 0x7F0F0084 + public const int Base_V7_Widget_AppCompat_EditText = 2131689604; - // aapt resource value: 0x7F0E0085 - public const int Base_V7_Widget_AppCompat_Toolbar = 2131624069; + // aapt resource value: 0x7F0F0085 + public const int Base_V7_Widget_AppCompat_Toolbar = 2131689605; - // aapt resource value: 0x7F0E0086 - public const int Base_Widget_AppCompat_ActionBar = 2131624070; + // aapt resource value: 0x7F0F0086 + public const int Base_Widget_AppCompat_ActionBar = 2131689606; - // aapt resource value: 0x7F0E0087 - public const int Base_Widget_AppCompat_ActionBar_Solid = 2131624071; + // aapt resource value: 0x7F0F0087 + public const int Base_Widget_AppCompat_ActionBar_Solid = 2131689607; - // aapt resource value: 0x7F0E0088 - public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131624072; + // aapt resource value: 0x7F0F0088 + public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131689608; - // aapt resource value: 0x7F0E0089 - public const int Base_Widget_AppCompat_ActionBar_TabText = 2131624073; + // aapt resource value: 0x7F0F0089 + public const int Base_Widget_AppCompat_ActionBar_TabText = 2131689609; - // aapt resource value: 0x7F0E008A - public const int Base_Widget_AppCompat_ActionBar_TabView = 2131624074; + // aapt resource value: 0x7F0F008A + public const int Base_Widget_AppCompat_ActionBar_TabView = 2131689610; - // aapt resource value: 0x7F0E008B - public const int Base_Widget_AppCompat_ActionButton = 2131624075; + // aapt resource value: 0x7F0F008B + public const int Base_Widget_AppCompat_ActionButton = 2131689611; - // aapt resource value: 0x7F0E008C - public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131624076; + // aapt resource value: 0x7F0F008C + public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131689612; - // aapt resource value: 0x7F0E008D - public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131624077; + // aapt resource value: 0x7F0F008D + public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131689613; - // aapt resource value: 0x7F0E008E - public const int Base_Widget_AppCompat_ActionMode = 2131624078; + // aapt resource value: 0x7F0F008E + public const int Base_Widget_AppCompat_ActionMode = 2131689614; - // aapt resource value: 0x7F0E008F - public const int Base_Widget_AppCompat_ActivityChooserView = 2131624079; + // aapt resource value: 0x7F0F008F + public const int Base_Widget_AppCompat_ActivityChooserView = 2131689615; - // aapt resource value: 0x7F0E0090 - public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131624080; + // aapt resource value: 0x7F0F0090 + public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131689616; - // aapt resource value: 0x7F0E0091 - public const int Base_Widget_AppCompat_Button = 2131624081; + // aapt resource value: 0x7F0F0091 + public const int Base_Widget_AppCompat_Button = 2131689617; - // aapt resource value: 0x7F0E0097 - public const int Base_Widget_AppCompat_ButtonBar = 2131624087; + // aapt resource value: 0x7F0F0097 + public const int Base_Widget_AppCompat_ButtonBar = 2131689623; - // aapt resource value: 0x7F0E0098 - public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131624088; + // aapt resource value: 0x7F0F0098 + public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131689624; - // aapt resource value: 0x7F0E0092 - public const int Base_Widget_AppCompat_Button_Borderless = 2131624082; + // aapt resource value: 0x7F0F0092 + public const int Base_Widget_AppCompat_Button_Borderless = 2131689618; - // aapt resource value: 0x7F0E0093 - public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131624083; + // aapt resource value: 0x7F0F0093 + public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131689619; - // aapt resource value: 0x7F0E0094 - public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131624084; + // aapt resource value: 0x7F0F0094 + public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131689620; - // aapt resource value: 0x7F0E0095 - public const int Base_Widget_AppCompat_Button_Colored = 2131624085; + // aapt resource value: 0x7F0F0095 + public const int Base_Widget_AppCompat_Button_Colored = 2131689621; - // aapt resource value: 0x7F0E0096 - public const int Base_Widget_AppCompat_Button_Small = 2131624086; + // aapt resource value: 0x7F0F0096 + public const int Base_Widget_AppCompat_Button_Small = 2131689622; - // aapt resource value: 0x7F0E0099 - public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131624089; + // aapt resource value: 0x7F0F0099 + public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131689625; - // aapt resource value: 0x7F0E009A - public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131624090; + // aapt resource value: 0x7F0F009A + public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131689626; - // aapt resource value: 0x7F0E009B - public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131624091; + // aapt resource value: 0x7F0F009B + public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131689627; - // aapt resource value: 0x7F0E009C - public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131624092; + // aapt resource value: 0x7F0F009C + public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131689628; - // aapt resource value: 0x7F0E009D - public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131624093; + // aapt resource value: 0x7F0F009D + public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131689629; - // aapt resource value: 0x7F0E009E - public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131624094; + // aapt resource value: 0x7F0F009E + public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131689630; - // aapt resource value: 0x7F0E009F - public const int Base_Widget_AppCompat_EditText = 2131624095; + // aapt resource value: 0x7F0F009F + public const int Base_Widget_AppCompat_EditText = 2131689631; - // aapt resource value: 0x7F0E00A0 - public const int Base_Widget_AppCompat_ImageButton = 2131624096; + // aapt resource value: 0x7F0F00A0 + public const int Base_Widget_AppCompat_ImageButton = 2131689632; - // aapt resource value: 0x7F0E00A1 - public const int Base_Widget_AppCompat_Light_ActionBar = 2131624097; + // aapt resource value: 0x7F0F00A1 + public const int Base_Widget_AppCompat_Light_ActionBar = 2131689633; - // aapt resource value: 0x7F0E00A2 - public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131624098; + // aapt resource value: 0x7F0F00A2 + public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131689634; - // aapt resource value: 0x7F0E00A3 - public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131624099; + // aapt resource value: 0x7F0F00A3 + public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131689635; - // aapt resource value: 0x7F0E00A4 - public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131624100; + // aapt resource value: 0x7F0F00A4 + public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131689636; - // aapt resource value: 0x7F0E00A5 - public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131624101; + // aapt resource value: 0x7F0F00A5 + public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131689637; - // aapt resource value: 0x7F0E00A6 - public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131624102; + // aapt resource value: 0x7F0F00A6 + public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131689638; - // aapt resource value: 0x7F0E00A7 - public const int Base_Widget_AppCompat_Light_PopupMenu = 2131624103; + // aapt resource value: 0x7F0F00A7 + public const int Base_Widget_AppCompat_Light_PopupMenu = 2131689639; - // aapt resource value: 0x7F0E00A8 - public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131624104; + // aapt resource value: 0x7F0F00A8 + public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131689640; - // aapt resource value: 0x7F0E00A9 - public const int Base_Widget_AppCompat_ListMenuView = 2131624105; + // aapt resource value: 0x7F0F00A9 + public const int Base_Widget_AppCompat_ListMenuView = 2131689641; - // aapt resource value: 0x7F0E00AA - public const int Base_Widget_AppCompat_ListPopupWindow = 2131624106; + // aapt resource value: 0x7F0F00AA + public const int Base_Widget_AppCompat_ListPopupWindow = 2131689642; - // aapt resource value: 0x7F0E00AB - public const int Base_Widget_AppCompat_ListView = 2131624107; + // aapt resource value: 0x7F0F00AB + public const int Base_Widget_AppCompat_ListView = 2131689643; - // aapt resource value: 0x7F0E00AC - public const int Base_Widget_AppCompat_ListView_DropDown = 2131624108; + // aapt resource value: 0x7F0F00AC + public const int Base_Widget_AppCompat_ListView_DropDown = 2131689644; - // aapt resource value: 0x7F0E00AD - public const int Base_Widget_AppCompat_ListView_Menu = 2131624109; + // aapt resource value: 0x7F0F00AD + public const int Base_Widget_AppCompat_ListView_Menu = 2131689645; - // aapt resource value: 0x7F0E00AE - public const int Base_Widget_AppCompat_PopupMenu = 2131624110; + // aapt resource value: 0x7F0F00AE + public const int Base_Widget_AppCompat_PopupMenu = 2131689646; - // aapt resource value: 0x7F0E00AF - public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131624111; + // aapt resource value: 0x7F0F00AF + public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131689647; - // aapt resource value: 0x7F0E00B0 - public const int Base_Widget_AppCompat_PopupWindow = 2131624112; + // aapt resource value: 0x7F0F00B0 + public const int Base_Widget_AppCompat_PopupWindow = 2131689648; - // aapt resource value: 0x7F0E00B1 - public const int Base_Widget_AppCompat_ProgressBar = 2131624113; + // aapt resource value: 0x7F0F00B1 + public const int Base_Widget_AppCompat_ProgressBar = 2131689649; - // aapt resource value: 0x7F0E00B2 - public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131624114; + // aapt resource value: 0x7F0F00B2 + public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131689650; - // aapt resource value: 0x7F0E00B3 - public const int Base_Widget_AppCompat_RatingBar = 2131624115; + // aapt resource value: 0x7F0F00B3 + public const int Base_Widget_AppCompat_RatingBar = 2131689651; - // aapt resource value: 0x7F0E00B4 - public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131624116; + // aapt resource value: 0x7F0F00B4 + public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131689652; - // aapt resource value: 0x7F0E00B5 - public const int Base_Widget_AppCompat_RatingBar_Small = 2131624117; + // aapt resource value: 0x7F0F00B5 + public const int Base_Widget_AppCompat_RatingBar_Small = 2131689653; - // aapt resource value: 0x7F0E00B6 - public const int Base_Widget_AppCompat_SearchView = 2131624118; + // aapt resource value: 0x7F0F00B6 + public const int Base_Widget_AppCompat_SearchView = 2131689654; - // aapt resource value: 0x7F0E00B7 - public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131624119; + // aapt resource value: 0x7F0F00B7 + public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131689655; - // aapt resource value: 0x7F0E00B8 - public const int Base_Widget_AppCompat_SeekBar = 2131624120; + // aapt resource value: 0x7F0F00B8 + public const int Base_Widget_AppCompat_SeekBar = 2131689656; - // aapt resource value: 0x7F0E00B9 - public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131624121; + // aapt resource value: 0x7F0F00B9 + public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131689657; - // aapt resource value: 0x7F0E00BA - public const int Base_Widget_AppCompat_Spinner = 2131624122; + // aapt resource value: 0x7F0F00BA + public const int Base_Widget_AppCompat_Spinner = 2131689658; - // aapt resource value: 0x7F0E00BB - public const int Base_Widget_AppCompat_Spinner_Underlined = 2131624123; + // aapt resource value: 0x7F0F00BB + public const int Base_Widget_AppCompat_Spinner_Underlined = 2131689659; - // aapt resource value: 0x7F0E00BC - public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131624124; + // aapt resource value: 0x7F0F00BC + public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131689660; - // aapt resource value: 0x7F0E00BD - public const int Base_Widget_AppCompat_Toolbar = 2131624125; + // aapt resource value: 0x7F0F00BD + public const int Base_Widget_AppCompat_Toolbar = 2131689661; - // aapt resource value: 0x7F0E00BE - public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131624126; + // aapt resource value: 0x7F0F00BE + public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131689662; - // aapt resource value: 0x7F0E00BF - public const int Base_Widget_Design_TabLayout = 2131624127; + // aapt resource value: 0x7F0F00BF + public const int Base_Widget_Design_TabLayout = 2131689663; - // aapt resource value: 0x7F0E00C0 - public const int Base_Widget_MaterialComponents_Chip = 2131624128; + // aapt resource value: 0x7F0F00C0 + public const int Base_Widget_MaterialComponents_Chip = 2131689664; - // aapt resource value: 0x7F0E00C1 - public const int Base_Widget_MaterialComponents_TextInputEditText = 2131624129; + // aapt resource value: 0x7F0F00C1 + public const int Base_Widget_MaterialComponents_TextInputEditText = 2131689665; - // aapt resource value: 0x7F0E00C2 - public const int Base_Widget_MaterialComponents_TextInputLayout = 2131624130; + // aapt resource value: 0x7F0F00C2 + public const int Base_Widget_MaterialComponents_TextInputLayout = 2131689666; - // aapt resource value: 0x7F0E00C3 - public const int CardView = 2131624131; + // aapt resource value: 0x7F0F00C3 + public const int CardView = 2131689667; - // aapt resource value: 0x7F0E00C4 - public const int CardView_Dark = 2131624132; + // aapt resource value: 0x7F0F00C4 + public const int CardView_Dark = 2131689668; - // aapt resource value: 0x7F0E00C5 - public const int CardView_Light = 2131624133; + // aapt resource value: 0x7F0F00C5 + public const int CardView_Light = 2131689669; - // aapt resource value: 0x7F0E01F8 - public const int collectionViewStyle = 2131624440; + // aapt resource value: 0x7F0F01F8 + public const int collectionViewStyle = 2131689976; - // aapt resource value: 0x7F0E00C6 - public const int MainTheme = 2131624134; + // aapt resource value: 0x7F0F00C6 + public const int MainTheme = 2131689670; - // aapt resource value: 0x7F0E00C7 - public const int MainTheme_Base = 2131624135; + // aapt resource value: 0x7F0F00C7 + public const int MainTheme_Base = 2131689671; - // aapt resource value: 0x7F0E00C8 - public const int NestedScrollBarStyle = 2131624136; + // aapt resource value: 0x7F0F00C8 + public const int NestedScrollBarStyle = 2131689672; - // aapt resource value: 0x7F0E00C9 - public const int Platform_AppCompat = 2131624137; + // aapt resource value: 0x7F0F00C9 + public const int Platform_AppCompat = 2131689673; - // aapt resource value: 0x7F0E00CA - public const int Platform_AppCompat_Light = 2131624138; + // aapt resource value: 0x7F0F00CA + public const int Platform_AppCompat_Light = 2131689674; - // aapt resource value: 0x7F0E00CB - public const int Platform_MaterialComponents = 2131624139; + // aapt resource value: 0x7F0F00CB + public const int Platform_MaterialComponents = 2131689675; - // aapt resource value: 0x7F0E00CC - public const int Platform_MaterialComponents_Dialog = 2131624140; + // aapt resource value: 0x7F0F00CC + public const int Platform_MaterialComponents_Dialog = 2131689676; - // aapt resource value: 0x7F0E00CD - public const int Platform_MaterialComponents_Light = 2131624141; + // aapt resource value: 0x7F0F00CD + public const int Platform_MaterialComponents_Light = 2131689677; - // aapt resource value: 0x7F0E00CE - public const int Platform_MaterialComponents_Light_Dialog = 2131624142; + // aapt resource value: 0x7F0F00CE + public const int Platform_MaterialComponents_Light_Dialog = 2131689678; - // aapt resource value: 0x7F0E00CF - public const int Platform_ThemeOverlay_AppCompat = 2131624143; + // aapt resource value: 0x7F0F00CF + public const int Platform_ThemeOverlay_AppCompat = 2131689679; - // aapt resource value: 0x7F0E00D0 - public const int Platform_ThemeOverlay_AppCompat_Dark = 2131624144; + // aapt resource value: 0x7F0F00D0 + public const int Platform_ThemeOverlay_AppCompat_Dark = 2131689680; - // aapt resource value: 0x7F0E00D1 - public const int Platform_ThemeOverlay_AppCompat_Light = 2131624145; + // aapt resource value: 0x7F0F00D1 + public const int Platform_ThemeOverlay_AppCompat_Light = 2131689681; - // aapt resource value: 0x7F0E00D2 - public const int Platform_V21_AppCompat = 2131624146; + // aapt resource value: 0x7F0F00D2 + public const int Platform_V21_AppCompat = 2131689682; - // aapt resource value: 0x7F0E00D3 - public const int Platform_V21_AppCompat_Light = 2131624147; + // aapt resource value: 0x7F0F00D3 + public const int Platform_V21_AppCompat_Light = 2131689683; - // aapt resource value: 0x7F0E00D4 - public const int Platform_V25_AppCompat = 2131624148; + // aapt resource value: 0x7F0F00D4 + public const int Platform_V25_AppCompat = 2131689684; - // aapt resource value: 0x7F0E00D5 - public const int Platform_V25_AppCompat_Light = 2131624149; + // aapt resource value: 0x7F0F00D5 + public const int Platform_V25_AppCompat_Light = 2131689685; - // aapt resource value: 0x7F0E00D6 - public const int Platform_Widget_AppCompat_Spinner = 2131624150; + // aapt resource value: 0x7F0F00D6 + public const int Platform_Widget_AppCompat_Spinner = 2131689686; - // aapt resource value: 0x7F0E00D7 - public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131624151; + // aapt resource value: 0x7F0F00D7 + public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131689687; - // aapt resource value: 0x7F0E00D8 - public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131624152; + // aapt resource value: 0x7F0F00D8 + public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131689688; - // aapt resource value: 0x7F0E00D9 - public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131624153; + // aapt resource value: 0x7F0F00D9 + public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131689689; - // aapt resource value: 0x7F0E00DA - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131624154; + // aapt resource value: 0x7F0F00DA + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131689690; - // aapt resource value: 0x7F0E00DB - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131624155; + // aapt resource value: 0x7F0F00DB + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131689691; - // aapt resource value: 0x7F0E00DC - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131624156; + // aapt resource value: 0x7F0F00DC + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131689692; - // aapt resource value: 0x7F0E00DD - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131624157; + // aapt resource value: 0x7F0F00DD + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131689693; - // aapt resource value: 0x7F0E00DE - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131624158; + // aapt resource value: 0x7F0F00DE + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131689694; - // aapt resource value: 0x7F0E00DF - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131624159; + // aapt resource value: 0x7F0F00DF + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131689695; - // aapt resource value: 0x7F0E00E5 - public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131624165; + // aapt resource value: 0x7F0F00E5 + public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131689701; - // aapt resource value: 0x7F0E00E0 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131624160; + // aapt resource value: 0x7F0F00E0 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131689696; - // aapt resource value: 0x7F0E00E1 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131624161; + // aapt resource value: 0x7F0F00E1 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131689697; - // aapt resource value: 0x7F0E00E2 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131624162; + // aapt resource value: 0x7F0F00E2 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131689698; - // aapt resource value: 0x7F0E00E3 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131624163; + // aapt resource value: 0x7F0F00E3 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131689699; - // aapt resource value: 0x7F0E00E4 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131624164; + // aapt resource value: 0x7F0F00E4 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131689700; - // aapt resource value: 0x7F0E00E6 - public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131624166; + // aapt resource value: 0x7F0F00E6 + public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131689702; - // aapt resource value: 0x7F0E00E7 - public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131624167; + // aapt resource value: 0x7F0F00E7 + public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131689703; - // aapt resource value: 0x7F0E00E8 - public const int TextAppearance_AppCompat = 2131624168; + // aapt resource value: 0x7F0F00E8 + public const int TextAppearance_AppCompat = 2131689704; - // aapt resource value: 0x7F0E00E9 - public const int TextAppearance_AppCompat_Body1 = 2131624169; + // aapt resource value: 0x7F0F00E9 + public const int TextAppearance_AppCompat_Body1 = 2131689705; - // aapt resource value: 0x7F0E00EA - public const int TextAppearance_AppCompat_Body2 = 2131624170; + // aapt resource value: 0x7F0F00EA + public const int TextAppearance_AppCompat_Body2 = 2131689706; - // aapt resource value: 0x7F0E00EB - public const int TextAppearance_AppCompat_Button = 2131624171; + // aapt resource value: 0x7F0F00EB + public const int TextAppearance_AppCompat_Button = 2131689707; - // aapt resource value: 0x7F0E00EC - public const int TextAppearance_AppCompat_Caption = 2131624172; + // aapt resource value: 0x7F0F00EC + public const int TextAppearance_AppCompat_Caption = 2131689708; - // aapt resource value: 0x7F0E00ED - public const int TextAppearance_AppCompat_Display1 = 2131624173; + // aapt resource value: 0x7F0F00ED + public const int TextAppearance_AppCompat_Display1 = 2131689709; - // aapt resource value: 0x7F0E00EE - public const int TextAppearance_AppCompat_Display2 = 2131624174; + // aapt resource value: 0x7F0F00EE + public const int TextAppearance_AppCompat_Display2 = 2131689710; - // aapt resource value: 0x7F0E00EF - public const int TextAppearance_AppCompat_Display3 = 2131624175; + // aapt resource value: 0x7F0F00EF + public const int TextAppearance_AppCompat_Display3 = 2131689711; - // aapt resource value: 0x7F0E00F0 - public const int TextAppearance_AppCompat_Display4 = 2131624176; + // aapt resource value: 0x7F0F00F0 + public const int TextAppearance_AppCompat_Display4 = 2131689712; - // aapt resource value: 0x7F0E00F1 - public const int TextAppearance_AppCompat_Headline = 2131624177; + // aapt resource value: 0x7F0F00F1 + public const int TextAppearance_AppCompat_Headline = 2131689713; - // aapt resource value: 0x7F0E00F2 - public const int TextAppearance_AppCompat_Inverse = 2131624178; + // aapt resource value: 0x7F0F00F2 + public const int TextAppearance_AppCompat_Inverse = 2131689714; - // aapt resource value: 0x7F0E00F3 - public const int TextAppearance_AppCompat_Large = 2131624179; + // aapt resource value: 0x7F0F00F3 + public const int TextAppearance_AppCompat_Large = 2131689715; - // aapt resource value: 0x7F0E00F4 - public const int TextAppearance_AppCompat_Large_Inverse = 2131624180; + // aapt resource value: 0x7F0F00F4 + public const int TextAppearance_AppCompat_Large_Inverse = 2131689716; - // aapt resource value: 0x7F0E00F5 - public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131624181; + // aapt resource value: 0x7F0F00F5 + public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131689717; - // aapt resource value: 0x7F0E00F6 - public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131624182; + // aapt resource value: 0x7F0F00F6 + public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131689718; - // aapt resource value: 0x7F0E00F7 - public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131624183; + // aapt resource value: 0x7F0F00F7 + public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131689719; - // aapt resource value: 0x7F0E00F8 - public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131624184; + // aapt resource value: 0x7F0F00F8 + public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131689720; - // aapt resource value: 0x7F0E00F9 - public const int TextAppearance_AppCompat_Medium = 2131624185; + // aapt resource value: 0x7F0F00F9 + public const int TextAppearance_AppCompat_Medium = 2131689721; - // aapt resource value: 0x7F0E00FA - public const int TextAppearance_AppCompat_Medium_Inverse = 2131624186; + // aapt resource value: 0x7F0F00FA + public const int TextAppearance_AppCompat_Medium_Inverse = 2131689722; - // aapt resource value: 0x7F0E00FB - public const int TextAppearance_AppCompat_Menu = 2131624187; + // aapt resource value: 0x7F0F00FB + public const int TextAppearance_AppCompat_Menu = 2131689723; - // aapt resource value: 0x7F0E00FC - public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131624188; + // aapt resource value: 0x7F0F00FC + public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131689724; - // aapt resource value: 0x7F0E00FD - public const int TextAppearance_AppCompat_SearchResult_Title = 2131624189; + // aapt resource value: 0x7F0F00FD + public const int TextAppearance_AppCompat_SearchResult_Title = 2131689725; - // aapt resource value: 0x7F0E00FE - public const int TextAppearance_AppCompat_Small = 2131624190; + // aapt resource value: 0x7F0F00FE + public const int TextAppearance_AppCompat_Small = 2131689726; - // aapt resource value: 0x7F0E00FF - public const int TextAppearance_AppCompat_Small_Inverse = 2131624191; + // aapt resource value: 0x7F0F00FF + public const int TextAppearance_AppCompat_Small_Inverse = 2131689727; - // aapt resource value: 0x7F0E0100 - public const int TextAppearance_AppCompat_Subhead = 2131624192; + // aapt resource value: 0x7F0F0100 + public const int TextAppearance_AppCompat_Subhead = 2131689728; - // aapt resource value: 0x7F0E0101 - public const int TextAppearance_AppCompat_Subhead_Inverse = 2131624193; + // aapt resource value: 0x7F0F0101 + public const int TextAppearance_AppCompat_Subhead_Inverse = 2131689729; - // aapt resource value: 0x7F0E0102 - public const int TextAppearance_AppCompat_Title = 2131624194; + // aapt resource value: 0x7F0F0102 + public const int TextAppearance_AppCompat_Title = 2131689730; - // aapt resource value: 0x7F0E0103 - public const int TextAppearance_AppCompat_Title_Inverse = 2131624195; + // aapt resource value: 0x7F0F0103 + public const int TextAppearance_AppCompat_Title_Inverse = 2131689731; - // aapt resource value: 0x7F0E0104 - public const int TextAppearance_AppCompat_Tooltip = 2131624196; + // aapt resource value: 0x7F0F0104 + public const int TextAppearance_AppCompat_Tooltip = 2131689732; - // aapt resource value: 0x7F0E0105 - public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131624197; + // aapt resource value: 0x7F0F0105 + public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131689733; - // aapt resource value: 0x7F0E0106 - public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131624198; + // aapt resource value: 0x7F0F0106 + public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131689734; - // aapt resource value: 0x7F0E0107 - public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131624199; + // aapt resource value: 0x7F0F0107 + public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131689735; - // aapt resource value: 0x7F0E0108 - public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131624200; + // aapt resource value: 0x7F0F0108 + public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131689736; - // aapt resource value: 0x7F0E0109 - public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131624201; + // aapt resource value: 0x7F0F0109 + public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131689737; - // aapt resource value: 0x7F0E010A - public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131624202; + // aapt resource value: 0x7F0F010A + public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131689738; - // aapt resource value: 0x7F0E010B - public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131624203; + // aapt resource value: 0x7F0F010B + public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131689739; - // aapt resource value: 0x7F0E010C - public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131624204; + // aapt resource value: 0x7F0F010C + public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131689740; - // aapt resource value: 0x7F0E010D - public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131624205; + // aapt resource value: 0x7F0F010D + public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131689741; - // aapt resource value: 0x7F0E010E - public const int TextAppearance_AppCompat_Widget_Button = 2131624206; + // aapt resource value: 0x7F0F010E + public const int TextAppearance_AppCompat_Widget_Button = 2131689742; - // aapt resource value: 0x7F0E010F - public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131624207; + // aapt resource value: 0x7F0F010F + public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131689743; - // aapt resource value: 0x7F0E0110 - public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131624208; + // aapt resource value: 0x7F0F0110 + public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131689744; - // aapt resource value: 0x7F0E0111 - public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131624209; + // aapt resource value: 0x7F0F0111 + public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131689745; - // aapt resource value: 0x7F0E0112 - public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131624210; + // aapt resource value: 0x7F0F0112 + public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131689746; - // aapt resource value: 0x7F0E0113 - public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131624211; + // aapt resource value: 0x7F0F0113 + public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131689747; - // aapt resource value: 0x7F0E0114 - public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131624212; + // aapt resource value: 0x7F0F0114 + public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131689748; - // aapt resource value: 0x7F0E0115 - public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131624213; + // aapt resource value: 0x7F0F0115 + public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131689749; - // aapt resource value: 0x7F0E0116 - public const int TextAppearance_AppCompat_Widget_Switch = 2131624214; + // aapt resource value: 0x7F0F0116 + public const int TextAppearance_AppCompat_Widget_Switch = 2131689750; - // aapt resource value: 0x7F0E0117 - public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131624215; + // aapt resource value: 0x7F0F0117 + public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131689751; - // aapt resource value: 0x7F0E0118 - public const int TextAppearance_Compat_Notification = 2131624216; + // aapt resource value: 0x7F0F0118 + public const int TextAppearance_Compat_Notification = 2131689752; - // aapt resource value: 0x7F0E0119 - public const int TextAppearance_Compat_Notification_Info = 2131624217; + // aapt resource value: 0x7F0F0119 + public const int TextAppearance_Compat_Notification_Info = 2131689753; - // aapt resource value: 0x7F0E011A - public const int TextAppearance_Compat_Notification_Info_Media = 2131624218; + // aapt resource value: 0x7F0F011A + public const int TextAppearance_Compat_Notification_Info_Media = 2131689754; - // aapt resource value: 0x7F0E011B - public const int TextAppearance_Compat_Notification_Line2 = 2131624219; + // aapt resource value: 0x7F0F011B + public const int TextAppearance_Compat_Notification_Line2 = 2131689755; - // aapt resource value: 0x7F0E011C - public const int TextAppearance_Compat_Notification_Line2_Media = 2131624220; + // aapt resource value: 0x7F0F011C + public const int TextAppearance_Compat_Notification_Line2_Media = 2131689756; - // aapt resource value: 0x7F0E011D - public const int TextAppearance_Compat_Notification_Media = 2131624221; + // aapt resource value: 0x7F0F011D + public const int TextAppearance_Compat_Notification_Media = 2131689757; - // aapt resource value: 0x7F0E011E - public const int TextAppearance_Compat_Notification_Time = 2131624222; + // aapt resource value: 0x7F0F011E + public const int TextAppearance_Compat_Notification_Time = 2131689758; - // aapt resource value: 0x7F0E011F - public const int TextAppearance_Compat_Notification_Time_Media = 2131624223; + // aapt resource value: 0x7F0F011F + public const int TextAppearance_Compat_Notification_Time_Media = 2131689759; - // aapt resource value: 0x7F0E0120 - public const int TextAppearance_Compat_Notification_Title = 2131624224; + // aapt resource value: 0x7F0F0120 + public const int TextAppearance_Compat_Notification_Title = 2131689760; - // aapt resource value: 0x7F0E0121 - public const int TextAppearance_Compat_Notification_Title_Media = 2131624225; + // aapt resource value: 0x7F0F0121 + public const int TextAppearance_Compat_Notification_Title_Media = 2131689761; - // aapt resource value: 0x7F0E0122 - public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131624226; + // aapt resource value: 0x7F0F0122 + public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131689762; - // aapt resource value: 0x7F0E0123 - public const int TextAppearance_Design_Counter = 2131624227; + // aapt resource value: 0x7F0F0123 + public const int TextAppearance_Design_Counter = 2131689763; - // aapt resource value: 0x7F0E0124 - public const int TextAppearance_Design_Counter_Overflow = 2131624228; + // aapt resource value: 0x7F0F0124 + public const int TextAppearance_Design_Counter_Overflow = 2131689764; - // aapt resource value: 0x7F0E0125 - public const int TextAppearance_Design_Error = 2131624229; + // aapt resource value: 0x7F0F0125 + public const int TextAppearance_Design_Error = 2131689765; - // aapt resource value: 0x7F0E0126 - public const int TextAppearance_Design_HelperText = 2131624230; + // aapt resource value: 0x7F0F0126 + public const int TextAppearance_Design_HelperText = 2131689766; - // aapt resource value: 0x7F0E0127 - public const int TextAppearance_Design_Hint = 2131624231; + // aapt resource value: 0x7F0F0127 + public const int TextAppearance_Design_Hint = 2131689767; - // aapt resource value: 0x7F0E0128 - public const int TextAppearance_Design_Snackbar_Message = 2131624232; + // aapt resource value: 0x7F0F0128 + public const int TextAppearance_Design_Snackbar_Message = 2131689768; - // aapt resource value: 0x7F0E0129 - public const int TextAppearance_Design_Tab = 2131624233; + // aapt resource value: 0x7F0F0129 + public const int TextAppearance_Design_Tab = 2131689769; - // aapt resource value: 0x7F0E012A - public const int TextAppearance_MaterialComponents_Body1 = 2131624234; + // aapt resource value: 0x7F0F012A + public const int TextAppearance_MaterialComponents_Body1 = 2131689770; - // aapt resource value: 0x7F0E012B - public const int TextAppearance_MaterialComponents_Body2 = 2131624235; + // aapt resource value: 0x7F0F012B + public const int TextAppearance_MaterialComponents_Body2 = 2131689771; - // aapt resource value: 0x7F0E012C - public const int TextAppearance_MaterialComponents_Button = 2131624236; + // aapt resource value: 0x7F0F012C + public const int TextAppearance_MaterialComponents_Button = 2131689772; - // aapt resource value: 0x7F0E012D - public const int TextAppearance_MaterialComponents_Caption = 2131624237; + // aapt resource value: 0x7F0F012D + public const int TextAppearance_MaterialComponents_Caption = 2131689773; - // aapt resource value: 0x7F0E012E - public const int TextAppearance_MaterialComponents_Chip = 2131624238; + // aapt resource value: 0x7F0F012E + public const int TextAppearance_MaterialComponents_Chip = 2131689774; - // aapt resource value: 0x7F0E012F - public const int TextAppearance_MaterialComponents_Headline1 = 2131624239; + // aapt resource value: 0x7F0F012F + public const int TextAppearance_MaterialComponents_Headline1 = 2131689775; - // aapt resource value: 0x7F0E0130 - public const int TextAppearance_MaterialComponents_Headline2 = 2131624240; + // aapt resource value: 0x7F0F0130 + public const int TextAppearance_MaterialComponents_Headline2 = 2131689776; - // aapt resource value: 0x7F0E0131 - public const int TextAppearance_MaterialComponents_Headline3 = 2131624241; + // aapt resource value: 0x7F0F0131 + public const int TextAppearance_MaterialComponents_Headline3 = 2131689777; - // aapt resource value: 0x7F0E0132 - public const int TextAppearance_MaterialComponents_Headline4 = 2131624242; + // aapt resource value: 0x7F0F0132 + public const int TextAppearance_MaterialComponents_Headline4 = 2131689778; - // aapt resource value: 0x7F0E0133 - public const int TextAppearance_MaterialComponents_Headline5 = 2131624243; + // aapt resource value: 0x7F0F0133 + public const int TextAppearance_MaterialComponents_Headline5 = 2131689779; - // aapt resource value: 0x7F0E0134 - public const int TextAppearance_MaterialComponents_Headline6 = 2131624244; + // aapt resource value: 0x7F0F0134 + public const int TextAppearance_MaterialComponents_Headline6 = 2131689780; - // aapt resource value: 0x7F0E0135 - public const int TextAppearance_MaterialComponents_Overline = 2131624245; + // aapt resource value: 0x7F0F0135 + public const int TextAppearance_MaterialComponents_Overline = 2131689781; - // aapt resource value: 0x7F0E0136 - public const int TextAppearance_MaterialComponents_Subtitle1 = 2131624246; + // aapt resource value: 0x7F0F0136 + public const int TextAppearance_MaterialComponents_Subtitle1 = 2131689782; - // aapt resource value: 0x7F0E0137 - public const int TextAppearance_MaterialComponents_Subtitle2 = 2131624247; + // aapt resource value: 0x7F0F0137 + public const int TextAppearance_MaterialComponents_Subtitle2 = 2131689783; - // aapt resource value: 0x7F0E0138 - public const int TextAppearance_MaterialComponents_Tab = 2131624248; + // aapt resource value: 0x7F0F0138 + public const int TextAppearance_MaterialComponents_Tab = 2131689784; - // aapt resource value: 0x7F0E0139 - public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131624249; + // aapt resource value: 0x7F0F0139 + public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131689785; - // aapt resource value: 0x7F0E013A - public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131624250; + // aapt resource value: 0x7F0F013A + public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131689786; - // aapt resource value: 0x7F0E013B - public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131624251; + // aapt resource value: 0x7F0F013B + public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131689787; - // aapt resource value: 0x7F0E016C - public const int ThemeOverlay_AppCompat = 2131624300; + // aapt resource value: 0x7F0F016C + public const int ThemeOverlay_AppCompat = 2131689836; - // aapt resource value: 0x7F0E016D - public const int ThemeOverlay_AppCompat_ActionBar = 2131624301; + // aapt resource value: 0x7F0F016D + public const int ThemeOverlay_AppCompat_ActionBar = 2131689837; - // aapt resource value: 0x7F0E016E - public const int ThemeOverlay_AppCompat_Dark = 2131624302; + // aapt resource value: 0x7F0F016E + public const int ThemeOverlay_AppCompat_Dark = 2131689838; - // aapt resource value: 0x7F0E016F - public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131624303; + // aapt resource value: 0x7F0F016F + public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131689839; - // aapt resource value: 0x7F0E0170 - public const int ThemeOverlay_AppCompat_Dialog = 2131624304; + // aapt resource value: 0x7F0F0170 + public const int ThemeOverlay_AppCompat_Dialog = 2131689840; - // aapt resource value: 0x7F0E0171 - public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131624305; + // aapt resource value: 0x7F0F0171 + public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131689841; - // aapt resource value: 0x7F0E0172 - public const int ThemeOverlay_AppCompat_Light = 2131624306; + // aapt resource value: 0x7F0F0172 + public const int ThemeOverlay_AppCompat_Light = 2131689842; - // aapt resource value: 0x7F0E0173 - public const int ThemeOverlay_MaterialComponents = 2131624307; + // aapt resource value: 0x7F0F0173 + public const int ThemeOverlay_MaterialComponents = 2131689843; - // aapt resource value: 0x7F0E0174 - public const int ThemeOverlay_MaterialComponents_ActionBar = 2131624308; + // aapt resource value: 0x7F0F0174 + public const int ThemeOverlay_MaterialComponents_ActionBar = 2131689844; - // aapt resource value: 0x7F0E0175 - public const int ThemeOverlay_MaterialComponents_Dark = 2131624309; + // aapt resource value: 0x7F0F0175 + public const int ThemeOverlay_MaterialComponents_Dark = 2131689845; - // aapt resource value: 0x7F0E0176 - public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131624310; + // aapt resource value: 0x7F0F0176 + public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131689846; - // aapt resource value: 0x7F0E0177 - public const int ThemeOverlay_MaterialComponents_Dialog = 2131624311; + // aapt resource value: 0x7F0F0177 + public const int ThemeOverlay_MaterialComponents_Dialog = 2131689847; - // aapt resource value: 0x7F0E0178 - public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131624312; + // aapt resource value: 0x7F0F0178 + public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131689848; - // aapt resource value: 0x7F0E0179 - public const int ThemeOverlay_MaterialComponents_Light = 2131624313; + // aapt resource value: 0x7F0F0179 + public const int ThemeOverlay_MaterialComponents_Light = 2131689849; - // aapt resource value: 0x7F0E017A - public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131624314; + // aapt resource value: 0x7F0F017A + public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131689850; - // aapt resource value: 0x7F0E017B - public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131624315; + // aapt resource value: 0x7F0F017B + public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131689851; - // aapt resource value: 0x7F0E017C - public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131624316; + // aapt resource value: 0x7F0F017C + public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131689852; - // aapt resource value: 0x7F0E017D - public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131624317; + // aapt resource value: 0x7F0F017D + public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131689853; - // aapt resource value: 0x7F0E017E - public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131624318; + // aapt resource value: 0x7F0F017E + public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131689854; - // aapt resource value: 0x7F0E013C - public const int Theme_AppCompat = 2131624252; + // aapt resource value: 0x7F0F013C + public const int Theme_AppCompat = 2131689788; - // aapt resource value: 0x7F0E013D - public const int Theme_AppCompat_CompactMenu = 2131624253; + // aapt resource value: 0x7F0F013D + public const int Theme_AppCompat_CompactMenu = 2131689789; - // aapt resource value: 0x7F0E013E - public const int Theme_AppCompat_DayNight = 2131624254; + // aapt resource value: 0x7F0F013E + public const int Theme_AppCompat_DayNight = 2131689790; - // aapt resource value: 0x7F0E013F - public const int Theme_AppCompat_DayNight_DarkActionBar = 2131624255; + // aapt resource value: 0x7F0F013F + public const int Theme_AppCompat_DayNight_DarkActionBar = 2131689791; - // aapt resource value: 0x7F0E0140 - public const int Theme_AppCompat_DayNight_Dialog = 2131624256; + // aapt resource value: 0x7F0F0140 + public const int Theme_AppCompat_DayNight_Dialog = 2131689792; - // aapt resource value: 0x7F0E0143 - public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131624259; + // aapt resource value: 0x7F0F0143 + public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131689795; - // aapt resource value: 0x7F0E0141 - public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131624257; + // aapt resource value: 0x7F0F0141 + public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131689793; - // aapt resource value: 0x7F0E0142 - public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131624258; + // aapt resource value: 0x7F0F0142 + public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131689794; - // aapt resource value: 0x7F0E0144 - public const int Theme_AppCompat_DayNight_NoActionBar = 2131624260; + // aapt resource value: 0x7F0F0144 + public const int Theme_AppCompat_DayNight_NoActionBar = 2131689796; - // aapt resource value: 0x7F0E0145 - public const int Theme_AppCompat_Dialog = 2131624261; + // aapt resource value: 0x7F0F0145 + public const int Theme_AppCompat_Dialog = 2131689797; - // aapt resource value: 0x7F0E0148 - public const int Theme_AppCompat_DialogWhenLarge = 2131624264; + // aapt resource value: 0x7F0F0148 + public const int Theme_AppCompat_DialogWhenLarge = 2131689800; - // aapt resource value: 0x7F0E0146 - public const int Theme_AppCompat_Dialog_Alert = 2131624262; + // aapt resource value: 0x7F0F0146 + public const int Theme_AppCompat_Dialog_Alert = 2131689798; - // aapt resource value: 0x7F0E0147 - public const int Theme_AppCompat_Dialog_MinWidth = 2131624263; + // aapt resource value: 0x7F0F0147 + public const int Theme_AppCompat_Dialog_MinWidth = 2131689799; - // aapt resource value: 0x7F0E0149 - public const int Theme_AppCompat_Light = 2131624265; + // aapt resource value: 0x7F0F0149 + public const int Theme_AppCompat_Light = 2131689801; - // aapt resource value: 0x7F0E014A - public const int Theme_AppCompat_Light_DarkActionBar = 2131624266; + // aapt resource value: 0x7F0F014A + public const int Theme_AppCompat_Light_DarkActionBar = 2131689802; - // aapt resource value: 0x7F0E014B - public const int Theme_AppCompat_Light_Dialog = 2131624267; + // aapt resource value: 0x7F0F014B + public const int Theme_AppCompat_Light_Dialog = 2131689803; - // aapt resource value: 0x7F0E014E - public const int Theme_AppCompat_Light_DialogWhenLarge = 2131624270; + // aapt resource value: 0x7F0F014E + public const int Theme_AppCompat_Light_DialogWhenLarge = 2131689806; - // aapt resource value: 0x7F0E014C - public const int Theme_AppCompat_Light_Dialog_Alert = 2131624268; + // aapt resource value: 0x7F0F014C + public const int Theme_AppCompat_Light_Dialog_Alert = 2131689804; - // aapt resource value: 0x7F0E014D - public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131624269; + // aapt resource value: 0x7F0F014D + public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131689805; - // aapt resource value: 0x7F0E014F - public const int Theme_AppCompat_Light_NoActionBar = 2131624271; + // aapt resource value: 0x7F0F014F + public const int Theme_AppCompat_Light_NoActionBar = 2131689807; - // aapt resource value: 0x7F0E0150 - public const int Theme_AppCompat_NoActionBar = 2131624272; + // aapt resource value: 0x7F0F0150 + public const int Theme_AppCompat_NoActionBar = 2131689808; - // aapt resource value: 0x7F0E0151 - public const int Theme_Design = 2131624273; + // aapt resource value: 0x7F0F0151 + public const int Theme_Design = 2131689809; - // aapt resource value: 0x7F0E0152 - public const int Theme_Design_BottomSheetDialog = 2131624274; + // aapt resource value: 0x7F0F0152 + public const int Theme_Design_BottomSheetDialog = 2131689810; - // aapt resource value: 0x7F0E0153 - public const int Theme_Design_Light = 2131624275; + // aapt resource value: 0x7F0F0153 + public const int Theme_Design_Light = 2131689811; - // aapt resource value: 0x7F0E0154 - public const int Theme_Design_Light_BottomSheetDialog = 2131624276; + // aapt resource value: 0x7F0F0154 + public const int Theme_Design_Light_BottomSheetDialog = 2131689812; - // aapt resource value: 0x7F0E0155 - public const int Theme_Design_Light_NoActionBar = 2131624277; + // aapt resource value: 0x7F0F0155 + public const int Theme_Design_Light_NoActionBar = 2131689813; - // aapt resource value: 0x7F0E0156 - public const int Theme_Design_NoActionBar = 2131624278; + // aapt resource value: 0x7F0F0156 + public const int Theme_Design_NoActionBar = 2131689814; - // aapt resource value: 0x7F0E0157 - public const int Theme_MaterialComponents = 2131624279; + // aapt resource value: 0x7F0F0157 + public const int Theme_MaterialComponents = 2131689815; - // aapt resource value: 0x7F0E0158 - public const int Theme_MaterialComponents_BottomSheetDialog = 2131624280; + // aapt resource value: 0x7F0F0158 + public const int Theme_MaterialComponents_BottomSheetDialog = 2131689816; - // aapt resource value: 0x7F0E0159 - public const int Theme_MaterialComponents_Bridge = 2131624281; + // aapt resource value: 0x7F0F0159 + public const int Theme_MaterialComponents_Bridge = 2131689817; - // aapt resource value: 0x7F0E015A - public const int Theme_MaterialComponents_CompactMenu = 2131624282; + // aapt resource value: 0x7F0F015A + public const int Theme_MaterialComponents_CompactMenu = 2131689818; - // aapt resource value: 0x7F0E015B - public const int Theme_MaterialComponents_Dialog = 2131624283; + // aapt resource value: 0x7F0F015B + public const int Theme_MaterialComponents_Dialog = 2131689819; - // aapt resource value: 0x7F0E015E - public const int Theme_MaterialComponents_DialogWhenLarge = 2131624286; + // aapt resource value: 0x7F0F015E + public const int Theme_MaterialComponents_DialogWhenLarge = 2131689822; - // aapt resource value: 0x7F0E015C - public const int Theme_MaterialComponents_Dialog_Alert = 2131624284; + // aapt resource value: 0x7F0F015C + public const int Theme_MaterialComponents_Dialog_Alert = 2131689820; - // aapt resource value: 0x7F0E015D - public const int Theme_MaterialComponents_Dialog_MinWidth = 2131624285; + // aapt resource value: 0x7F0F015D + public const int Theme_MaterialComponents_Dialog_MinWidth = 2131689821; - // aapt resource value: 0x7F0E015F - public const int Theme_MaterialComponents_Light = 2131624287; + // aapt resource value: 0x7F0F015F + public const int Theme_MaterialComponents_Light = 2131689823; - // aapt resource value: 0x7F0E0160 - public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131624288; + // aapt resource value: 0x7F0F0160 + public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131689824; - // aapt resource value: 0x7F0E0161 - public const int Theme_MaterialComponents_Light_Bridge = 2131624289; + // aapt resource value: 0x7F0F0161 + public const int Theme_MaterialComponents_Light_Bridge = 2131689825; - // aapt resource value: 0x7F0E0162 - public const int Theme_MaterialComponents_Light_DarkActionBar = 2131624290; + // aapt resource value: 0x7F0F0162 + public const int Theme_MaterialComponents_Light_DarkActionBar = 2131689826; - // aapt resource value: 0x7F0E0163 - public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131624291; + // aapt resource value: 0x7F0F0163 + public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131689827; - // aapt resource value: 0x7F0E0164 - public const int Theme_MaterialComponents_Light_Dialog = 2131624292; + // aapt resource value: 0x7F0F0164 + public const int Theme_MaterialComponents_Light_Dialog = 2131689828; - // aapt resource value: 0x7F0E0167 - public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131624295; + // aapt resource value: 0x7F0F0167 + public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131689831; - // aapt resource value: 0x7F0E0165 - public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131624293; + // aapt resource value: 0x7F0F0165 + public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131689829; - // aapt resource value: 0x7F0E0166 - public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131624294; + // aapt resource value: 0x7F0F0166 + public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131689830; - // aapt resource value: 0x7F0E0168 - public const int Theme_MaterialComponents_Light_NoActionBar = 2131624296; + // aapt resource value: 0x7F0F0168 + public const int Theme_MaterialComponents_Light_NoActionBar = 2131689832; - // aapt resource value: 0x7F0E0169 - public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131624297; + // aapt resource value: 0x7F0F0169 + public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131689833; - // aapt resource value: 0x7F0E016A - public const int Theme_MaterialComponents_NoActionBar = 2131624298; + // aapt resource value: 0x7F0F016A + public const int Theme_MaterialComponents_NoActionBar = 2131689834; - // aapt resource value: 0x7F0E016B - public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131624299; + // aapt resource value: 0x7F0F016B + public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131689835; - // aapt resource value: 0x7F0E017F - public const int Widget_AppCompat_ActionBar = 2131624319; + // aapt resource value: 0x7F0F017F + public const int Widget_AppCompat_ActionBar = 2131689855; - // aapt resource value: 0x7F0E0180 - public const int Widget_AppCompat_ActionBar_Solid = 2131624320; + // aapt resource value: 0x7F0F0180 + public const int Widget_AppCompat_ActionBar_Solid = 2131689856; - // aapt resource value: 0x7F0E0181 - public const int Widget_AppCompat_ActionBar_TabBar = 2131624321; + // aapt resource value: 0x7F0F0181 + public const int Widget_AppCompat_ActionBar_TabBar = 2131689857; - // aapt resource value: 0x7F0E0182 - public const int Widget_AppCompat_ActionBar_TabText = 2131624322; + // aapt resource value: 0x7F0F0182 + public const int Widget_AppCompat_ActionBar_TabText = 2131689858; - // aapt resource value: 0x7F0E0183 - public const int Widget_AppCompat_ActionBar_TabView = 2131624323; + // aapt resource value: 0x7F0F0183 + public const int Widget_AppCompat_ActionBar_TabView = 2131689859; - // aapt resource value: 0x7F0E0184 - public const int Widget_AppCompat_ActionButton = 2131624324; + // aapt resource value: 0x7F0F0184 + public const int Widget_AppCompat_ActionButton = 2131689860; - // aapt resource value: 0x7F0E0185 - public const int Widget_AppCompat_ActionButton_CloseMode = 2131624325; + // aapt resource value: 0x7F0F0185 + public const int Widget_AppCompat_ActionButton_CloseMode = 2131689861; - // aapt resource value: 0x7F0E0186 - public const int Widget_AppCompat_ActionButton_Overflow = 2131624326; + // aapt resource value: 0x7F0F0186 + public const int Widget_AppCompat_ActionButton_Overflow = 2131689862; - // aapt resource value: 0x7F0E0187 - public const int Widget_AppCompat_ActionMode = 2131624327; + // aapt resource value: 0x7F0F0187 + public const int Widget_AppCompat_ActionMode = 2131689863; - // aapt resource value: 0x7F0E0188 - public const int Widget_AppCompat_ActivityChooserView = 2131624328; + // aapt resource value: 0x7F0F0188 + public const int Widget_AppCompat_ActivityChooserView = 2131689864; - // aapt resource value: 0x7F0E0189 - public const int Widget_AppCompat_AutoCompleteTextView = 2131624329; + // aapt resource value: 0x7F0F0189 + public const int Widget_AppCompat_AutoCompleteTextView = 2131689865; - // aapt resource value: 0x7F0E018A - public const int Widget_AppCompat_Button = 2131624330; + // aapt resource value: 0x7F0F018A + public const int Widget_AppCompat_Button = 2131689866; - // aapt resource value: 0x7F0E0190 - public const int Widget_AppCompat_ButtonBar = 2131624336; + // aapt resource value: 0x7F0F0190 + public const int Widget_AppCompat_ButtonBar = 2131689872; - // aapt resource value: 0x7F0E0191 - public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131624337; + // aapt resource value: 0x7F0F0191 + public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131689873; - // aapt resource value: 0x7F0E018B - public const int Widget_AppCompat_Button_Borderless = 2131624331; + // aapt resource value: 0x7F0F018B + public const int Widget_AppCompat_Button_Borderless = 2131689867; - // aapt resource value: 0x7F0E018C - public const int Widget_AppCompat_Button_Borderless_Colored = 2131624332; + // aapt resource value: 0x7F0F018C + public const int Widget_AppCompat_Button_Borderless_Colored = 2131689868; - // aapt resource value: 0x7F0E018D - public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131624333; + // aapt resource value: 0x7F0F018D + public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131689869; - // aapt resource value: 0x7F0E018E - public const int Widget_AppCompat_Button_Colored = 2131624334; + // aapt resource value: 0x7F0F018E + public const int Widget_AppCompat_Button_Colored = 2131689870; - // aapt resource value: 0x7F0E018F - public const int Widget_AppCompat_Button_Small = 2131624335; + // aapt resource value: 0x7F0F018F + public const int Widget_AppCompat_Button_Small = 2131689871; - // aapt resource value: 0x7F0E0192 - public const int Widget_AppCompat_CompoundButton_CheckBox = 2131624338; + // aapt resource value: 0x7F0F0192 + public const int Widget_AppCompat_CompoundButton_CheckBox = 2131689874; - // aapt resource value: 0x7F0E0193 - public const int Widget_AppCompat_CompoundButton_RadioButton = 2131624339; + // aapt resource value: 0x7F0F0193 + public const int Widget_AppCompat_CompoundButton_RadioButton = 2131689875; - // aapt resource value: 0x7F0E0194 - public const int Widget_AppCompat_CompoundButton_Switch = 2131624340; + // aapt resource value: 0x7F0F0194 + public const int Widget_AppCompat_CompoundButton_Switch = 2131689876; - // aapt resource value: 0x7F0E0195 - public const int Widget_AppCompat_DrawerArrowToggle = 2131624341; + // aapt resource value: 0x7F0F0195 + public const int Widget_AppCompat_DrawerArrowToggle = 2131689877; - // aapt resource value: 0x7F0E0196 - public const int Widget_AppCompat_DropDownItem_Spinner = 2131624342; + // aapt resource value: 0x7F0F0196 + public const int Widget_AppCompat_DropDownItem_Spinner = 2131689878; - // aapt resource value: 0x7F0E0197 - public const int Widget_AppCompat_EditText = 2131624343; + // aapt resource value: 0x7F0F0197 + public const int Widget_AppCompat_EditText = 2131689879; - // aapt resource value: 0x7F0E0198 - public const int Widget_AppCompat_ImageButton = 2131624344; + // aapt resource value: 0x7F0F0198 + public const int Widget_AppCompat_ImageButton = 2131689880; - // aapt resource value: 0x7F0E0199 - public const int Widget_AppCompat_Light_ActionBar = 2131624345; + // aapt resource value: 0x7F0F0199 + public const int Widget_AppCompat_Light_ActionBar = 2131689881; - // aapt resource value: 0x7F0E019A - public const int Widget_AppCompat_Light_ActionBar_Solid = 2131624346; + // aapt resource value: 0x7F0F019A + public const int Widget_AppCompat_Light_ActionBar_Solid = 2131689882; - // aapt resource value: 0x7F0E019B - public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131624347; + // aapt resource value: 0x7F0F019B + public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131689883; - // aapt resource value: 0x7F0E019C - public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131624348; + // aapt resource value: 0x7F0F019C + public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131689884; - // aapt resource value: 0x7F0E019D - public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131624349; + // aapt resource value: 0x7F0F019D + public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131689885; - // aapt resource value: 0x7F0E019E - public const int Widget_AppCompat_Light_ActionBar_TabText = 2131624350; + // aapt resource value: 0x7F0F019E + public const int Widget_AppCompat_Light_ActionBar_TabText = 2131689886; - // aapt resource value: 0x7F0E019F - public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131624351; + // aapt resource value: 0x7F0F019F + public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131689887; - // aapt resource value: 0x7F0E01A0 - public const int Widget_AppCompat_Light_ActionBar_TabView = 2131624352; + // aapt resource value: 0x7F0F01A0 + public const int Widget_AppCompat_Light_ActionBar_TabView = 2131689888; - // aapt resource value: 0x7F0E01A1 - public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131624353; + // aapt resource value: 0x7F0F01A1 + public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131689889; - // aapt resource value: 0x7F0E01A2 - public const int Widget_AppCompat_Light_ActionButton = 2131624354; + // aapt resource value: 0x7F0F01A2 + public const int Widget_AppCompat_Light_ActionButton = 2131689890; - // aapt resource value: 0x7F0E01A3 - public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131624355; + // aapt resource value: 0x7F0F01A3 + public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131689891; - // aapt resource value: 0x7F0E01A4 - public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131624356; + // aapt resource value: 0x7F0F01A4 + public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131689892; - // aapt resource value: 0x7F0E01A5 - public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131624357; + // aapt resource value: 0x7F0F01A5 + public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131689893; - // aapt resource value: 0x7F0E01A6 - public const int Widget_AppCompat_Light_ActivityChooserView = 2131624358; + // aapt resource value: 0x7F0F01A6 + public const int Widget_AppCompat_Light_ActivityChooserView = 2131689894; - // aapt resource value: 0x7F0E01A7 - public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131624359; + // aapt resource value: 0x7F0F01A7 + public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131689895; - // aapt resource value: 0x7F0E01A8 - public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131624360; + // aapt resource value: 0x7F0F01A8 + public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131689896; - // aapt resource value: 0x7F0E01A9 - public const int Widget_AppCompat_Light_ListPopupWindow = 2131624361; + // aapt resource value: 0x7F0F01A9 + public const int Widget_AppCompat_Light_ListPopupWindow = 2131689897; - // aapt resource value: 0x7F0E01AA - public const int Widget_AppCompat_Light_ListView_DropDown = 2131624362; + // aapt resource value: 0x7F0F01AA + public const int Widget_AppCompat_Light_ListView_DropDown = 2131689898; - // aapt resource value: 0x7F0E01AB - public const int Widget_AppCompat_Light_PopupMenu = 2131624363; + // aapt resource value: 0x7F0F01AB + public const int Widget_AppCompat_Light_PopupMenu = 2131689899; - // aapt resource value: 0x7F0E01AC - public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131624364; + // aapt resource value: 0x7F0F01AC + public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131689900; - // aapt resource value: 0x7F0E01AD - public const int Widget_AppCompat_Light_SearchView = 2131624365; + // aapt resource value: 0x7F0F01AD + public const int Widget_AppCompat_Light_SearchView = 2131689901; - // aapt resource value: 0x7F0E01AE - public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131624366; + // aapt resource value: 0x7F0F01AE + public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131689902; - // aapt resource value: 0x7F0E01AF - public const int Widget_AppCompat_ListMenuView = 2131624367; + // aapt resource value: 0x7F0F01AF + public const int Widget_AppCompat_ListMenuView = 2131689903; - // aapt resource value: 0x7F0E01B0 - public const int Widget_AppCompat_ListPopupWindow = 2131624368; + // aapt resource value: 0x7F0F01B0 + public const int Widget_AppCompat_ListPopupWindow = 2131689904; - // aapt resource value: 0x7F0E01B1 - public const int Widget_AppCompat_ListView = 2131624369; + // aapt resource value: 0x7F0F01B1 + public const int Widget_AppCompat_ListView = 2131689905; - // aapt resource value: 0x7F0E01B2 - public const int Widget_AppCompat_ListView_DropDown = 2131624370; + // aapt resource value: 0x7F0F01B2 + public const int Widget_AppCompat_ListView_DropDown = 2131689906; - // aapt resource value: 0x7F0E01B3 - public const int Widget_AppCompat_ListView_Menu = 2131624371; + // aapt resource value: 0x7F0F01B3 + public const int Widget_AppCompat_ListView_Menu = 2131689907; - // aapt resource value: 0x7F0E01B4 - public const int Widget_AppCompat_PopupMenu = 2131624372; + // aapt resource value: 0x7F0F01B4 + public const int Widget_AppCompat_PopupMenu = 2131689908; - // aapt resource value: 0x7F0E01B5 - public const int Widget_AppCompat_PopupMenu_Overflow = 2131624373; + // aapt resource value: 0x7F0F01B5 + public const int Widget_AppCompat_PopupMenu_Overflow = 2131689909; - // aapt resource value: 0x7F0E01B6 - public const int Widget_AppCompat_PopupWindow = 2131624374; + // aapt resource value: 0x7F0F01B6 + public const int Widget_AppCompat_PopupWindow = 2131689910; - // aapt resource value: 0x7F0E01B7 - public const int Widget_AppCompat_ProgressBar = 2131624375; + // aapt resource value: 0x7F0F01B7 + public const int Widget_AppCompat_ProgressBar = 2131689911; - // aapt resource value: 0x7F0E01B8 - public const int Widget_AppCompat_ProgressBar_Horizontal = 2131624376; + // aapt resource value: 0x7F0F01B8 + public const int Widget_AppCompat_ProgressBar_Horizontal = 2131689912; - // aapt resource value: 0x7F0E01B9 - public const int Widget_AppCompat_RatingBar = 2131624377; + // aapt resource value: 0x7F0F01B9 + public const int Widget_AppCompat_RatingBar = 2131689913; - // aapt resource value: 0x7F0E01BA - public const int Widget_AppCompat_RatingBar_Indicator = 2131624378; + // aapt resource value: 0x7F0F01BA + public const int Widget_AppCompat_RatingBar_Indicator = 2131689914; - // aapt resource value: 0x7F0E01BB - public const int Widget_AppCompat_RatingBar_Small = 2131624379; + // aapt resource value: 0x7F0F01BB + public const int Widget_AppCompat_RatingBar_Small = 2131689915; - // aapt resource value: 0x7F0E01BC - public const int Widget_AppCompat_SearchView = 2131624380; + // aapt resource value: 0x7F0F01BC + public const int Widget_AppCompat_SearchView = 2131689916; - // aapt resource value: 0x7F0E01BD - public const int Widget_AppCompat_SearchView_ActionBar = 2131624381; + // aapt resource value: 0x7F0F01BD + public const int Widget_AppCompat_SearchView_ActionBar = 2131689917; - // aapt resource value: 0x7F0E01BE - public const int Widget_AppCompat_SeekBar = 2131624382; + // aapt resource value: 0x7F0F01BE + public const int Widget_AppCompat_SeekBar = 2131689918; - // aapt resource value: 0x7F0E01BF - public const int Widget_AppCompat_SeekBar_Discrete = 2131624383; + // aapt resource value: 0x7F0F01BF + public const int Widget_AppCompat_SeekBar_Discrete = 2131689919; - // aapt resource value: 0x7F0E01C0 - public const int Widget_AppCompat_Spinner = 2131624384; + // aapt resource value: 0x7F0F01C0 + public const int Widget_AppCompat_Spinner = 2131689920; - // aapt resource value: 0x7F0E01C1 - public const int Widget_AppCompat_Spinner_DropDown = 2131624385; + // aapt resource value: 0x7F0F01C1 + public const int Widget_AppCompat_Spinner_DropDown = 2131689921; - // aapt resource value: 0x7F0E01C2 - public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131624386; + // aapt resource value: 0x7F0F01C2 + public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131689922; - // aapt resource value: 0x7F0E01C3 - public const int Widget_AppCompat_Spinner_Underlined = 2131624387; + // aapt resource value: 0x7F0F01C3 + public const int Widget_AppCompat_Spinner_Underlined = 2131689923; - // aapt resource value: 0x7F0E01C4 - public const int Widget_AppCompat_TextView_SpinnerItem = 2131624388; + // aapt resource value: 0x7F0F01C4 + public const int Widget_AppCompat_TextView_SpinnerItem = 2131689924; - // aapt resource value: 0x7F0E01C5 - public const int Widget_AppCompat_Toolbar = 2131624389; + // aapt resource value: 0x7F0F01C5 + public const int Widget_AppCompat_Toolbar = 2131689925; - // aapt resource value: 0x7F0E01C6 - public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131624390; + // aapt resource value: 0x7F0F01C6 + public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131689926; - // aapt resource value: 0x7F0E01C7 - public const int Widget_Compat_NotificationActionContainer = 2131624391; + // aapt resource value: 0x7F0F01C7 + public const int Widget_Compat_NotificationActionContainer = 2131689927; - // aapt resource value: 0x7F0E01C8 - public const int Widget_Compat_NotificationActionText = 2131624392; + // aapt resource value: 0x7F0F01C8 + public const int Widget_Compat_NotificationActionText = 2131689928; - // aapt resource value: 0x7F0E01C9 - public const int Widget_Design_AppBarLayout = 2131624393; + // aapt resource value: 0x7F0F01C9 + public const int Widget_Design_AppBarLayout = 2131689929; - // aapt resource value: 0x7F0E01CA - public const int Widget_Design_BottomNavigationView = 2131624394; + // aapt resource value: 0x7F0F01CA + public const int Widget_Design_BottomNavigationView = 2131689930; - // aapt resource value: 0x7F0E01CB - public const int Widget_Design_BottomSheet_Modal = 2131624395; + // aapt resource value: 0x7F0F01CB + public const int Widget_Design_BottomSheet_Modal = 2131689931; - // aapt resource value: 0x7F0E01CC - public const int Widget_Design_CollapsingToolbar = 2131624396; + // aapt resource value: 0x7F0F01CC + public const int Widget_Design_CollapsingToolbar = 2131689932; - // aapt resource value: 0x7F0E01CD - public const int Widget_Design_FloatingActionButton = 2131624397; + // aapt resource value: 0x7F0F01CD + public const int Widget_Design_FloatingActionButton = 2131689933; - // aapt resource value: 0x7F0E01CE - public const int Widget_Design_NavigationView = 2131624398; + // aapt resource value: 0x7F0F01CE + public const int Widget_Design_NavigationView = 2131689934; - // aapt resource value: 0x7F0E01CF - public const int Widget_Design_ScrimInsetsFrameLayout = 2131624399; + // aapt resource value: 0x7F0F01CF + public const int Widget_Design_ScrimInsetsFrameLayout = 2131689935; - // aapt resource value: 0x7F0E01D0 - public const int Widget_Design_Snackbar = 2131624400; + // aapt resource value: 0x7F0F01D0 + public const int Widget_Design_Snackbar = 2131689936; - // aapt resource value: 0x7F0E01D1 - public const int Widget_Design_TabLayout = 2131624401; + // aapt resource value: 0x7F0F01D1 + public const int Widget_Design_TabLayout = 2131689937; - // aapt resource value: 0x7F0E01D2 - public const int Widget_Design_TextInputLayout = 2131624402; + // aapt resource value: 0x7F0F01D2 + public const int Widget_Design_TextInputLayout = 2131689938; - // aapt resource value: 0x7F0E01D3 - public const int Widget_MaterialComponents_BottomAppBar = 2131624403; + // aapt resource value: 0x7F0F01D3 + public const int Widget_MaterialComponents_BottomAppBar = 2131689939; - // aapt resource value: 0x7F0E01D4 - public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131624404; + // aapt resource value: 0x7F0F01D4 + public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131689940; - // aapt resource value: 0x7F0E01D5 - public const int Widget_MaterialComponents_BottomNavigationView = 2131624405; + // aapt resource value: 0x7F0F01D5 + public const int Widget_MaterialComponents_BottomNavigationView = 2131689941; - // aapt resource value: 0x7F0E01D6 - public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131624406; + // aapt resource value: 0x7F0F01D6 + public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131689942; - // aapt resource value: 0x7F0E01D7 - public const int Widget_MaterialComponents_BottomSheet_Modal = 2131624407; + // aapt resource value: 0x7F0F01D7 + public const int Widget_MaterialComponents_BottomSheet_Modal = 2131689943; - // aapt resource value: 0x7F0E01D8 - public const int Widget_MaterialComponents_Button = 2131624408; + // aapt resource value: 0x7F0F01D8 + public const int Widget_MaterialComponents_Button = 2131689944; - // aapt resource value: 0x7F0E01D9 - public const int Widget_MaterialComponents_Button_Icon = 2131624409; + // aapt resource value: 0x7F0F01D9 + public const int Widget_MaterialComponents_Button_Icon = 2131689945; - // aapt resource value: 0x7F0E01DA - public const int Widget_MaterialComponents_Button_OutlinedButton = 2131624410; + // aapt resource value: 0x7F0F01DA + public const int Widget_MaterialComponents_Button_OutlinedButton = 2131689946; - // aapt resource value: 0x7F0E01DB - public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131624411; + // aapt resource value: 0x7F0F01DB + public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131689947; - // aapt resource value: 0x7F0E01DC - public const int Widget_MaterialComponents_Button_TextButton = 2131624412; + // aapt resource value: 0x7F0F01DC + public const int Widget_MaterialComponents_Button_TextButton = 2131689948; - // aapt resource value: 0x7F0E01DD - public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131624413; + // aapt resource value: 0x7F0F01DD + public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131689949; - // aapt resource value: 0x7F0E01DE - public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131624414; + // aapt resource value: 0x7F0F01DE + public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131689950; - // aapt resource value: 0x7F0E01DF - public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131624415; + // aapt resource value: 0x7F0F01DF + public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131689951; - // aapt resource value: 0x7F0E01E0 - public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131624416; + // aapt resource value: 0x7F0F01E0 + public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131689952; - // aapt resource value: 0x7F0E01E1 - public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131624417; + // aapt resource value: 0x7F0F01E1 + public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131689953; - // aapt resource value: 0x7F0E01E2 - public const int Widget_MaterialComponents_CardView = 2131624418; + // aapt resource value: 0x7F0F01E2 + public const int Widget_MaterialComponents_CardView = 2131689954; - // aapt resource value: 0x7F0E01E7 - public const int Widget_MaterialComponents_ChipGroup = 2131624423; + // aapt resource value: 0x7F0F01E7 + public const int Widget_MaterialComponents_ChipGroup = 2131689959; - // aapt resource value: 0x7F0E01E3 - public const int Widget_MaterialComponents_Chip_Action = 2131624419; + // aapt resource value: 0x7F0F01E3 + public const int Widget_MaterialComponents_Chip_Action = 2131689955; - // aapt resource value: 0x7F0E01E4 - public const int Widget_MaterialComponents_Chip_Choice = 2131624420; + // aapt resource value: 0x7F0F01E4 + public const int Widget_MaterialComponents_Chip_Choice = 2131689956; - // aapt resource value: 0x7F0E01E5 - public const int Widget_MaterialComponents_Chip_Entry = 2131624421; + // aapt resource value: 0x7F0F01E5 + public const int Widget_MaterialComponents_Chip_Entry = 2131689957; - // aapt resource value: 0x7F0E01E6 - public const int Widget_MaterialComponents_Chip_Filter = 2131624422; + // aapt resource value: 0x7F0F01E6 + public const int Widget_MaterialComponents_Chip_Filter = 2131689958; - // aapt resource value: 0x7F0E01E8 - public const int Widget_MaterialComponents_FloatingActionButton = 2131624424; + // aapt resource value: 0x7F0F01E8 + public const int Widget_MaterialComponents_FloatingActionButton = 2131689960; - // aapt resource value: 0x7F0E01E9 - public const int Widget_MaterialComponents_NavigationView = 2131624425; + // aapt resource value: 0x7F0F01E9 + public const int Widget_MaterialComponents_NavigationView = 2131689961; - // aapt resource value: 0x7F0E01EA - public const int Widget_MaterialComponents_Snackbar = 2131624426; + // aapt resource value: 0x7F0F01EA + public const int Widget_MaterialComponents_Snackbar = 2131689962; - // aapt resource value: 0x7F0E01EB - public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131624427; + // aapt resource value: 0x7F0F01EB + public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131689963; - // aapt resource value: 0x7F0E01EC - public const int Widget_MaterialComponents_TabLayout = 2131624428; + // aapt resource value: 0x7F0F01EC + public const int Widget_MaterialComponents_TabLayout = 2131689964; - // aapt resource value: 0x7F0E01ED - public const int Widget_MaterialComponents_TabLayout_Colored = 2131624429; + // aapt resource value: 0x7F0F01ED + public const int Widget_MaterialComponents_TabLayout_Colored = 2131689965; - // aapt resource value: 0x7F0E01EE - public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131624430; + // aapt resource value: 0x7F0F01EE + public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131689966; - // aapt resource value: 0x7F0E01EF - public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131624431; + // aapt resource value: 0x7F0F01EF + public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131689967; - // aapt resource value: 0x7F0E01F0 - public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131624432; + // aapt resource value: 0x7F0F01F0 + public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131689968; - // aapt resource value: 0x7F0E01F1 - public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131624433; + // aapt resource value: 0x7F0F01F1 + public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131689969; - // aapt resource value: 0x7F0E01F2 - public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131624434; + // aapt resource value: 0x7F0F01F2 + public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131689970; - // aapt resource value: 0x7F0E01F3 - public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131624435; + // aapt resource value: 0x7F0F01F3 + public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131689971; - // aapt resource value: 0x7F0E01F4 - public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131624436; + // aapt resource value: 0x7F0F01F4 + public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131689972; - // aapt resource value: 0x7F0E01F5 - public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131624437; + // aapt resource value: 0x7F0F01F5 + public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131689973; - // aapt resource value: 0x7F0E01F6 - public const int Widget_MaterialComponents_Toolbar = 2131624438; + // aapt resource value: 0x7F0F01F6 + public const int Widget_MaterialComponents_Toolbar = 2131689974; - // aapt resource value: 0x7F0E01F7 - public const int Widget_Support_CoordinatorLayout = 2131624439; + // aapt resource value: 0x7F0F01F7 + public const int Widget_Support_CoordinatorLayout = 2131689975; static Style() { @@ -16901,14 +16985,30 @@ private Styleable() } } + public partial class Transition + { + + // aapt resource value: 0x7F110000 + public const int navigation_transition = 2131820544; + + static Transition() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Transition() + { + } + } + public partial class Xml { - // aapt resource value: 0x7F100000 - public const int file_paths = 2131755008; + // aapt resource value: 0x7F120000 + public const int file_paths = 2131886080; - // aapt resource value: 0x7F100001 - public const int xamarin_essentials_fileprovider_file_paths = 2131755009; + // aapt resource value: 0x7F120001 + public const int xamarin_essentials_fileprovider_file_paths = 2131886081; static Xml() { diff --git a/src/TravelMonkey.Android/Resources/drawable/arrow_back.xml b/src/TravelMonkey.Android/Resources/drawable/arrow_back.xml new file mode 100644 index 0000000..ffdcd79 --- /dev/null +++ b/src/TravelMonkey.Android/Resources/drawable/arrow_back.xml @@ -0,0 +1,13 @@ + + + diff --git a/src/TravelMonkey.Android/Resources/raw/forest.mp4 b/src/TravelMonkey.Android/Resources/raw/forest.mp4 new file mode 100644 index 0000000..27832bb Binary files /dev/null and b/src/TravelMonkey.Android/Resources/raw/forest.mp4 differ diff --git a/src/TravelMonkey.Android/TravelMonkey.Android.csproj b/src/TravelMonkey.Android/TravelMonkey.Android.csproj index 4b9a5ab..dfc4bbb 100644 --- a/src/TravelMonkey.Android/TravelMonkey.Android.csproj +++ b/src/TravelMonkey.Android/TravelMonkey.Android.csproj @@ -1,4 +1,4 @@ - + Debug @@ -53,6 +53,9 @@ + + 6.10.6 + @@ -64,8 +67,12 @@ 7.1.0.442 + + 2.1.1-beta + + @@ -93,63 +100,89 @@ - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + - - - - {04991790-FBB2-415A-9531-268B4193DB3E} TravelMonkey - - + + + + + + + + \ No newline at end of file diff --git a/src/TravelMonkey.iOS/AppDelegate.cs b/src/TravelMonkey.iOS/AppDelegate.cs index 81d5022..2d009f8 100644 --- a/src/TravelMonkey.iOS/AppDelegate.cs +++ b/src/TravelMonkey.iOS/AppDelegate.cs @@ -1,13 +1,14 @@ using Foundation; using UIKit; +[assembly: Xamarin.Forms.ResolutionGroupName("TravelMonkey")] namespace TravelMonkey.iOS { // The UIApplicationDelegate for the application. This class is responsible for launching the // User Interface of the application, as well as listening (and optionally responding) to // application events from iOS. [Register("AppDelegate")] - public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate + public partial class AppDelegate : Xamarin.Forms.Platform.iOS.FormsApplicationDelegate { // // This method is invoked when the application has loaded and is ready to run. In this @@ -18,7 +19,7 @@ public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsAppli // public override bool FinishedLaunching(UIApplication app, NSDictionary options) { - global::Xamarin.Forms.Forms.Init(); + Xamarin.Forms.Forms.Init(); UIApplication.SharedApplication.StatusBarStyle = UIStatusBarStyle.LightContent; diff --git a/src/TravelMonkey.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json b/src/TravelMonkey.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json index 60631c5..cdfd271 100644 --- a/src/TravelMonkey.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json +++ b/src/TravelMonkey.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -1,247 +1,130 @@ { "images": [ { - "filename": "Icon-App-20x20@2x.png", - "size": "20x20", "scale": "2x", - "idiom": "iphone" + "size": "20x20", + "idiom": "iphone", + "filename": "Icon-App-20x20@2x.png" }, { - "filename": "Icon-App-20x20@3x.png", - "size": "20x20", "scale": "3x", - "idiom": "iphone" + "size": "20x20", + "idiom": "iphone", + "filename": "Icon-App-20x20@3x.png" }, { - "filename": "Icon-App-29x29@2x.png", - "size": "29x29", "scale": "2x", - "idiom": "iphone" + "size": "29x29", + "idiom": "iphone", + "filename": "Icon-App-29x29@2x.png" }, { - "filename": "Icon-App-29x29@3x.png", - "size": "29x29", "scale": "3x", - "idiom": "iphone" + "size": "29x29", + "idiom": "iphone", + "filename": "Icon-App-29x29@3x.png" }, { - "filename": "Icon-App-40x40@2x.png", - "size": "40x40", "scale": "2x", - "idiom": "iphone" + "size": "40x40", + "idiom": "iphone", + "filename": "Icon-App-40x40@2x.png" }, { - "filename": "Icon-App-40x40@3x.png", - "size": "40x40", "scale": "3x", - "idiom": "iphone" + "size": "40x40", + "idiom": "iphone", + "filename": "Icon-App-40x40@3x.png" }, { - "filename": "Icon-App-60x60@2x.png", - "size": "60x60", "scale": "2x", - "idiom": "iphone" + "size": "60x60", + "idiom": "iphone", + "filename": "Icon-App-60x60@2x.png" }, { - "filename": "Icon-App-60x60@3x.png", - "size": "60x60", "scale": "3x", - "idiom": "iphone" + "size": "60x60", + "idiom": "iphone", + "filename": "Icon-App-60x60@3x.png" }, { - "filename": "Icon-App-20x20@1x.png", - "size": "20x20", "scale": "1x", - "idiom": "ipad" + "size": "20x20", + "idiom": "ipad", + "filename": "Icon-App-20x20@1x.png" }, { - "filename": "Icon-App-20x20@2x-1.png", - "size": "20x20", "scale": "2x", - "idiom": "ipad" + "size": "20x20", + "idiom": "ipad", + "filename": "Icon-App-20x20@2x-1.png" }, { - "filename": "Icon-App-29x29@1x.png", - "size": "29x29", "scale": "1x", - "idiom": "ipad" + "size": "29x29", + "idiom": "ipad", + "filename": "Icon-App-29x29@1x.png" }, { - "filename": "Icon-App-29x29@2x-1.png", - "size": "29x29", "scale": "2x", - "idiom": "ipad" + "size": "29x29", + "idiom": "ipad", + "filename": "Icon-App-29x29@2x-1.png" }, { - "filename": "Icon-App-40x40@1x.png", - "size": "40x40", "scale": "1x", - "idiom": "ipad" + "size": "40x40", + "idiom": "ipad", + "filename": "Icon-App-40x40@1x.png" }, { - "filename": "Icon-App-40x40@2x-1.png", - "size": "40x40", "scale": "2x", - "idiom": "ipad" + "size": "40x40", + "idiom": "ipad", + "filename": "Icon-App-40x40@2x-1.png" }, { - "filename": "Icon-App-83.5x83.5@2x.png", - "size": "83.5x83.5", "scale": "2x", - "idiom": "ipad" + "size": "83.5x83.5", + "idiom": "ipad", + "filename": "Icon-App-83.5x83.5@2x.png" }, { - "filename": "Icon-App-76x76@1x.png", - "size": "76x76", "scale": "1x", - "idiom": "ipad" + "size": "76x76", + "idiom": "ipad", + "filename": "Icon-App-76x76@1x.png" }, { - "filename": "Icon-App-76x76@2x.png", - "size": "76x76", "scale": "2x", - "idiom": "ipad" + "size": "76x76", + "idiom": "ipad", + "filename": "Icon-App-76x76@2x.png" }, { - "filename": "ItunesArtwork@2x.png", - "size": "1024x1024", "scale": "1x", - "idiom": "ios-marketing" + "size": "1024x1024", + "idiom": "ios-marketing", + "filename": "ItunesArtwork@2x.png" }, { - "size": "60x60", "scale": "2x", - "idiom": "car" - }, - { "size": "60x60", - "scale": "3x", "idiom": "car" }, { - "role": "notificationCenter", - "size": "24x24", - "subtype": "38mm", - "scale": "2x", - "idiom": "watch" - }, - { - "role": "notificationCenter", - "size": "27.5x27.5", - "subtype": "42mm", - "scale": "2x", - "idiom": "watch" - }, - { - "role": "companionSettings", - "size": "29x29", - "scale": "2x", - "idiom": "watch" - }, - { - "role": "companionSettings", - "size": "29x29", "scale": "3x", - "idiom": "watch" - }, - { - "role": "appLauncher", - "size": "40x40", - "subtype": "38mm", - "scale": "2x", - "idiom": "watch" - }, - { - "role": "appLauncher", - "size": "44x44", - "subtype": "40mm", - "scale": "2x", - "idiom": "watch" - }, - { - "role": "appLauncher", - "size": "50x50", - "subtype": "44mm", - "scale": "2x", - "idiom": "watch" - }, - { - "role": "quickLook", - "size": "86x86", - "subtype": "38mm", - "scale": "2x", - "idiom": "watch" - }, - { - "role": "quickLook", - "size": "98x98", - "subtype": "42mm", - "scale": "2x", - "idiom": "watch" - }, - { - "role": "quickLook", - "size": "108x108", - "subtype": "44mm", - "scale": "2x", - "idiom": "watch" + "size": "60x60", + "idiom": "car" }, { - "size": "1024x1024", "scale": "1x", + "size": "1024x1024", "idiom": "watch-marketing" - }, - { - "size": "16x16", - "scale": "1x", - "idiom": "mac" - }, - { - "size": "16x16", - "scale": "2x", - "idiom": "mac" - }, - { - "size": "32x32", - "scale": "1x", - "idiom": "mac" - }, - { - "size": "32x32", - "scale": "2x", - "idiom": "mac" - }, - { - "size": "128x128", - "scale": "1x", - "idiom": "mac" - }, - { - "size": "128x128", - "scale": "2x", - "idiom": "mac" - }, - { - "size": "256x256", - "scale": "1x", - "idiom": "mac" - }, - { - "size": "256x256", - "scale": "2x", - "idiom": "mac" - }, - { - "size": "512x512", - "scale": "1x", - "idiom": "mac" - }, - { - "size": "512x512", - "scale": "2x", - "idiom": "mac" } ], + "properties": {}, "info": { "version": 1, "author": "xcode" diff --git a/src/TravelMonkey.iOS/Assets.xcassets/arrow_back.imageset/Contents.json b/src/TravelMonkey.iOS/Assets.xcassets/arrow_back.imageset/Contents.json new file mode 100644 index 0000000..5f1cbf8 --- /dev/null +++ b/src/TravelMonkey.iOS/Assets.xcassets/arrow_back.imageset/Contents.json @@ -0,0 +1,29 @@ +{ + "images": [ + { + "appearances": [], + "scale": "1x", + "idiom": "universal" + }, + { + "appearances": [], + "scale": "2x", + "idiom": "universal" + }, + { + "appearances": [], + "scale": "3x", + "idiom": "universal" + }, + { + "appearances": [], + "idiom": "universal", + "filename": "arrow_back.pdf" + } + ], + "properties": {}, + "info": { + "version": 1, + "author": "" + } +} \ No newline at end of file diff --git a/src/TravelMonkey.iOS/Assets.xcassets/arrow_back.imageset/arrow_back.pdf b/src/TravelMonkey.iOS/Assets.xcassets/arrow_back.imageset/arrow_back.pdf new file mode 100644 index 0000000..af796c1 Binary files /dev/null and b/src/TravelMonkey.iOS/Assets.xcassets/arrow_back.imageset/arrow_back.pdf differ diff --git a/src/TravelMonkey.iOS/Effects/SafeAreaPaddingEffect.cs b/src/TravelMonkey.iOS/Effects/SafeAreaPaddingEffect.cs index c668630..e33e4d4 100644 --- a/src/TravelMonkey.iOS/Effects/SafeAreaPaddingEffect.cs +++ b/src/TravelMonkey.iOS/Effects/SafeAreaPaddingEffect.cs @@ -3,7 +3,6 @@ using Xamarin.Forms; using Xamarin.Forms.Platform.iOS; -[assembly: ResolutionGroupName("TravelMonkey")] [assembly: ExportEffect(typeof(SafeAreaPaddingEffect_iOS), "SafeAreaPaddingEffect")] namespace TravelMonkey.iOS.Effects { diff --git a/src/TravelMonkey.iOS/Effects/UILabelShadowEffect.cs b/src/TravelMonkey.iOS/Effects/UILabelShadowEffect.cs new file mode 100644 index 0000000..059eda4 --- /dev/null +++ b/src/TravelMonkey.iOS/Effects/UILabelShadowEffect.cs @@ -0,0 +1,40 @@ +using CoreGraphics; +using System; +using System.Linq; +using TravelMonkey.Effects; +using TravelMonkey.iOS.Effects; +using UIKit; +using Xamarin.Forms; +using Xamarin.Forms.Platform.iOS; + +[assembly: ExportEffect(typeof(UILabelShadowEffect), nameof(ShadowEffect))] +namespace TravelMonkey.iOS.Effects +{ + public class UILabelShadowEffect : PlatformEffect + { + protected override void OnAttached() + { + try + { + var effect = (ShadowEffect)Element.Effects.FirstOrDefault(e => e is ShadowEffect); + if (effect == null) return; + + if (Control is UILabel label) + { + label.Layer.CornerRadius = effect.Radius; + label.Layer.ShadowColor = effect.Color.ToCGColor(); + label.Layer.ShadowOffset = new CGSize(effect.DistanceX, effect.DistanceY); + label.Layer.ShadowOpacity = 1.0f; + } + } + catch (Exception ex) + { + Console.WriteLine("Cannot set property on attached control. Error: ", ex.Message); + } + } + + protected override void OnDetached() + { + } + } +} \ No newline at end of file diff --git a/src/TravelMonkey.iOS/Resources/forest.mp4 b/src/TravelMonkey.iOS/Resources/forest.mp4 new file mode 100644 index 0000000..27832bb Binary files /dev/null and b/src/TravelMonkey.iOS/Resources/forest.mp4 differ diff --git a/src/TravelMonkey.iOS/TravelMonkey.iOS.csproj b/src/TravelMonkey.iOS/TravelMonkey.iOS.csproj index 479887f..d4719eb 100644 --- a/src/TravelMonkey.iOS/TravelMonkey.iOS.csproj +++ b/src/TravelMonkey.iOS/TravelMonkey.iOS.csproj @@ -63,6 +63,7 @@ Entitlements.plist + @@ -71,28 +72,70 @@ + + false + + + false + false - - - - - - - - - - - - - - - - - - + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + + + false + @@ -103,6 +146,9 @@ + + 6.10.6 + @@ -114,6 +160,9 @@ 7.1.0.442 + + 2.1.1-beta + @@ -130,6 +179,6 @@ - + \ No newline at end of file diff --git a/src/TravelMonkey.sln b/src/TravelMonkey.sln index 222f516..191941c 100644 --- a/src/TravelMonkey.sln +++ b/src/TravelMonkey.sln @@ -1,57 +1,65 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30011.22 +MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TravelMonkey.Android", "TravelMonkey.Android\TravelMonkey.Android.csproj", "{A06A377B-F901-4238-88BD-A92726C715C2}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TravelMonkey.iOS", "TravelMonkey.iOS\TravelMonkey.iOS.csproj", "{8C00CCB8-214B-4B88-8042-4C8D31284CD3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TravelMonkey", "TravelMonkey\TravelMonkey.csproj", "{04991790-FBB2-415A-9531-268B4193DB3E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TravelMonkey", "TravelMonkey\TravelMonkey.csproj", "{04991790-FBB2-415A-9531-268B4193DB3E}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - Debug|iPhoneSimulator = Debug|iPhoneSimulator - Release|iPhoneSimulator = Release|iPhoneSimulator Debug|iPhone = Debug|iPhone + Debug|iPhoneSimulator = Debug|iPhoneSimulator + Release|Any CPU = Release|Any CPU Release|iPhone = Release|iPhone + Release|iPhoneSimulator = Release|iPhoneSimulator EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A06A377B-F901-4238-88BD-A92726C715C2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A06A377B-F901-4238-88BD-A92726C715C2}.Release|Any CPU.Build.0 = Release|Any CPU - {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU - {A06A377B-F901-4238-88BD-A92726C715C2}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {A06A377B-F901-4238-88BD-A92726C715C2}.Release|iPhoneSimulator.Build.0 = Release|Any CPU + {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|Any CPU.Deploy.0 = Debug|Any CPU {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|iPhone.ActiveCfg = Debug|Any CPU {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|iPhone.Build.0 = Debug|Any CPU + {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {A06A377B-F901-4238-88BD-A92726C715C2}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU + {A06A377B-F901-4238-88BD-A92726C715C2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A06A377B-F901-4238-88BD-A92726C715C2}.Release|Any CPU.Build.0 = Release|Any CPU {A06A377B-F901-4238-88BD-A92726C715C2}.Release|iPhone.ActiveCfg = Release|Any CPU {A06A377B-F901-4238-88BD-A92726C715C2}.Release|iPhone.Build.0 = Release|Any CPU + {A06A377B-F901-4238-88BD-A92726C715C2}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {A06A377B-F901-4238-88BD-A92726C715C2}.Release|iPhoneSimulator.Build.0 = Release|Any CPU {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator - {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator - {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|Any CPU.Build.0 = Release|iPhoneSimulator - {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator - {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator - {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator - {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Debug|iPhone.ActiveCfg = Debug|iPhone {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Debug|iPhone.Build.0 = Debug|iPhone + {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator + {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|Any CPU.Build.0 = Release|iPhoneSimulator {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|iPhone.ActiveCfg = Release|iPhone {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|iPhone.Build.0 = Release|iPhone + {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {8C00CCB8-214B-4B88-8042-4C8D31284CD3}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator {04991790-FBB2-415A-9531-268B4193DB3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {04991790-FBB2-415A-9531-268B4193DB3E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {04991790-FBB2-415A-9531-268B4193DB3E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {04991790-FBB2-415A-9531-268B4193DB3E}.Release|Any CPU.Build.0 = Release|Any CPU - {04991790-FBB2-415A-9531-268B4193DB3E}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {04991790-FBB2-415A-9531-268B4193DB3E}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU - {04991790-FBB2-415A-9531-268B4193DB3E}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {04991790-FBB2-415A-9531-268B4193DB3E}.Release|iPhoneSimulator.Build.0 = Release|Any CPU {04991790-FBB2-415A-9531-268B4193DB3E}.Debug|iPhone.ActiveCfg = Debug|Any CPU {04991790-FBB2-415A-9531-268B4193DB3E}.Debug|iPhone.Build.0 = Debug|Any CPU + {04991790-FBB2-415A-9531-268B4193DB3E}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {04991790-FBB2-415A-9531-268B4193DB3E}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU + {04991790-FBB2-415A-9531-268B4193DB3E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {04991790-FBB2-415A-9531-268B4193DB3E}.Release|Any CPU.Build.0 = Release|Any CPU {04991790-FBB2-415A-9531-268B4193DB3E}.Release|iPhone.ActiveCfg = Release|Any CPU {04991790-FBB2-415A-9531-268B4193DB3E}.Release|iPhone.Build.0 = Release|Any CPU + {04991790-FBB2-415A-9531-268B4193DB3E}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {04991790-FBB2-415A-9531-268B4193DB3E}.Release|iPhoneSimulator.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A8F5B49C-B635-4765-9703-5F93A825453B} EndGlobalSection EndGlobal diff --git a/src/TravelMonkey/ApiKeys.cs b/src/TravelMonkey/ApiKeys.cs index 82c4dd3..ba789ff 100644 --- a/src/TravelMonkey/ApiKeys.cs +++ b/src/TravelMonkey/ApiKeys.cs @@ -6,9 +6,11 @@ public static class ApiKeys public static string ComputerVisionApiKey = ""; public static string TranslationsApiKey = ""; public static string BingImageSearch = ""; + public static string FaceApiKey = ""; // Change this to the Azure Region you are using public static string ComputerVisionEndpoint = "https://westeurope.api.cognitive.microsoft.com/"; + public static string FaceEndpoint = ""; public static string TranslationsEndpoint = "https://api.cognitive.microsofttranslator.com/"; } } \ No newline at end of file diff --git a/src/TravelMonkey/App.xaml.cs b/src/TravelMonkey/App.xaml.cs index dbaf318..e822531 100644 --- a/src/TravelMonkey/App.xaml.cs +++ b/src/TravelMonkey/App.xaml.cs @@ -13,9 +13,13 @@ public partial class App : Application { public App() { + Device.SetFlags(new string[] { "MediaElement_Experimental" }); + InitializeComponent(); MainPage = new SplashScreen(); + + Akavache.Registrations.Start("TravelMonkey"); } protected override void OnStart() diff --git a/src/TravelMonkey/Converters/FirstDestinationImageOrDefaultConverter.cs b/src/TravelMonkey/Converters/FirstDestinationImageOrDefaultConverter.cs new file mode 100644 index 0000000..306ac35 --- /dev/null +++ b/src/TravelMonkey/Converters/FirstDestinationImageOrDefaultConverter.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using TravelMonkey.Models; +using Xamarin.Forms; + +namespace TravelMonkey.Converters +{ + public class FirstDestinationImageOrDefaultConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, CultureInfo culture) + { + if (value is IEnumerable images && images.Any()) + { + return images.FirstOrDefault().ImageUrl; + } + return value; + } + + public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) + { + throw new NotImplementedException(); + } + } +} \ No newline at end of file diff --git a/src/TravelMonkey/Converters/NotNullConverter.cs b/src/TravelMonkey/Converters/NotNullConverter.cs new file mode 100644 index 0000000..6d8029f --- /dev/null +++ b/src/TravelMonkey/Converters/NotNullConverter.cs @@ -0,0 +1,19 @@ +using System; +using System.Globalization; +using Xamarin.Forms; + +namespace TravelMonkey.Converters +{ + public class NotNullConverter : IValueConverter + { + public object Convert(object value, Type targetType, object parameter, CultureInfo culture) + { + return value != null; + } + + public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) + { + throw new NotImplementedException(); + } + } +} \ No newline at end of file diff --git a/src/TravelMonkey/Data/MockDataStore.cs b/src/TravelMonkey/Data/MockDataStore.cs deleted file mode 100644 index 513396c..0000000 --- a/src/TravelMonkey/Data/MockDataStore.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Collections.Generic; -using System.Collections.ObjectModel; -using TravelMonkey.Models; - -namespace TravelMonkey.Data -{ - public class MockDataStore - { - public static ObservableCollection Pictures { get; set; } - = new ObservableCollection(); - - public static List Destinations { get; set; } = new List(); - } -} \ No newline at end of file diff --git a/src/TravelMonkey/Data/PersistentDataStore.cs b/src/TravelMonkey/Data/PersistentDataStore.cs new file mode 100644 index 0000000..e40101d --- /dev/null +++ b/src/TravelMonkey/Data/PersistentDataStore.cs @@ -0,0 +1,32 @@ +using Akavache; +using System; +using System.Collections.Generic; +using System.Reactive.Linq; +using System.Threading.Tasks; +using TravelMonkey.Models; + +namespace TravelMonkey.Data +{ + public class PersistentDataStore + { + private static readonly IBlobCache Cache = Akavache.BlobCache.UserAccount; + + public static async Task> GetDestinations() + { + var x = await Cache.GetAllKeys(); + return await Cache.GetAllObjects(); + } + + public static async Task AddOrUpdateDestination(Destination destination) + { + await Cache.InsertObject(destination.Id.ToString(), destination); + + var x = await Cache.GetAllKeys(); + } + + public static async Task RemoveDestination(Guid id) + { + await Cache.InvalidateObject(id.ToString()); + } + } +} \ No newline at end of file diff --git a/src/TravelMonkey/Effects/ShadowEffect.cs b/src/TravelMonkey/Effects/ShadowEffect.cs new file mode 100644 index 0000000..deb5077 --- /dev/null +++ b/src/TravelMonkey/Effects/ShadowEffect.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Xamarin.Forms; + +namespace TravelMonkey.Effects +{ + public class ShadowEffect : RoutingEffect + { + public float Radius { get; set; } + + public Color Color { get; set; } + + public float DistanceX { get; set; } + + public float DistanceY { get; set; } + + public ShadowEffect() : base("TravelMonkey.ShadowEffect") + { + } + } +} \ No newline at end of file diff --git a/src/TravelMonkey/Models/AddPictureResult.cs b/src/TravelMonkey/Models/AnalyzePictureResult.cs similarity index 74% rename from src/TravelMonkey/Models/AddPictureResult.cs rename to src/TravelMonkey/Models/AnalyzePictureResult.cs index 07a814d..274ae4d 100644 --- a/src/TravelMonkey/Models/AddPictureResult.cs +++ b/src/TravelMonkey/Models/AnalyzePictureResult.cs @@ -2,16 +2,19 @@ namespace TravelMonkey.Models { - public class AddPictureResult + public class AnalyzePictureResult { public string Description { get; } + public string LandmarkDescription { get; } + public Color AccentColor { get; } + public bool Succeeded => !string.IsNullOrEmpty(Description) && AccentColor != Color.Default; - public AddPictureResult() { } + public AnalyzePictureResult() { } - public AddPictureResult(string description, Color accentColor, string landmarkDescription = "") + public AnalyzePictureResult(string description, Color accentColor, string landmarkDescription = "") { Description = $"I see {description}"; AccentColor = accentColor; diff --git a/src/TravelMonkey/Models/Destination.cs b/src/TravelMonkey/Models/Destination.cs index a7e5fc3..b2c2340 100644 --- a/src/TravelMonkey/Models/Destination.cs +++ b/src/TravelMonkey/Models/Destination.cs @@ -1,9 +1,31 @@ -namespace TravelMonkey.Models +using System; +using System.Collections.Generic; + +namespace TravelMonkey.Models { public class Destination { - public string Title { get; set; } - public string ImageUrl { get; set; } - public string MoreInfoUrl { get; set; } + public Guid Id { get; } + + public string IdString => Id.ToString(); + + public string Name { get; } + + public IEnumerable Images { get; } = new List(); + + public double? Emotion { get; set; } + + public Destination(string name, IEnumerable images = null, Guid? id = null) + { + if (id == null) id = Guid.NewGuid(); + + Id = id.Value; + Name = name; + + if (images != null) + { + Images = images; + } + } } } \ No newline at end of file diff --git a/src/TravelMonkey/Models/DestinationImage.cs b/src/TravelMonkey/Models/DestinationImage.cs new file mode 100644 index 0000000..1eca09f --- /dev/null +++ b/src/TravelMonkey/Models/DestinationImage.cs @@ -0,0 +1,17 @@ +namespace TravelMonkey.Models +{ + public class DestinationImage + { + public string ImageUrl { get; } + + public string MoreInfoUrl { get; } + + public string Description { get; set; } + + public DestinationImage(string imageUrl, string moreInfoUrl) + { + ImageUrl = imageUrl; + MoreInfoUrl = moreInfoUrl; + } + } +} \ No newline at end of file diff --git a/src/TravelMonkey/Models/PictureEntry.cs b/src/TravelMonkey/Models/PictureEntry.cs index c3a5dcc..7a4db53 100644 --- a/src/TravelMonkey/Models/PictureEntry.cs +++ b/src/TravelMonkey/Models/PictureEntry.cs @@ -1,10 +1,26 @@ -using Xamarin.Forms; +using Newtonsoft.Json; +using System; +using System.IO; +using Xamarin.Forms; namespace TravelMonkey.Models { public class PictureEntry { - public string Description { get; set; } - public ImageSource Image { get; set; } + public Guid Id { get; } + + public string Description { get; } + + public byte[] Image { get; } + + [JsonIgnore] + public ImageSource ImageStream => ImageSource.FromStream(() => new MemoryStream(Image)); + + public PictureEntry(string description, byte[] image) + { + Id = Guid.NewGuid(); + Description = description; + Image = image; + } } } \ No newline at end of file diff --git a/src/TravelMonkey/Services/BingSearchService.cs b/src/TravelMonkey/Services/BingSearchService.cs index bb194df..7d93a15 100644 --- a/src/TravelMonkey/Services/BingSearchService.cs +++ b/src/TravelMonkey/Services/BingSearchService.cs @@ -1,45 +1,33 @@ -using System.Collections.Generic; +using Microsoft.Azure.CognitiveServices.Search.ImageSearch; +using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Azure.CognitiveServices.Search.ImageSearch; using TravelMonkey.Models; namespace TravelMonkey.Services { public class BingSearchService { - public async Task> GetDestinations() + public async Task> GetDestinationImages(string destination) { - var searchDestinations = new[] { "Seattle", "Maui", "Amsterdam", "Antarctica" }; - try { var client = new ImageSearchClient(new ApiKeyServiceClientCredentials(ApiKeys.BingImageSearch)); - var resultDestinations = new List(); + var result = await client.Images.SearchAsync(destination, imageType: "Photo", minWidth: 600, maxWidth: 1200, minHeight: 400, maxHeight: 1200, count: 3); - foreach (var destination in searchDestinations) + var images = new List(); + foreach (var image in result.Value) { - var result = await client.Images.SearchAsync(destination, color: "blue", minWidth: 500, minHeight: 500, imageType: "Photo", license: "Public", count: 1, maxHeight: 1200, maxWidth: 1200); - - resultDestinations.Add(new Destination - { - Title = destination, - ImageUrl = result.Value[0].ContentUrl, - MoreInfoUrl = result.Value[0].HostPageUrl - }); + images.Add(new DestinationImage(image.ContentUrl, image.HostPageUrl)); } - return resultDestinations; + return images; } catch { - return new List { - new Destination - { - Title = "Something went wrong :( Here is a cat instead!", - ImageUrl = "https://cataas.com/cat", - MoreInfoUrl = "https://cataas.com/" - } + return new List + { + new DestinationImage("https://cataas.com/cat", "https://cataas.com/") }; } } diff --git a/src/TravelMonkey/Services/ComputerVisionService.cs b/src/TravelMonkey/Services/ComputerVisionService.cs index 63596ba..6999eaa 100644 --- a/src/TravelMonkey/Services/ComputerVisionService.cs +++ b/src/TravelMonkey/Services/ComputerVisionService.cs @@ -15,11 +15,11 @@ public class ComputerVisionService Endpoint = ApiKeys.ComputerVisionEndpoint }; - public async Task AddPicture(Stream pictureStream) + public async Task AnalyzePicture(string pictureUrl) { try { - var result = await _computerVisionClient.AnalyzeImageInStreamAsync(pictureStream, details: new[] { Details.Landmarks }, visualFeatures: new[] { VisualFeatureTypes.Color, VisualFeatureTypes.Description }); + var result = await _computerVisionClient.AnalyzeImageAsync(pictureUrl, details: new[] { Details.Landmarks }, visualFeatures: new[] { VisualFeatureTypes.Color, VisualFeatureTypes.Description }); // Get most likely description var description = result.Description.Captions.OrderByDescending(d => d.Confidence).FirstOrDefault()?.Text ?? "nothing! No description found"; @@ -35,11 +35,11 @@ public async Task AddPicture(Stream pictureStream) landmarkDescription = landmark != null ? landmark.Detail.Landmarks.OrderByDescending(l => l.Confidence).First().Name : ""; // Wrap in our result object and send along - return new AddPictureResult(description, accentColor, landmarkDescription); + return new AnalyzePictureResult(description, accentColor, landmarkDescription); } catch { - return new AddPictureResult(); + return new AnalyzePictureResult(); } } } diff --git a/src/TravelMonkey/Services/FaceService.cs b/src/TravelMonkey/Services/FaceService.cs new file mode 100644 index 0000000..aa7ddac --- /dev/null +++ b/src/TravelMonkey/Services/FaceService.cs @@ -0,0 +1,31 @@ +using Microsoft.Azure.CognitiveServices.Vision.Face; +using Microsoft.Azure.CognitiveServices.Vision.Face.Models; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Threading.Tasks; + +namespace TravelMonkey.Services +{ + public class FaceService + { + private readonly IFaceClient _faceClient = new FaceClient(new ApiKeyServiceClientCredentials(ApiKeys.FaceApiKey)) + { + Endpoint = ApiKeys.FaceEndpoint + }; + + public async Task DetectFaceEmotion(Stream photoStream) + { + try + { + var result = await _faceClient.Face.DetectWithStreamAsync(photoStream, returnFaceAttributes: new List { FaceAttributeType.Emotion }, recognitionModel: RecognitionModel.Recognition02); + + return result?.FirstOrDefault()?.FaceAttributes?.Emotion ?? new Emotion(); + } + catch + { + return new Emotion(); + } + } + } +} \ No newline at end of file diff --git a/src/TravelMonkey/TravelMonkey.csproj b/src/TravelMonkey/TravelMonkey.csproj index de0691b..d236141 100644 --- a/src/TravelMonkey/TravelMonkey.csproj +++ b/src/TravelMonkey/TravelMonkey.csproj @@ -1,4 +1,4 @@ - + netstandard2.0 @@ -11,6 +11,8 @@ + + @@ -18,18 +20,11 @@ + - - - - - - - - @@ -50,5 +45,13 @@ MainPage.xaml Code + + DestinationPage.xaml + + + + + MSBuild:UpdateDesignTimeXaml + \ No newline at end of file diff --git a/src/TravelMonkey/ViewModels/AddPicturePageViewModel.cs b/src/TravelMonkey/ViewModels/AddPicturePageViewModel.cs index c7acb84..b54afc4 100644 --- a/src/TravelMonkey/ViewModels/AddPicturePageViewModel.cs +++ b/src/TravelMonkey/ViewModels/AddPicturePageViewModel.cs @@ -1,9 +1,11 @@ -using System.Threading.Tasks; -using Acr.UserDialogs; +using Acr.UserDialogs; using Plugin.Media; using Plugin.Media.Abstractions; -using TravelMonkey.Data; -using TravelMonkey.Models; +using System.IO; +using System.Threading; +using System.Threading.Tasks; +using TravelMonkey.Data; +using TravelMonkey.Models; using TravelMonkey.Services; using Xamarin.Forms; @@ -11,13 +13,22 @@ namespace TravelMonkey.ViewModels { public class AddPicturePageViewModel : BaseViewModel { - private readonly ComputerVisionService _computerVisionService = new ComputerVisionService(); + private readonly FaceService _faceService = new FaceService(); - public bool ShowImagePlaceholder => !ShowPhoto; + public Destination Destination { get; private set; } + + public bool ShowImagePlaceholder => !ShowPhoto; + + internal void Init(Destination destination) + { + Destination = destination; + } + public bool ShowPhoto => _photoSource != null; - MediaFile _photo; - StreamImageSource _photoSource; + private MediaFile _photo; + private StreamImageSource _photoSource; + public StreamImageSource PhotoSource { get => _photoSource; @@ -45,24 +56,36 @@ public Color PictureAccentColor set => Set(ref _pictureAccentColor, value); } - private string _pictureDescription; - public string PictureDescription - { - get => _pictureDescription; - set => Set(ref _pictureDescription, value); - } + //private string _pictureDescription; + //public string PictureDescription + //{ + // get => _pictureDescription; + // set => Set(ref _pictureDescription, value); + //} public Command TakePhotoCommand { get; } - public Command AddPictureCommand { get; } + //public Command AddPictureCommand { get; } public AddPicturePageViewModel() { TakePhotoCommand = new Command(async () => await TakePhoto()); - AddPictureCommand = new Command(() => - { - MockDataStore.Pictures.Add(new PictureEntry { Description = _pictureDescription, Image = _photoSource }); - MessagingCenter.Send(this, Constants.PictureAddedMessage); - }); + //AddPictureCommand = new Command(async () => + // { + // if (_photoSource == null) return; + + // byte[] bytes; + // using (var stream = await _photoSource.Stream(CancellationToken.None)) + // { + // using (MemoryStream ms = new MemoryStream()) + // { + // stream.CopyTo(ms); + // bytes = ms.ToArray(); + + // //await PersistentDataStore.AddPicture(_pictureDescription, bytes); + // MessagingCenter.Send(this, Constants.PictureAddedMessage); + // } + // } + // }); } private async Task TakePhoto() @@ -104,20 +127,14 @@ private async Task Post() try { var pictureStream = _photo.GetStreamWithImageRotatedForExternalStorage(); - var result = await _computerVisionService.AddPicture(pictureStream); - if (!result.Succeeded) - { - MessagingCenter.Send(this, Constants.PictureFailedMessage); - return; - } + var emotion = await _faceService.DetectFaceEmotion(pictureStream); - PictureAccentColor = result.AccentColor; + Destination.Emotion = emotion.Happiness * 100.00; - PictureDescription = result.Description; + await PersistentDataStore.AddOrUpdateDestination(Destination); - if (!string.IsNullOrWhiteSpace(result.LandmarkDescription)) - PictureDescription += $". {result.LandmarkDescription}"; + MessagingCenter.Send(this, Constants.PictureAddedMessage); } finally { diff --git a/src/TravelMonkey/ViewModels/DestinationPageViewModel.cs b/src/TravelMonkey/ViewModels/DestinationPageViewModel.cs new file mode 100644 index 0000000..2b6afd4 --- /dev/null +++ b/src/TravelMonkey/ViewModels/DestinationPageViewModel.cs @@ -0,0 +1,80 @@ +using System.Linq; +using System.Timers; +using TravelMonkey.Models; +using Xamarin.Essentials; +using Xamarin.Forms; +using Xamarin.Forms.Internals; + +namespace TravelMonkey.ViewModels +{ + public class DestinationPageViewModel : BaseViewModel + { + private readonly Timer _slideShowTimer = new Timer(5000); + + private Destination _destination; + public Destination Destination + { + get => _destination; + set + { + Set(ref _destination, value); + CurrentImage = Destination.Images.FirstOrDefault(); + } + } + + private DestinationImage _currentImage; + public DestinationImage CurrentImage + { + get => _currentImage; + set => Set(ref _currentImage, value); + } + + public Command OpenUrlCommand { get; } = new Command(async (url) => + { + if (!string.IsNullOrWhiteSpace(url)) + { + await Browser.OpenAsync(url, options: new BrowserLaunchOptions + { + Flags = BrowserLaunchFlags.PresentAsFormSheet, + PreferredToolbarColor = Color.SteelBlue, + PreferredControlColor = Color.White + }); + } + }); + + public DestinationPageViewModel() + { + _slideShowTimer.Elapsed += SlideShowTimer_Elapsed; + } + + private void SlideShowTimer_Elapsed(object sender, ElapsedEventArgs e) + { + var currentIdx = Destination.Images.IndexOf(CurrentImage); + + if (currentIdx == Destination.Images.Count() - 1) + { + CurrentImage = Destination.Images.ElementAt(0); + } + else + { + CurrentImage = Destination.Images.ElementAt(currentIdx + 1); + } + } + + public void Init(Destination destination) + { + Destination = destination; + } + + public void StartSlideShow() + { + _slideShowTimer.Start(); + + } + + public void StopSlideShow() + { + _slideShowTimer.Stop(); + } + } +} diff --git a/src/TravelMonkey/ViewModels/MainPageViewModel.cs b/src/TravelMonkey/ViewModels/MainPageViewModel.cs index 187ec60..a54d63b 100644 --- a/src/TravelMonkey/ViewModels/MainPageViewModel.cs +++ b/src/TravelMonkey/ViewModels/MainPageViewModel.cs @@ -1,64 +1,76 @@ -using System.Collections.Generic; +using System; using System.Collections.ObjectModel; -using System.Timers; +using System.Threading.Tasks; using TravelMonkey.Data; using TravelMonkey.Models; -using Xamarin.Essentials; -using Xamarin.Forms; +using TravelMonkey.Services; namespace TravelMonkey.ViewModels { public class MainPageViewModel : BaseViewModel { - private readonly Timer _slideShowTimer = new Timer(5000); + private readonly BingSearchService _bingSearchService = new BingSearchService(); + private readonly ComputerVisionService _computerVisionService = new ComputerVisionService(); - public List Destinations => MockDataStore.Destinations; - public ObservableCollection Pictures => MockDataStore.Pictures; - - private Destination _currentDestination; - public Destination CurrentDestination + private ObservableCollection _destination = new ObservableCollection(); + public ObservableCollection Destinations { - get => _currentDestination; - set => Set(ref _currentDestination, value); + get => _destination; + set => Set(ref _destination, value); } - public Command OpenUrlCommand { get; } = new Command(async (url) => + private bool _isProcessing = false; + public bool IsProcessing { - if (!string.IsNullOrWhiteSpace(url)) - await Browser.OpenAsync(url, options: new BrowserLaunchOptions - { - Flags = BrowserLaunchFlags.PresentAsFormSheet, - PreferredToolbarColor = Color.SteelBlue, - PreferredControlColor = Color.White - }); - }); + get => _isProcessing; + set => Set(ref _isProcessing, value); + } public MainPageViewModel() { - if (Destinations.Count > 0) - { - CurrentDestination = Destinations[0]; - - _slideShowTimer.Elapsed += (o, a) => - { - var currentIdx = Destinations.IndexOf(CurrentDestination); - - if (currentIdx == Destinations.Count - 1) - CurrentDestination = Destinations[0]; - else - CurrentDestination = Destinations[currentIdx + 1]; - }; - } + //MessagingCenter.Subscribe(this, Constants.PictureAddedMessage, async (vm) => await RefreshDestinations()); + RefreshDestinations(); } - public void StartSlideShow() + private async Task RefreshDestinations() { - _slideShowTimer.Start(); - + var destinations = await PersistentDataStore.GetDestinations(); + Destinations = new ObservableCollection(destinations); } - public void StopSlideShow() + + public async Task AddDestination(string destinationName) { - _slideShowTimer.Stop(); + IsProcessing = true; + + try + { + var images = await _bingSearchService.GetDestinationImages(destinationName); + + foreach(var image in images) + { + var result = await _computerVisionService.AnalyzePicture(image.ImageUrl); + if (result.Succeeded) + { + image.Description = result.Description; + if (!string.IsNullOrWhiteSpace(result.LandmarkDescription)) + { + image.Description += $". {result.LandmarkDescription}"; + } + } + } + + var destination = new Destination(destinationName, images); + await PersistentDataStore.AddOrUpdateDestination(destination); + + await RefreshDestinations(); + } + catch (Exception ex) + { + } + finally + { + IsProcessing = false; + } } } } \ No newline at end of file diff --git a/src/TravelMonkey/Views/AddPicturePage.xaml b/src/TravelMonkey/Views/AddPicturePage.xaml index 8a6f98a..4cbe3b1 100644 --- a/src/TravelMonkey/Views/AddPicturePage.xaml +++ b/src/TravelMonkey/Views/AddPicturePage.xaml @@ -4,16 +4,14 @@ - + - -