-
Notifications
You must be signed in to change notification settings - Fork 0
/
line-count.txt
3431 lines (3426 loc) · 401 KB
/
line-count.txt
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
Line counts for project F:\Arend-Jan\Documents\GitHub\pws.
Generated by the Atom editor package Line-Count on December 19 2016 20:50.
Counts are in order of source, comments, and total.
Files
-----
22 0 22 app/Smartfridge/.idea/compiler.xml
3 0 3 app/Smartfridge/.idea/copyright/profiles_settings.xml
6 0 6 app/Smartfridge/.idea/encodings.xml
19 0 19 app/Smartfridge/.idea/gradle.xml
9 0 9 app/Smartfridge/.idea/libraries/android_android_25.xml
12 0 12 app/Smartfridge/.idea/libraries/animated_vector_drawable_25_0_0.xml
15 0 15 app/Smartfridge/.idea/libraries/appcompat_v7_25_0_0.xml
15 0 15 app/Smartfridge/.idea/libraries/design_25_0_0.xml
11 0 11 app/Smartfridge/.idea/libraries/gson_2_8_0.xml
11 0 11 app/Smartfridge/.idea/libraries/hamcrest_core_1_3.xml
11 0 11 app/Smartfridge/.idea/libraries/junit_4_12.xml
10 0 10 app/Smartfridge/.idea/libraries/play_services_base_9_8_0.xml
10 0 10 app/Smartfridge/.idea/libraries/play_services_basement_9_8_0.xml
10 0 10 app/Smartfridge/.idea/libraries/play_services_gcm_9_8_0.xml
10 0 10 app/Smartfridge/.idea/libraries/play_services_iid_9_8_0.xml
10 0 10 app/Smartfridge/.idea/libraries/play_services_tasks_9_8_0.xml
15 0 15 app/Smartfridge/.idea/libraries/recyclerview_v7_25_0_0.xml
11 0 11 app/Smartfridge/.idea/libraries/support_annotations_25_0_0.xml
16 0 16 app/Smartfridge/.idea/libraries/support_compat_25_0_0.xml
16 0 16 app/Smartfridge/.idea/libraries/support_core_ui_25_0_0.xml
16 0 16 app/Smartfridge/.idea/libraries/support_core_utils_25_0_0.xml
16 0 16 app/Smartfridge/.idea/libraries/support_fragment_25_0_0.xml
16 0 16 app/Smartfridge/.idea/libraries/support_media_compat_25_0_0.xml
10 0 10 app/Smartfridge/.idea/libraries/support_v4_25_0_0.xml
12 0 12 app/Smartfridge/.idea/libraries/support_vector_drawable_25_0_0.xml
12 0 12 app/Smartfridge/.idea/libraries/transition_25_0_0.xml
46 0 46 app/Smartfridge/.idea/misc.xml
9 0 9 app/Smartfridge/.idea/modules.xml
12 0 12 app/Smartfridge/.idea/runConfigurations.xml
18 0 18 app/Smartfridge/.idea/statistic.xml
3188 0 3188 app/Smartfridge/.idea/workspace.xml
9 3 13 app/Smartfridge/app/build/generated/source/buildConfig/androidTest/debug/com/svshizzle/pws/smartfridge/test/BuildConfig.java
9 3 13 app/Smartfridge/app/build/generated/source/buildConfig/debug/com/svshizzle/pws/smartfridge/BuildConfig.java
9 3 13 app/Smartfridge/app/build/generated/source/buildConfig/release/com/svshizzle/pws/smartfridge/BuildConfig.java
1802 6 1809 app/Smartfridge/app/build/generated/source/r/debug/android/support/design/R.java
7 6 14 app/Smartfridge/app/build/generated/source/r/debug/android/support/transition/R.java
1434 6 1441 app/Smartfridge/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java
26 6 33 app/Smartfridge/app/build/generated/source/r/debug/android/support/v7/recyclerview/R.java
106 6 113 app/Smartfridge/app/build/generated/source/r/debug/com/google/android/gms/R.java
6 6 14 app/Smartfridge/app/build/generated/source/r/debug/com/svshizzle/pws/smartfridge/Manifest.java
3161 8052 11216 app/Smartfridge/app/build/generated/source/r/debug/com/svshizzle/pws/smartfridge/R.java
1802 6 1809 app/Smartfridge/app/build/generated/source/r/release/android/support/design/R.java
7 6 14 app/Smartfridge/app/build/generated/source/r/release/android/support/transition/R.java
1434 6 1441 app/Smartfridge/app/build/generated/source/r/release/android/support/v7/appcompat/R.java
26 6 33 app/Smartfridge/app/build/generated/source/r/release/android/support/v7/recyclerview/R.java
106 6 113 app/Smartfridge/app/build/generated/source/r/release/com/google/android/gms/R.java
6 6 14 app/Smartfridge/app/build/generated/source/r/release/com/svshizzle/pws/smartfridge/Manifest.java
3161 8052 11216 app/Smartfridge/app/build/generated/source/r/release/com/svshizzle/pws/smartfridge/R.java
6 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/24.2.1/AndroidManifest.xml
6 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/25.0.0/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/AndroidManifest.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_fade_in.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_fade_out.xml
11 18 30 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_grow_fade_in_from_bottom.xml
7 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_popup_enter.xml
7 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_popup_exit.xml
11 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_shrink_fade_out_from_bottom.xml
5 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_slide_in_bottom.xml
5 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_slide_in_top.xml
5 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_slide_out_bottom.xml
5 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/anim/abc_slide_out_top.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v11/abc_background_cache_hint_selector_material_light.xml
5 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_btn_colored_borderless_text_material.xml
8 14 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_color_highlight_material.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_tint_btn_checkable.xml
10 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_tint_default.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_tint_edittext.xml
5 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_tint_seek_thumb.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_tint_spinner.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_tint_switch_thumb.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color-v23/abc_tint_switch_track.xml
4 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_background_cache_hint_selector_material_dark.xml
4 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_background_cache_hint_selector_material_light.xml
8 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_btn_colored_borderless_text_material.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_primary_text_disable_only_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_primary_text_disable_only_material_light.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_primary_text_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_primary_text_material_light.xml
6 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_search_url_text.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_secondary_text_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_secondary_text_material_light.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_tint_btn_checkable.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_tint_default.xml
9 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_tint_edittext.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_tint_seek_thumb.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_tint_spinner.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_tint_switch_thumb.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/abc_tint_switch_track.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/switch_thumb_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/color/switch_thumb_material_light.xml
3 14 18 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable-v21/abc_action_bar_item_background_material.xml
33 16 50 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable-v21/abc_btn_colored_material.xml
22 14 37 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable-v21/abc_edit_text_material.xml
4 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable-v23/abc_control_background_material.xml
6 14 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_btn_borderless_material.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_btn_check_material.xml
4 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_btn_colored_material.xml
15 15 32 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_btn_default_mtrl_shape.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_btn_radio_material.xml
5 17 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_cab_background_internal_bg.xml
4 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_cab_background_top_material.xml
11 14 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_dialog_material_background.xml
12 14 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_edit_text_material.xml
12 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ic_ab_back_material.xml
17 14 33 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ic_clear_material.xml
11 14 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ic_go_search_api_material.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ic_menu_overflow_material.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ic_search_api_material.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ic_voice_search_api_material.xml
9 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_item_background_holo_dark.xml
9 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_item_background_holo_light.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_list_selector_background_transition_holo_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_list_selector_background_transition_holo_light.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_list_selector_holo_dark.xml
9 15 28 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_list_selector_holo_light.xml
14 14 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ratingbar_indicator_material.xml
14 14 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ratingbar_material.xml
12 14 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_ratingbar_small_material.xml
20 14 35 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_seekbar_thumb_material.xml
7 14 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_seekbar_tick_mark_material.xml
25 14 40 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_seekbar_track_material.xml
21 14 36 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_spinner_textfield_background_material.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_switch_thumb_material.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_tab_indicator_material.xml
7 15 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_text_cursor_material.xml
7 14 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_textfield_search_material.xml
10 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/drawable/abc_vector_test.xml
19 14 34 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_action_bar_title_item.xml
8 14 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_action_bar_up_container.xml
6 16 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_action_bar_view_list_nav_layout.xml
15 14 30 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_action_menu_item_layout.xml
9 14 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_action_menu_layout.xml
8 17 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_action_mode_bar.xml
12 14 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_action_mode_close_item_material.xml
47 17 71 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_activity_chooser_view.xml
32 14 52 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_activity_chooser_view_list_item.xml
37 15 58 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_alert_dialog_button_bar_material.xml
93 16 127 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_alert_dialog_material.xml
24 18 47 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_dialog_title_material.xml
6 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_expanded_menu_layout.xml
9 14 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_list_menu_item_checkbox.xml
12 14 28 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_list_menu_item_icon.xml
35 17 60 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_list_menu_item_layout.xml
9 14 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_list_menu_item_radio.xml
18 14 35 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_popup_menu_header_item_layout.xml
45 17 71 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_popup_menu_item_layout.xml
9 14 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_screen_content_include.xml
16 14 34 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_screen_simple.xml
15 20 39 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_screen_simple_overlay_action_mode.xml
32 14 53 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_screen_toolbar.xml
54 23 85 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_search_dropdown_item_icons_2line.xml
106 20 137 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_search_view.xml
14 20 35 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/abc_select_dialog_material.xml
10 14 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/notification_media_action.xml
13 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/notification_media_cancel_action.xml
43 16 60 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/notification_template_big_media.xml
47 17 68 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/notification_template_big_media_narrow.xml
92 15 108 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/notification_template_lines.xml
35 16 52 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/notification_template_media.xml
12 15 28 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/notification_template_part_chronometer.xml
12 15 28 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/notification_template_part_time.xml
12 20 33 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/select_dialog_item_material.xml
17 15 33 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/select_dialog_multichoice_material.xml
17 15 33 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/select_dialog_singlechoice_material.xml
8 17 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/layout/support_simple_spinner_dropdown_item.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-af/values-af.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-am/values-am.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ar/values-ar.xml
23 0 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-az-rAZ/values-az-rAZ.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-b+sr+Latn/values-b+sr+Latn.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-be-rBY/values-be-rBY.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-bg/values-bg.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-bn-rBD/values-bn-rBD.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-bs-rBA/values-bs-rBA.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ca/values-ca.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-cs/values-cs.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-da/values-da.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-de/values-de.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-el/values-el.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-en-rAU/values-en-rAU.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-en-rGB/values-en-rGB.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-en-rIN/values-en-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-es-rUS/values-es-rUS.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-es/values-es.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-et-rEE/values-et-rEE.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-eu-rES/values-eu-rES.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-fa/values-fa.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-fi/values-fi.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-fr-rCA/values-fr-rCA.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-fr/values-fr.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-gl-rES/values-gl-rES.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-gu-rIN/values-gu-rIN.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-h720dp-v13/values-h720dp-v13.xml
8 0 8 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-hdpi-v4/values-hdpi-v4.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-hi/values-hi.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-hr/values-hr.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-hu/values-hu.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-hy-rAM/values-hy-rAM.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-in/values-in.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-is-rIS/values-is-rIS.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-it/values-it.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-iw/values-iw.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ja/values-ja.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ka-rGE/values-ka-rGE.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-kk-rKZ/values-kk-rKZ.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-km-rKH/values-km-rKH.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-kn-rIN/values-kn-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ko/values-ko.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ky-rKG/values-ky-rKG.xml
7 0 7 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-land/values-land.xml
12 0 12 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-large-v4/values-large-v4.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ldltr-v21/values-ldltr-v21.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-lo-rLA/values-lo-rLA.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-lt/values-lt.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-lv/values-lv.xml
22 0 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-mk-rMK/values-mk-rMK.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ml-rIN/values-ml-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-mn-rMN/values-mn-rMN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-mr-rIN/values-mr-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ms-rMY/values-ms-rMY.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-my-rMM/values-my-rMM.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-nb/values-nb.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ne-rNP/values-ne-rNP.xml
10 0 10 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-night-v8/values-night-v8.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-nl/values-nl.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-pa-rIN/values-pa-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-pl/values-pl.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-port/values-port.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-pt-rBR/values-pt-rBR.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-pt-rPT/values-pt-rPT.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-pt/values-pt.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ro/values-ro.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ru/values-ru.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-si-rLK/values-si-rLK.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-sk/values-sk.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-sl/values-sl.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-sq-rAL/values-sq-rAL.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-sr/values-sr.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-sv/values-sv.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-sw/values-sw.xml
11 0 11 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-sw600dp-v13/values-sw600dp-v13.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ta-rIN/values-ta-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-te-rIN/values-te-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-th/values-th.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-tl/values-tl.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-tr/values-tr.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-uk/values-uk.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-ur-rPK/values-ur-rPK.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-uz-rUZ/values-uz-rUZ.xml
151 6 171 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v11/values-v11.xml
11 0 11 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v12/values-v12.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v13/values-v13.xml
27 0 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v14/values-v14.xml
51 0 51 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v17/values-v17.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v18/values-v18.xml
231 11 254 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v21/values-v21.xml
13 2 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v22/values-v22.xml
28 6 38 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-v23/values-v23.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-vi/values-vi.xml
9 0 9 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-xlarge-v4/values-xlarge-v4.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-zh-rCN/values-zh-rCN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-zh-rHK/values-zh-rHK.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-zh-rTW/values-zh-rTW.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values-zu/values-zu.xml
1500 46 1676 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.2.1/res/values/values.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/AndroidManifest.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_fade_in.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_fade_out.xml
11 18 30 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_grow_fade_in_from_bottom.xml
7 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_popup_enter.xml
7 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_popup_exit.xml
11 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_shrink_fade_out_from_bottom.xml
5 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_slide_in_bottom.xml
5 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_slide_in_top.xml
5 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_slide_out_bottom.xml
5 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/anim/abc_slide_out_top.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v11/abc_background_cache_hint_selector_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v11/abc_background_cache_hint_selector_material_light.xml
5 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_btn_colored_borderless_text_material.xml
8 14 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_color_highlight_material.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_tint_btn_checkable.xml
10 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_tint_default.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_tint_edittext.xml
5 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_tint_seek_thumb.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_tint_spinner.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_tint_switch_thumb.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color-v23/abc_tint_switch_track.xml
4 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_background_cache_hint_selector_material_dark.xml
4 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_background_cache_hint_selector_material_light.xml
8 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_btn_colored_borderless_text_material.xml
9 14 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_hint_foreground_material_dark.xml
9 14 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_hint_foreground_material_light.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_primary_text_disable_only_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_primary_text_disable_only_material_light.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_primary_text_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_primary_text_material_light.xml
6 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_search_url_text.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_secondary_text_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_secondary_text_material_light.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_tint_btn_checkable.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_tint_default.xml
9 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_tint_edittext.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_tint_seek_thumb.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_tint_spinner.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_tint_switch_thumb.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/abc_tint_switch_track.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/switch_thumb_material_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/color/switch_thumb_material_light.xml
3 14 18 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable-v21/abc_action_bar_item_background_material.xml
33 16 50 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable-v21/abc_btn_colored_material.xml
22 14 37 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable-v21/abc_edit_text_material.xml
6 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable-v21/notification_action_background.xml
4 14 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable-v23/abc_control_background_material.xml
6 14 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_btn_borderless_material.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_btn_check_material.xml
4 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_btn_colored_material.xml
15 15 32 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_btn_default_mtrl_shape.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_btn_radio_material.xml
5 17 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_cab_background_internal_bg.xml
4 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_cab_background_top_material.xml
11 14 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_dialog_material_background.xml
12 14 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_edit_text_material.xml
12 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ic_ab_back_material.xml
17 14 33 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ic_clear_material.xml
11 14 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ic_go_search_api_material.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ic_menu_overflow_material.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ic_search_api_material.xml
11 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ic_voice_search_api_material.xml
9 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_item_background_holo_dark.xml
9 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_item_background_holo_light.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_list_selector_background_transition_holo_light.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_list_selector_holo_dark.xml
9 15 28 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_list_selector_holo_light.xml
14 14 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ratingbar_indicator_material.xml
14 14 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ratingbar_material.xml
12 14 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_ratingbar_small_material.xml
20 14 35 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_seekbar_thumb_material.xml
7 14 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_seekbar_tick_mark_material.xml
25 14 40 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_seekbar_track_material.xml
21 14 36 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_spinner_textfield_background_material.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_switch_thumb_material.xml
5 14 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_tab_indicator_material.xml
7 15 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_text_cursor_material.xml
7 14 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_textfield_search_material.xml
10 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/abc_vector_test.xml
7 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/notification_bg.xml
6 15 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/notification_bg_low.xml
6 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/notification_icon_background.xml
6 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/drawable/notification_tile_bg.xml
100 16 117 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout-v16/notification_template_custom_big.xml
26 15 41 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout-v21/notification_action.xml
32 15 48 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout-v21/notification_action_tombstone.xml
73 16 90 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout-v21/notification_template_custom_big.xml
26 15 43 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout-v21/notification_template_icon_group.xml
19 14 34 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_action_bar_title_item.xml
8 14 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_action_bar_up_container.xml
6 16 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_action_bar_view_list_nav_layout.xml
15 14 30 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_action_menu_item_layout.xml
9 14 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_action_menu_layout.xml
8 17 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_action_mode_bar.xml
12 14 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_action_mode_close_item_material.xml
47 17 71 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_activity_chooser_view.xml
32 14 52 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_activity_chooser_view_list_item.xml
37 15 58 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_alert_dialog_button_bar_material.xml
93 16 127 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_alert_dialog_material.xml
24 18 47 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_dialog_title_material.xml
6 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_expanded_menu_layout.xml
9 14 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_list_menu_item_checkbox.xml
12 14 28 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_list_menu_item_icon.xml
35 17 60 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_list_menu_item_layout.xml
9 14 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_list_menu_item_radio.xml
18 14 35 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_popup_menu_header_item_layout.xml
45 17 71 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_popup_menu_item_layout.xml
9 14 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_screen_content_include.xml
16 14 34 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_screen_simple.xml
15 20 39 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_screen_simple_overlay_action_mode.xml
32 14 53 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_screen_toolbar.xml
54 23 85 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_search_dropdown_item_icons_2line.xml
106 20 137 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_search_view.xml
14 20 35 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/abc_select_dialog_material.xml
29 15 44 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_action.xml
35 15 51 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_action_tombstone.xml
10 14 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_media_action.xml
13 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_media_cancel_action.xml
43 16 60 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_big_media.xml
90 16 107 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_big_media_custom.xml
47 17 68 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_big_media_narrow.xml
94 17 115 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_big_media_narrow_custom.xml
60 15 76 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_custom_big.xml
8 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_icon_group.xml
96 15 112 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_lines_media.xml
34 16 51 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_media.xml
83 16 100 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_media_custom.xml
7 15 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_part_chronometer.xml
7 15 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/notification_template_part_time.xml
12 20 33 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/select_dialog_item_material.xml
17 15 33 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/select_dialog_multichoice_material.xml
17 15 33 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/select_dialog_singlechoice_material.xml
8 17 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/layout/support_simple_spinner_dropdown_item.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-af/values-af.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-am/values-am.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ar/values-ar.xml
23 0 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-az-rAZ/values-az-rAZ.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-b+sr+Latn/values-b+sr+Latn.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-be-rBY/values-be-rBY.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-bg/values-bg.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-bn-rBD/values-bn-rBD.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-bs-rBA/values-bs-rBA.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ca/values-ca.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-cs/values-cs.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-da/values-da.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-de/values-de.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-el/values-el.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-en-rAU/values-en-rAU.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-en-rGB/values-en-rGB.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-en-rIN/values-en-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-es-rUS/values-es-rUS.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-es/values-es.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-et-rEE/values-et-rEE.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-eu-rES/values-eu-rES.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-fa/values-fa.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-fi/values-fi.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-fr-rCA/values-fr-rCA.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-fr/values-fr.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-gl-rES/values-gl-rES.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-gu-rIN/values-gu-rIN.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-h720dp-v13/values-h720dp-v13.xml
8 0 8 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-hdpi-v4/values-hdpi-v4.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-hi/values-hi.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-hr/values-hr.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-hu/values-hu.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-hy-rAM/values-hy-rAM.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-in/values-in.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-is-rIS/values-is-rIS.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-it/values-it.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-iw/values-iw.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ja/values-ja.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ka-rGE/values-ka-rGE.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-kk-rKZ/values-kk-rKZ.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-km-rKH/values-km-rKH.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-kn-rIN/values-kn-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ko/values-ko.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ky-rKG/values-ky-rKG.xml
7 0 7 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-land/values-land.xml
12 0 12 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-large-v4/values-large-v4.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ldltr-v21/values-ldltr-v21.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-lo-rLA/values-lo-rLA.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-lt/values-lt.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-lv/values-lv.xml
22 0 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-mk-rMK/values-mk-rMK.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ml-rIN/values-ml-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-mn-rMN/values-mn-rMN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-mr-rIN/values-mr-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ms-rMY/values-ms-rMY.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-my-rMM/values-my-rMM.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-nb/values-nb.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ne-rNP/values-ne-rNP.xml
10 0 10 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-night-v8/values-night-v8.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-nl/values-nl.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-pa-rIN/values-pa-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-pl/values-pl.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-port/values-port.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-pt-rBR/values-pt-rBR.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-pt-rPT/values-pt-rPT.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-pt/values-pt.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ro/values-ro.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ru/values-ru.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-si-rLK/values-si-rLK.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-sk/values-sk.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-sl/values-sl.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-sq-rAL/values-sq-rAL.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-sr/values-sr.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-sv/values-sv.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-sw/values-sw.xml
11 0 11 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ta-rIN/values-ta-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-te-rIN/values-te-rIN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-th/values-th.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-tl/values-tl.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-tr/values-tr.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-uk/values-uk.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-ur-rPK/values-ur-rPK.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-uz-rUZ/values-uz-rUZ.xml
151 6 171 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v11/values-v11.xml
11 0 11 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v12/values-v12.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v13/values-v13.xml
29 0 31 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v14/values-v14.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v16/values-v16.xml
51 0 51 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v17/values-v17.xml
4 0 4 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v18/values-v18.xml
261 15 288 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v21/values-v21.xml
13 2 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v22/values-v22.xml
28 6 38 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v23/values-v23.xml
7 0 7 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v24/values-v24.xml
9 0 9 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-v25/values-v25.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-vi/values-vi.xml
9 0 9 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-xlarge-v4/values-xlarge-v4.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-zh-rCN/values-zh-rCN.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-zh-rHK/values-zh-rHK.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-zh-rTW/values-zh-rTW.xml
24 0 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values-zu/values-zu.xml
1544 46 1720 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/25.0.0/res/values/values.xml
6 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/AndroidManifest.xml
22 14 40 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim-v21/design_appbar_state_list_animator.xml
11 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim-v21/design_bottom_sheet_slide_in.xml
11 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim-v21/design_bottom_sheet_slide_out.xml
11 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim/design_bottom_sheet_slide_in.xml
11 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim/design_bottom_sheet_slide_out.xml
11 15 30 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim/design_fab_in.xml
11 15 30 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim/design_fab_out.xml
4 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim/design_snackbar_in.xml
4 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/anim/design_snackbar_out.xml
5 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/color-v23/design_tint_password_toggle.xml
5 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/color/design_error.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/color/design_tint_password_toggle.xml
5 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/drawable/design_fab_background.xml
10 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/drawable/design_ic_visibility.xml
6 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/drawable/design_snackbar_background.xml
9 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/drawable/navigation_empty_icon.xml
8 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout-sw600dp-v13/design_layout_snackbar.xml
21 15 39 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_bottom_sheet_dialog.xml
8 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_layout_snackbar.xml
28 15 47 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_layout_snackbar_include.xml
5 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_layout_tab_icon.xml
7 15 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_layout_tab_text.xml
4 15 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_menu_item_action_area.xml
9 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_navigation_item.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_navigation_item_header.xml
8 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_navigation_item_separator.xml
10 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_navigation_item_subheader.xml
9 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_navigation_menu.xml
18 15 36 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_navigation_menu_item.xml
8 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/layout/design_text_input_password_icon.xml
7 0 7 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/values-land/values-land.xml
16 0 16 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/values-sw600dp-v13/values-sw600dp-v13.xml
6 0 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/values-v21/values-v21.xml
278 0 344 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/24.2.1/res/values/values.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/AndroidManifest.xml
22 14 40 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim-v21/design_appbar_state_list_animator.xml
11 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim-v21/design_bottom_sheet_slide_in.xml
11 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim-v21/design_bottom_sheet_slide_out.xml
11 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim/design_bottom_sheet_slide_in.xml
11 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim/design_bottom_sheet_slide_out.xml
11 15 30 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim/design_fab_in.xml
11 15 30 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim/design_fab_out.xml
4 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim/design_snackbar_in.xml
4 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/anim/design_snackbar_out.xml
5 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/color-v23/design_tint_password_toggle.xml
5 15 20 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/color/design_error.xml
6 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/color/design_tint_password_toggle.xml
3 15 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/drawable-v21/design_bottom_navigation_item_background.xml
13 15 29 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/drawable/design_bottom_navigation_item_background.xml
5 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/drawable/design_fab_background.xml
10 15 26 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/drawable/design_ic_visibility.xml
6 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/drawable/design_snackbar_background.xml
9 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/drawable/navigation_empty_icon.xml
8 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout-sw600dp-v13/design_layout_snackbar.xml
31 15 46 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_bottom_navigation_item.xml
21 15 39 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_bottom_sheet_dialog.xml
8 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_layout_snackbar.xml
28 15 47 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_layout_snackbar_include.xml
5 15 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_layout_tab_icon.xml
7 15 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_layout_tab_text.xml
4 15 19 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_menu_item_action_area.xml
9 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_navigation_item.xml
7 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_navigation_item_header.xml
8 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_navigation_item_separator.xml
10 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_navigation_item_subheader.xml
9 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_navigation_menu.xml
18 15 36 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_navigation_menu_item.xml
8 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/layout/design_text_input_password_icon.xml
7 0 7 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/values-land/values-land.xml
16 0 16 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/values-sw600dp-v13/values-sw600dp-v13.xml
6 0 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/values-v21/values-v21.xml
283 0 349 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/design/25.0.0/res/values/values.xml
5 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/24.2.1/AndroidManifest.xml
8 0 8 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/24.2.1/res/values/values.xml
5 15 22 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/25.0.0/AndroidManifest.xml
8 0 8 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/25.0.0/res/values/values.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-compat/24.2.1/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-compat/25.0.0/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-core-ui/24.2.1/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-core-ui/25.0.0/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-core-utils/24.2.1/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-core-utils/25.0.0/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-fragment/24.2.1/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-fragment/25.0.0/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-media-compat/24.2.1/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-media-compat/25.0.0/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-v4/24.2.1/AndroidManifest.xml
9 15 27 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-v4/25.0.0/AndroidManifest.xml
7 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/24.2.1/AndroidManifest.xml
7 15 25 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/25.0.0/AndroidManifest.xml
6 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/transition/25.0.0/AndroidManifest.xml
5 0 5 app/Smartfridge/app/build/intermediates/exploded-aar/com.android.support/transition/25.0.0/res/values/values.xml
7 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/AndroidManifest.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/color/common_google_signin_btn_text_dark.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/color/common_google_signin_btn_text_light.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/drawable/common_google_signin_btn_icon_dark.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/drawable/common_google_signin_btn_icon_light.xml
14 3 17 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/drawable/common_google_signin_btn_text_dark.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/drawable/common_google_signin_btn_text_light.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-af/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-am/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ar/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-az/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-be/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-bg/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-bn/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-bs/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ca/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-cs/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-da/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-de/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-el/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-en-rGB/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-es-rUS/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-es/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-et/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-eu/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-fa/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-fi/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-fr-rCA/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-fr/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-gl/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-gu/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-hi/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-hr/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-hu/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-hy/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-in/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-is/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-it/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-iw/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ja/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ka/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-kk/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-km/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-kn/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ko/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ky/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-lo/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-lt/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-lv/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-mk/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ml/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-mn/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-mr/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ms/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-my/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-nb/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ne/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-nl/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-pa/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-pl/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-pt-rBR/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-pt-rPT/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ro/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ru/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-si/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-sk/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-sl/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-sq/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-sr/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-sv/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-sw/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ta/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-te/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-th/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-tl/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-tr/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-uk/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-ur/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-uz/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-vi/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-zh-rCN/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-zh-rHK/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-zh-rTW/values.xml
23 1 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values-zu/values.xml
33 2 35 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.6.1/res/values/values.xml
7 14 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/AndroidManifest.xml
14 0 14 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/color/common_google_signin_btn_text_dark.xml
14 0 14 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/color/common_google_signin_btn_text_light.xml
14 0 14 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/drawable/common_google_signin_btn_icon_dark.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/drawable/common_google_signin_btn_icon_dark_focused.xml
14 0 14 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/drawable/common_google_signin_btn_icon_light.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/drawable/common_google_signin_btn_icon_light_focused.xml
14 2 16 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/drawable/common_google_signin_btn_text_dark.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/drawable/common_google_signin_btn_text_dark_focused.xml
14 0 14 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/drawable/common_google_signin_btn_text_light.xml
14 1 15 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/drawable/common_google_signin_btn_text_light_focused.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-af/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-am/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ar/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-az/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-be/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-bg/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-bn/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-bs/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ca/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-cs/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-da/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-de/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-el/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-en-rGB/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-es-rUS/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-es/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-et/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-eu/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-fa/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-fi/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-fr-rCA/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-fr/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-gl/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-gu/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-hi/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-hr/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-hu/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-hy/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-in/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-is/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-it/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-iw/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ja/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ka/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-kk/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-km/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-kn/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ko/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ky/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-lo/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-lt/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-lv/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-mk/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ml/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-mn/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-mr/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ms/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-my/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-nb/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ne/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-nl/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-pa/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-pl/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-pt-rBR/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-pt-rPT/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ro/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ru/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-si/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-sk/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-sl/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-sq/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-sr/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-sv/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-sw/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ta/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-te/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-th/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-tl/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-tr/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-uk/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-ur/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-uz/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-vi/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-zh-rCN/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-zh-rHK/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-zh-rTW/values.xml
20 1 21 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values-zu/values.xml
50 3 65 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-base/9.8.0/res/values/values.xml
7 14 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/AndroidManifest.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-af/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-am/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ar/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-az/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-be/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-bg/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-bn/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-bs/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ca/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-cs/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-da/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-de/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-el/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-en-rGB/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-es-rUS/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-es/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-et/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-eu/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-fa/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-fi/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-fr-rCA/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-fr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-gl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-gu/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-hi/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-hr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-hu/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-hy/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-in/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-is/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-it/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-iw/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ja/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ka/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-kk/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-km/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-kn/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ko/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ky/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-lo/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-lt/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-lv/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-mk/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ml/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-mn/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-mr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ms/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-my/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-nb/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ne/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-nl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-pa/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-pl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-pt-rBR/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-pt-rPT/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ro/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ru/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-si/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-sk/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-sl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-sq/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-sr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-sv/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-sw/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ta/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-te/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-th/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-tl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-tr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-uk/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-ur/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-uz/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-vi/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-zh-rCN/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-zh-rHK/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-zh-rTW/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values-zu/values.xml
8 2 10 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.6.1/res/values/values.xml
7 14 23 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/AndroidManifest.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-af/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-am/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ar/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-az/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-be/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-bg/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-bn/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-bs/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ca/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-cs/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-da/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-de/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-el/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-en-rGB/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-es-rUS/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-es/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-et/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-eu/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-fa/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-fi/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-fr-rCA/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-fr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-gl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-gu/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-hi/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-hr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-hu/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-hy/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-in/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-is/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-it/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-iw/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ja/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ka/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-kk/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-km/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-kn/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ko/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ky/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-lo/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-lt/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-lv/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-mk/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ml/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-mn/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-mr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ms/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-my/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-nb/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ne/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-nl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-pa/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-pl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-pt-rBR/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-pt-rPT/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ro/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ru/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-si/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-sk/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-sl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-sq/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-sr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-sv/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-sw/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ta/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-te/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-th/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-tl/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-tr/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-uk/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-ur/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-uz/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-vi/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-zh-rCN/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-zh-rHK/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-zh-rTW/values.xml
5 1 6 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values-zu/values.xml
7 2 9 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-basement/9.8.0/res/values/values.xml
7 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/9.6.1/AndroidManifest.xml
7 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-gcm/9.8.0/AndroidManifest.xml
7 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/9.6.1/AndroidManifest.xml
7 15 24 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-iid/9.8.0/AndroidManifest.xml
5 0 5 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/9.6.1/AndroidManifest.xml
5 0 5 app/Smartfridge/app/build/intermediates/exploded-aar/com.google.android.gms/play-services-tasks/9.8.0/AndroidManifest.xml
2 0 2 app/Smartfridge/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml
2 0 2 app/Smartfridge/app/build/intermediates/incremental/mergeDebugAssets/merger.xml
2 0 2 app/Smartfridge/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml
23 0 23 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be-rBY/values-be-rBY.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs-rBA/values-bs-rBA.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
6 0 6 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en/values-en.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml
4 0 4 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
8 0 8 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml
41 0 41 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml
24 0 24 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
20 0 20 app/Smartfridge/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml