This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NDB.Covid19.Droid.cs
14834 lines (9879 loc) · 523 KB
/
NDB.Covid19.Droid.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using System.Threading;
using System.Threading.Tasks;
using Android.App;
using Android.Bluetooth;
using Android.Content;
using Android.Content.PM;
using Android.Content.Res;
using Android.Gms.Common;
using Android.Gms.Nearby;
using Android.Gms.Nearby.ExposureNotification;
using Android.Gms.Tasks;
using Android.Graphics;
using Android.Net;
using Android.OS;
using Android.Runtime;
using Android.Text;
using Android.Text.Method;
using Android.Text.Style;
using Android.Text.Util;
using Android.Util;
using Android.Views;
using Android.Views.Accessibility;
using Android.Views.Animations;
using Android.Widget;
using AndroidX.AppCompat.App;
using AndroidX.AppCompat.Widget;
using AndroidX.ConstraintLayout.Widget;
using AndroidX.Core.App;
using AndroidX.Core.Content.PM;
using AndroidX.Core.Text;
using AndroidX.Fragment.App;
using AndroidX.LocalBroadcastManager.Content;
using AndroidX.RecyclerView.Widget;
using AndroidX.ViewPager.Widget;
using AndroidX.Work;
using CommonServiceLocator;
using Google.Android.Material.Tabs;
using I18NPortable;
using Java.Interop;
using Java.Lang;
using Java.Nio.FileNio;
using Java.Util;
using Java.Util.Regex;
using MoreLinq.Extensions;
using NDB.Covid19.Configuration;
using NDB.Covid19.Droid.Services;
using NDB.Covid19.Droid.Utils;
using NDB.Covid19.Droid.Utils.MessagingCenter;
using NDB.Covid19.Droid.Views;
using NDB.Covid19.Droid.Views.AuthenticationFlow;
using NDB.Covid19.Droid.Views.AuthenticationFlow.ErrorActivities;
using NDB.Covid19.Droid.Views.AuthenticationFlow.QuestionnaireAdapters;
using NDB.Covid19.Droid.Views.DiseaseRate;
using NDB.Covid19.Droid.Views.ENDeveloperTools;
using NDB.Covid19.Droid.Views.InfectionStatus;
using NDB.Covid19.Droid.Views.Messages;
using NDB.Covid19.Droid.Views.Settings;
using NDB.Covid19.Droid.Views.Welcome;
using NDB.Covid19.Enums;
using NDB.Covid19.Interfaces;
using NDB.Covid19.Models;
using NDB.Covid19.OAuth2;
using NDB.Covid19.PersistedData;
using NDB.Covid19.Utils;
using NDB.Covid19.ViewModels;
using NDB.Covid19.WebServices.ErrorHandlers;
using PCLCrypto;
using Plugin.CurrentActivity;
using Unity;
using Unity.Injection;
using Unity.Lifetime;
using Unity.ServiceLocation;
using Xamarin.Auth;
using Xamarin.Essentials;
using Xamarin.ExposureNotification;
using Xamarin.ExposureNotifications;
using XamarinShortcutBadger;
using Yort.Ntp;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: ResourceDesigner("NDB.Covid19.Droid.Resource", IsApplication = true)]
[assembly: AssemblyTitle("NDB.Covid19.Droid")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("NDB.Covid19.Droid")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework("MonoAndroid,Version=v10.0", FrameworkDisplayName = "Xamarin.Android v10.0 Support")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace NDB.Covid19.Droid
{
[Application]
internal class MainApplication : Application, Application.IActivityLifecycleCallbacks, IJavaObject, IDisposable, IJavaPeerable
{
private int _activityReferences;
private BackgroundNotificationBroadcastReceiver _backgroundNotificationBroadcastReceiver;
private IntentFilter _filter;
private FlightModeHandlerBroadcastReceiver _flightModeBroadcastReceiver;
private bool _isActivityChangingConfigurations;
private BroadcastReceiver _permissionsBroadcastReceiver;
public MainApplication(IntPtr handle, JniHandleOwnership transer)
: base(handle, transer)
{
}
public MainApplication()
{
}
public void OnActivityCreated(Activity activity, Bundle savedInstanceState)
{
AccessibilityUtils.AdjustFontScale(activity);
MessagingCenter.Subscribe<object>(activity, MessagingCenterKeys.KEY_FORCE_UPDATE, delegate
{
OnForceUpdate(activity);
});
}
public void OnActivityDestroyed(Activity activity)
{
MessagingCenter.Unsubscribe<object>(this, MessagingCenterKeys.KEY_FORCE_UPDATE);
}
public void OnActivityPaused(Activity activity)
{
}
public void OnActivityResumed(Activity activity)
{
}
public void OnActivitySaveInstanceState(Activity activity, Bundle outState)
{
}
public void OnActivityStarted(Activity activity)
{
_activityReferences++;
if (_activityReferences == 1 && !_isActivityChangingConfigurations)
{
LogUtils.LogMessage(LogSeverity.INFO, "The user has opened the app", null);
if (activity is LoadingPageActivity)
{
LogUtils.LogMessage(LogSeverity.INFO, "The user is seeing Loading Page", null, LocalPreferencesHelper.GetCorrelationId());
}
}
}
public void OnActivityStopped(Activity activity)
{
_isActivityChangingConfigurations = activity.IsChangingConfigurations;
if (--_activityReferences == 0 && !_isActivityChangingConfigurations)
{
if (activity is QuestionnairePageActivity)
{
LogUtils.LogMessage(LogSeverity.INFO, "The user left Questionnaire", null, LocalPreferencesHelper.GetCorrelationId());
}
else if (activity is QuestionnaireCountriesSelectionActivity)
{
LogUtils.LogMessage(LogSeverity.INFO, "The user left Questionnaire Countries Selection", null, LocalPreferencesHelper.GetCorrelationId());
}
else if (activity is LoadingPageActivity)
{
LogUtils.LogMessage(LogSeverity.INFO, "The user left Loading Page", null, LocalPreferencesHelper.GetCorrelationId());
}
else if (activity is QuestionnaireConfirmLeaveActivity)
{
LogUtils.LogMessage(LogSeverity.INFO, "The user left Questionnaire Confirm Leave", null, LocalPreferencesHelper.GetCorrelationId());
}
else if (activity is QuestionnairePreShareActivity)
{
LogUtils.LogMessage(LogSeverity.INFO, "The user left Questionnaire Pre Share", null, LocalPreferencesHelper.GetCorrelationId());
}
}
}
private void Init()
{
_filter = new IntentFilter();
_filter.AddAction("android.bluetooth.adapter.action.STATE_CHANGED");
_filter.AddAction("android.location.PROVIDERS_CHANGED");
AppDomain.CurrentDomain.UnhandledException += LogUtils.OnUnhandledException;
AndroidEnvironment.UnhandledExceptionRaiser += OnUnhandledAndroidException;
DroidDependencyInjectionConfig.Init();
Platform.Init(this);
CrossCurrentActivity.Current.Init(this);
LocalesService.Initialize();
new MigrationService().Migrate();
_permissionsBroadcastReceiver = new PermissionsBroadcastReceiver();
_flightModeBroadcastReceiver = new FlightModeHandlerBroadcastReceiver();
_backgroundNotificationBroadcastReceiver = new BackgroundNotificationBroadcastReceiver();
LogUtils.SendAllLogs();
if (PlayServicesVersionUtils.PlayServicesVersionNumberIsLargeEnough(PackageManager))
{
BackgroundFetchScheduler.ScheduleBackgroundFetch();
}
}
private void OnUnhandledAndroidException(object sender, RaiseThrowableEventArgs e)
{
if (e?.Exception != null)
{
string correlationId = LocalPreferencesHelper.GetCorrelationId();
if (!string.IsNullOrEmpty(correlationId))
{
LogUtils.LogMessage(LogSeverity.INFO, "The user has experienced native Android crash", null, correlationId);
}
string contextDescription = "MainApplication.OnUnhandledAndroidException: " + ((!e.Handled) ? "Native unhandled crash" : "Native unhandled exception - not crashing");
LogUtils.LogException(e.Handled ? LogSeverity.WARNING : LogSeverity.ERROR, e.Exception, contextDescription);
}
}
public override void OnCreate()
{
base.OnCreate();
Init();
RegisterActivityLifecycleCallbacks(this);
ManualGarbageCollectionTool();
RegisterReceiver(_permissionsBroadcastReceiver, _filter);
RegisterReceiver(_flightModeBroadcastReceiver, new IntentFilter("android.intent.action.AIRPLANE_MODE"));
LocalBroadcastManager.GetInstance(ApplicationContext).RegisterReceiver(_backgroundNotificationBroadcastReceiver, new IntentFilter("com.netcompany.smittestop_exposure_notification.background_notification"));
}
public override void OnTerminate()
{
UnregisterReceiver(_permissionsBroadcastReceiver);
UnregisterReceiver(_flightModeBroadcastReceiver);
LocalBroadcastManager.GetInstance(ApplicationContext).UnregisterReceiver(_backgroundNotificationBroadcastReceiver);
base.OnTerminate();
}
private void ManualGarbageCollectionTool()
{
}
private void OnForceUpdate(Activity activity)
{
activity.RunOnUiThread(delegate
{
Intent intent = new Intent(this, typeof(ForceUpdateActivity));
intent.AddFlags(ActivityFlags.ClearTask | ActivityFlags.ClearTop | ActivityFlags.NewTask);
StartActivity(intent);
});
activity.Finish();
}
}
[GeneratedCode("Xamarin.Android.Build.Tasks", "1.0.0.0")]
public class Resource
{
public class Animation
{
public const int abc_fade_in = 2130771968;
public const int abc_fade_out = 2130771969;
public const int abc_grow_fade_in_from_bottom = 2130771970;
public const int abc_popup_enter = 2130771971;
public const int abc_popup_exit = 2130771972;
public const int abc_shrink_fade_out_from_bottom = 2130771973;
public const int abc_slide_in_bottom = 2130771974;
public const int abc_slide_in_top = 2130771975;
public const int abc_slide_out_bottom = 2130771976;
public const int abc_slide_out_top = 2130771977;
public const int abc_tooltip_enter = 2130771978;
public const int abc_tooltip_exit = 2130771979;
public const int background_circle_anim = 2130771980;
public const int btn_checkbox_to_checked_box_inner_merged_animation = 2130771981;
public const int btn_checkbox_to_checked_box_outer_merged_animation = 2130771982;
public const int btn_checkbox_to_checked_icon_null_animation = 2130771983;
public const int btn_checkbox_to_unchecked_box_inner_merged_animation = 2130771984;
public const int btn_checkbox_to_unchecked_check_path_merged_animation = 2130771985;
public const int btn_checkbox_to_unchecked_icon_null_animation = 2130771986;
public const int btn_radio_to_off_mtrl_dot_group_animation = 2130771987;
public const int btn_radio_to_off_mtrl_ring_outer_animation = 2130771988;
public const int btn_radio_to_off_mtrl_ring_outer_path_animation = 2130771989;
public const int btn_radio_to_on_mtrl_dot_group_animation = 2130771990;
public const int btn_radio_to_on_mtrl_ring_outer_animation = 2130771991;
public const int btn_radio_to_on_mtrl_ring_outer_path_animation = 2130771992;
public const int design_bottom_sheet_slide_in = 2130771993;
public const int design_bottom_sheet_slide_out = 2130771994;
public const int design_snackbar_in = 2130771995;
public const int design_snackbar_out = 2130771996;
public const int fragment_close_enter = 2130771997;
public const int fragment_close_exit = 2130771998;
public const int fragment_fade_enter = 2130771999;
public const int fragment_fade_exit = 2130772000;
public const int fragment_fast_out_extra_slow_in = 2130772001;
public const int fragment_open_enter = 2130772002;
public const int fragment_open_exit = 2130772003;
public const int mtrl_bottom_sheet_slide_in = 2130772004;
public const int mtrl_bottom_sheet_slide_out = 2130772005;
public const int mtrl_card_lowers_interpolator = 2130772006;
public const int slide_in_right = 2130772007;
public const int slide_out_left = 2130772008;
static Animation()
{
ResourceIdManager.UpdateIdValues();
}
private Animation()
{
}
}
public class Animator
{
public const int design_appbar_state_list_animator = 2130837504;
public const int design_fab_hide_motion_spec = 2130837505;
public const int design_fab_show_motion_spec = 2130837506;
public const int mtrl_btn_state_list_anim = 2130837507;
public const int mtrl_btn_unelevated_state_list_anim = 2130837508;
public const int mtrl_card_state_list_anim = 2130837509;
public const int mtrl_chip_state_list_anim = 2130837510;
public const int mtrl_extended_fab_change_size_motion_spec = 2130837511;
public const int mtrl_extended_fab_hide_motion_spec = 2130837512;
public const int mtrl_extended_fab_show_motion_spec = 2130837513;
public const int mtrl_extended_fab_state_list_animator = 2130837514;
public const int mtrl_fab_hide_motion_spec = 2130837515;
public const int mtrl_fab_show_motion_spec = 2130837516;
public const int mtrl_fab_transformation_sheet_collapse_spec = 2130837517;
public const int mtrl_fab_transformation_sheet_expand_spec = 2130837518;
static Animator()
{
ResourceIdManager.UpdateIdValues();
}
private Animator()
{
}
}
public class Attribute
{
public const int actionBarDivider = 2130903040;
public const int actionBarItemBackground = 2130903041;
public const int actionBarPopupTheme = 2130903042;
public const int actionBarSize = 2130903043;
public const int actionBarSplitStyle = 2130903044;
public const int actionBarStyle = 2130903045;
public const int actionBarTabBarStyle = 2130903046;
public const int actionBarTabStyle = 2130903047;
public const int actionBarTabTextStyle = 2130903048;
public const int actionBarTheme = 2130903049;
public const int actionBarWidgetTheme = 2130903050;
public const int actionButtonStyle = 2130903051;
public const int actionDropDownStyle = 2130903052;
public const int actionLayout = 2130903053;
public const int actionMenuTextAppearance = 2130903054;
public const int actionMenuTextColor = 2130903055;
public const int actionModeBackground = 2130903056;
public const int actionModeCloseButtonStyle = 2130903057;
public const int actionModeCloseDrawable = 2130903058;
public const int actionModeCopyDrawable = 2130903059;
public const int actionModeCutDrawable = 2130903060;
public const int actionModeFindDrawable = 2130903061;
public const int actionModePasteDrawable = 2130903062;
public const int actionModePopupWindowStyle = 2130903063;
public const int actionModeSelectAllDrawable = 2130903064;
public const int actionModeShareDrawable = 2130903065;
public const int actionModeSplitBackground = 2130903066;
public const int actionModeStyle = 2130903067;
public const int actionModeWebSearchDrawable = 2130903068;
public const int actionOverflowButtonStyle = 2130903069;
public const int actionOverflowMenuStyle = 2130903070;
public const int actionProviderClass = 2130903071;
public const int actionTextColorAlpha = 2130903072;
public const int actionViewClass = 2130903073;
public const int activityChooserViewStyle = 2130903074;
public const int alertDialogButtonGroupStyle = 2130903075;
public const int alertDialogCenterButtons = 2130903076;
public const int alertDialogStyle = 2130903077;
public const int alertDialogTheme = 2130903078;
public const int alignContent = 2130903079;
public const int alignItems = 2130903080;
public const int allowStacking = 2130903081;
public const int alpha = 2130903082;
public const int alphabeticModifiers = 2130903083;
public const int animationMode = 2130903084;
public const int appBarLayoutStyle = 2130903085;
public const int arrowHeadLength = 2130903086;
public const int arrowShaftLength = 2130903087;
public const int autoCompleteTextViewStyle = 2130903088;
public const int autoSizeMaxTextSize = 2130903089;
public const int autoSizeMinTextSize = 2130903090;
public const int autoSizePresetSizes = 2130903091;
public const int autoSizeStepGranularity = 2130903092;
public const int autoSizeTextType = 2130903093;
public const int background = 2130903094;
public const int backgroundColor = 2130903095;
public const int backgroundInsetBottom = 2130903096;
public const int backgroundInsetEnd = 2130903097;
public const int backgroundInsetStart = 2130903098;
public const int backgroundInsetTop = 2130903099;
public const int backgroundOverlayColorAlpha = 2130903100;
public const int backgroundSplit = 2130903101;
public const int backgroundStacked = 2130903102;
public const int backgroundTint = 2130903103;
public const int backgroundTintMode = 2130903104;
public const int badgeGravity = 2130903105;
public const int badgeStyle = 2130903106;
public const int badgeTextColor = 2130903107;
public const int barLength = 2130903108;
public const int barrierAllowsGoneWidgets = 2130903109;
public const int barrierDirection = 2130903110;
public const int behavior_autoHide = 2130903111;
public const int behavior_autoShrink = 2130903112;
public const int behavior_expandedOffset = 2130903113;
public const int behavior_fitToContents = 2130903114;
public const int behavior_halfExpandedRatio = 2130903115;
public const int behavior_hideable = 2130903116;
public const int behavior_overlapTop = 2130903117;
public const int behavior_peekHeight = 2130903118;
public const int behavior_saveFlags = 2130903119;
public const int behavior_skipCollapsed = 2130903120;
public const int borderlessButtonStyle = 2130903122;
public const int borderWidth = 2130903121;
public const int bottomAppBarStyle = 2130903123;
public const int bottomNavigationStyle = 2130903124;
public const int bottomSheetDialogTheme = 2130903125;
public const int bottomSheetStyle = 2130903126;
public const int boxBackgroundColor = 2130903127;
public const int boxBackgroundMode = 2130903128;
public const int boxCollapsedPaddingTop = 2130903129;
public const int boxCornerRadiusBottomEnd = 2130903130;
public const int boxCornerRadiusBottomStart = 2130903131;
public const int boxCornerRadiusTopEnd = 2130903132;
public const int boxCornerRadiusTopStart = 2130903133;
public const int boxStrokeColor = 2130903134;
public const int boxStrokeWidth = 2130903135;
public const int boxStrokeWidthFocused = 2130903136;
public const int buttonBarButtonStyle = 2130903137;
public const int buttonBarNegativeButtonStyle = 2130903138;
public const int buttonBarNeutralButtonStyle = 2130903139;
public const int buttonBarPositiveButtonStyle = 2130903140;
public const int buttonBarStyle = 2130903141;
public const int buttonCompat = 2130903142;
public const int buttonGravity = 2130903143;
public const int buttonIconDimen = 2130903144;
public const int buttonPanelSideLayout = 2130903145;
public const int buttonSize = 2130903146;
public const int buttonStyle = 2130903147;
public const int buttonStyleSmall = 2130903148;
public const int buttonTint = 2130903149;
public const int buttonTintMode = 2130903150;
public const int cardBackgroundColor = 2130903151;
public const int cardCornerRadius = 2130903152;
public const int cardElevation = 2130903153;
public const int cardForegroundColor = 2130903154;
public const int cardMaxElevation = 2130903155;
public const int cardPreventCornerOverlap = 2130903156;
public const int cardUseCompatPadding = 2130903157;
public const int cardViewStyle = 2130903158;
public const int chainUseRtl = 2130903159;
public const int checkboxStyle = 2130903160;
public const int checkedButton = 2130903161;
public const int checkedChip = 2130903162;
public const int checkedIcon = 2130903163;
public const int checkedIconEnabled = 2130903164;
public const int checkedIconTint = 2130903165;
public const int checkedIconVisible = 2130903166;
public const int checkedTextViewStyle = 2130903167;
public const int chipBackgroundColor = 2130903168;
public const int chipCornerRadius = 2130903169;
public const int chipEndPadding = 2130903170;
public const int chipGroupStyle = 2130903171;
public const int chipIcon = 2130903172;
public const int chipIconEnabled = 2130903173;
public const int chipIconSize = 2130903174;
public const int chipIconTint = 2130903175;
public const int chipIconVisible = 2130903176;
public const int chipMinHeight = 2130903177;
public const int chipMinTouchTargetSize = 2130903178;
public const int chipSpacing = 2130903179;
public const int chipSpacingHorizontal = 2130903180;
public const int chipSpacingVertical = 2130903181;
public const int chipStandaloneStyle = 2130903182;
public const int chipStartPadding = 2130903183;
public const int chipStrokeColor = 2130903184;
public const int chipStrokeWidth = 2130903185;
public const int chipStyle = 2130903186;
public const int chipSurfaceColor = 2130903187;
public const int circleCrop = 2130903188;
public const int closeIcon = 2130903189;
public const int closeIconEnabled = 2130903190;
public const int closeIconEndPadding = 2130903191;
public const int closeIconSize = 2130903192;
public const int closeIconStartPadding = 2130903193;
public const int closeIconTint = 2130903194;
public const int closeIconVisible = 2130903195;
public const int closeItemLayout = 2130903196;
public const int collapseContentDescription = 2130903197;
public const int collapsedTitleGravity = 2130903199;
public const int collapsedTitleTextAppearance = 2130903200;
public const int collapseIcon = 2130903198;
public const int color = 2130903201;
public const int colorAccent = 2130903202;
public const int colorBackgroundFloating = 2130903203;
public const int colorButtonNormal = 2130903204;
public const int colorControlActivated = 2130903205;
public const int colorControlHighlight = 2130903206;
public const int colorControlNormal = 2130903207;
public const int colorError = 2130903208;
public const int colorOnBackground = 2130903209;
public const int colorOnError = 2130903210;
public const int colorOnPrimary = 2130903211;
public const int colorOnPrimarySurface = 2130903212;
public const int colorOnSecondary = 2130903213;
public const int colorOnSurface = 2130903214;
public const int colorPrimary = 2130903215;
public const int colorPrimaryDark = 2130903216;
public const int colorPrimarySurface = 2130903217;
public const int colorPrimaryVariant = 2130903218;
public const int colorScheme = 2130903219;
public const int colorSecondary = 2130903220;
public const int colorSecondaryVariant = 2130903221;
public const int colorSurface = 2130903222;
public const int colorSwitchThumbNormal = 2130903223;
public const int commitIcon = 2130903224;
public const int constraintSet = 2130903225;
public const int constraint_referenced_ids = 2130903226;
public const int content = 2130903227;
public const int contentDescription = 2130903228;
public const int contentInsetEnd = 2130903229;
public const int contentInsetEndWithActions = 2130903230;
public const int contentInsetLeft = 2130903231;
public const int contentInsetRight = 2130903232;
public const int contentInsetStart = 2130903233;
public const int contentInsetStartWithNavigation = 2130903234;
public const int contentPadding = 2130903235;
public const int contentPaddingBottom = 2130903236;
public const int contentPaddingLeft = 2130903237;
public const int contentPaddingRight = 2130903238;
public const int contentPaddingTop = 2130903239;
public const int contentScrim = 2130903240;
public const int controlBackground = 2130903241;
public const int coordinatorLayoutStyle = 2130903242;
public const int cornerFamily = 2130903243;
public const int cornerFamilyBottomLeft = 2130903244;
public const int cornerFamilyBottomRight = 2130903245;
public const int cornerFamilyTopLeft = 2130903246;
public const int cornerFamilyTopRight = 2130903247;
public const int cornerRadius = 2130903248;
public const int cornerSize = 2130903249;
public const int cornerSizeBottomLeft = 2130903250;
public const int cornerSizeBottomRight = 2130903251;
public const int cornerSizeTopLeft = 2130903252;
public const int cornerSizeTopRight = 2130903253;
public const int counterEnabled = 2130903254;
public const int counterMaxLength = 2130903255;
public const int counterOverflowTextAppearance = 2130903256;
public const int counterOverflowTextColor = 2130903257;
public const int counterTextAppearance = 2130903258;
public const int counterTextColor = 2130903259;
public const int customNavigationLayout = 2130903260;
public const int dayInvalidStyle = 2130903261;
public const int daySelectedStyle = 2130903262;
public const int dayStyle = 2130903263;
public const int dayTodayStyle = 2130903264;
public const int defaultQueryHint = 2130903265;
public const int dialogCornerRadius = 2130903266;
public const int dialogPreferredPadding = 2130903267;
public const int dialogTheme = 2130903268;
public const int displayOptions = 2130903269;
public const int divider = 2130903270;
public const int dividerDrawable = 2130903271;
public const int dividerDrawableHorizontal = 2130903272;
public const int dividerDrawableVertical = 2130903273;
public const int dividerHorizontal = 2130903274;
public const int dividerPadding = 2130903275;
public const int dividerVertical = 2130903276;
public const int drawableBottomCompat = 2130903277;
public const int drawableEndCompat = 2130903278;
public const int drawableLeftCompat = 2130903279;
public const int drawableRightCompat = 2130903280;
public const int drawableSize = 2130903281;
public const int drawableStartCompat = 2130903282;
public const int drawableTint = 2130903283;
public const int drawableTintMode = 2130903284;
public const int drawableTopCompat = 2130903285;
public const int drawerArrowStyle = 2130903286;
public const int dropdownListPreferredItemHeight = 2130903288;
public const int dropDownListViewStyle = 2130903287;
public const int editTextBackground = 2130903289;
public const int editTextColor = 2130903290;
public const int editTextStyle = 2130903291;
public const int elevation = 2130903292;
public const int elevationOverlayColor = 2130903293;
public const int elevationOverlayEnabled = 2130903294;
public const int emptyVisibility = 2130903295;
public const int endIconCheckable = 2130903296;
public const int endIconContentDescription = 2130903297;
public const int endIconDrawable = 2130903298;
public const int endIconMode = 2130903299;
public const int endIconTint = 2130903300;
public const int endIconTintMode = 2130903301;
public const int enforceMaterialTheme = 2130903302;
public const int enforceTextAppearance = 2130903303;
public const int ensureMinTouchTargetSize = 2130903304;
public const int errorEnabled = 2130903305;
public const int errorIconDrawable = 2130903306;
public const int errorIconTint = 2130903307;
public const int errorIconTintMode = 2130903308;
public const int errorTextAppearance = 2130903309;
public const int errorTextColor = 2130903310;
public const int expandActivityOverflowButtonDrawable = 2130903311;
public const int expanded = 2130903312;
public const int expandedTitleGravity = 2130903313;
public const int expandedTitleMargin = 2130903314;
public const int expandedTitleMarginBottom = 2130903315;
public const int expandedTitleMarginEnd = 2130903316;
public const int expandedTitleMarginStart = 2130903317;
public const int expandedTitleMarginTop = 2130903318;
public const int expandedTitleTextAppearance = 2130903319;
public const int extendedFloatingActionButtonStyle = 2130903321;
public const int extendMotionSpec = 2130903320;
public const int fabAlignmentMode = 2130903322;
public const int fabAnimationMode = 2130903323;
public const int fabCradleMargin = 2130903324;
public const int fabCradleRoundedCornerRadius = 2130903325;
public const int fabCradleVerticalOffset = 2130903326;
public const int fabCustomSize = 2130903327;
public const int fabSize = 2130903328;
public const int fastScrollEnabled = 2130903329;
public const int fastScrollHorizontalThumbDrawable = 2130903330;
public const int fastScrollHorizontalTrackDrawable = 2130903331;
public const int fastScrollVerticalThumbDrawable = 2130903332;
public const int fastScrollVerticalTrackDrawable = 2130903333;
public const int firstBaselineToTopHeight = 2130903334;
public const int flexDirection = 2130903335;