-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.pbxproj
2365 lines (2351 loc) · 174 KB
/
project.pbxproj
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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
02E8E9986905CB794C1DABF7468A9DEB /* ChatReceiverMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C70C6F85D5F6BD4B8E4C26A46AB93F1 /* ChatReceiverMediaCell.swift */; };
043A68429C317A4E9045BAF818D33E50 /* InputLocation+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBDF81FE6F78BC6DDC7467665EC4D34D /* InputLocation+CoreDataClass.swift */; };
06184F1680BD3E940E16CF6206C1EC85 /* PickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8079204BD49B5972C95CA2DF76D6ECA3 /* PickerView.swift */; };
07170289D781F8DD68431A53F9E6CAAF /* CarouselItemModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0378C63D4BF1436B1C746FBCC12BFDA1 /* CarouselItemModel.swift */; };
07AFA27980AD4F2D0D8CC729FA580667 /* Pods-ANAChat_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5901323187388A1B3CD1A90D1D347DA0 /* Pods-ANAChat_Example-dummy.m */; };
08D9AE8AE01C306975C5761F6356629C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B32CC88FBFC8AA7636450C109B1A6DD /* Foundation.framework */; };
0BDAA26DC4C0F00DC8BAEC51152E0078 /* CustomAlertView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 153F8180D2D39366A58596F9A72130BB /* CustomAlertView.swift */; };
0BEF6FE890B599A4ADA05DE54CDF4ECC /* APIManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 160630F0411C79F4AFE25CD457E5B6EA /* APIManager.swift */; };
10C915A573C3AA126578D7D551B8E864 /* InputTypeOptions+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D3E7228A7FB0F7E02DB0A60A5F8CD5F /* InputTypeOptions+CoreDataClass.swift */; };
10E0CD6133CFC0FD26996FB7C4E250FC /* GoogleToolboxForMac.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5239EA3AA21FC1E2AF71D9512122F2DB /* GoogleToolboxForMac.framework */; };
14787B77D0111E1ED11BDD1C40E576B0 /* ChatSenderMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1496E85E744BAB1F33650285BA7415E8 /* ChatSenderMediaCell.xib */; };
14E7122312A92FA7ED73B055C8BC231A /* Options+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ECCE085ADBC24558BD93CA3E65E4031 /* Options+CoreDataClass.swift */; };
168AC849FDDC1F0D260516F6AEE4E1AE /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5966CD35E8E1CA1370318AAF93CAA559 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; };
17591CF08E332ECC288049AA75A1579F /* ChatOptionsTableCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3C6AE8CB5BE21C02C3D5BFF3D5242B8 /* ChatOptionsTableCell.swift */; };
1851CD0598CE4BAA99D77E2A3A01F238 /* SDKReachability.swift in Sources */ = {isa = PBXBuildFile; fileRef = 670905FC4909D15FCD99DA5057993FFB /* SDKReachability.swift */; };
1AD84B3C0FE30ADE2AF2296ABA378B9A /* ExtensionUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3E6F990BE3E1F0FFA81201DB0A93FD9 /* ExtensionUtility.swift */; };
1C52086ECC276258813D451BF91B82F6 /* Carousel+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = CED40080151497883D633E8D1B3B2C62 /* Carousel+CoreDataProperties.swift */; };
1CDDC0599397A1F6C93055BA9CCABF78 /* ANAChat-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E9179A76EC522D4C6B6FB58D9877090D /* ANAChat-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1D26B629E84EDA5F955AAC6DDA75EB5E /* InputAddress+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C53F7D0A30CA8890766A79CE32F13EB /* InputAddress+CoreDataProperties.swift */; };
1D645065A4036BFE518A9F15BCFD18D3 /* allChatsMock.json in Resources */ = {isa = PBXBuildFile; fileRef = C45C7C49D0457A115F6DB5042D3B8AC6 /* allChatsMock.json */; };
1D6FA9702AFF63393C57A5686A534105 /* CoreDataManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D61C681D3DD143F30E974F1DFC345B2F /* CoreDataManager.swift */; };
1DAEBC3BCDCA2ED4C2CF008D3A8C25A8 /* InputTextFieldView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3708C6AA32E39EEE431C7534B28481AD /* InputTextFieldView.swift */; };
20DA71B8812E49C4D65548083EB0B58B /* InputModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0B69372FD2972E5756105AAA83940D9 /* InputModel.swift */; };
232BD5620B93F8ED8913036B5733315F /* Empty.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 438EF475DB0778433B652BD0549C31BC /* Empty.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
2436416BD64BE446A64D7D2883BD6AAD /* Timestamp.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = F099D52BA60EA489DE895E5D72AA19A6 /* Timestamp.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
24DCB70804313F16B6CF02C67FDE9B59 /* GPBBootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA8E7BCC056F17BBC59455F2B2AE698 /* GPBBootstrap.h */; settings = {ATTRIBUTES = (Public, ); }; };
25EED8241C424E02EC51A2A024A62EC7 /* FieldMask.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E674497A291E43F5E9F55C2632494B /* FieldMask.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
26609BD99386BB11614BB7B307A6C24C /* GPBProtocolBuffers.h in Headers */ = {isa = PBXBuildFile; fileRef = 98CB3F3811553A7F960661239DC4CD50 /* GPBProtocolBuffers.h */; settings = {ATTRIBUTES = (Public, ); }; };
2713E5E6465868CDF810EEE9620F6F09 /* GPBUnknownField.m in Sources */ = {isa = PBXBuildFile; fileRef = 19ED33F0E3F2BA72AAF13956DDD993D2 /* GPBUnknownField.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
2839E636609D0F0649B2DB7576700C79 /* InputTime+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6B2632E67CD8EC21A9A3BDF88D0B6F7 /* InputTime+CoreDataClass.swift */; };
2A404A590CD43937E86185A982580588 /* ProtocolHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9904C69C8A8C7FE67750BAF19522DD9B /* ProtocolHelper.swift */; };
2A664CB9ED1D95C581B2FC3B03F6BD7B /* InputTypeText+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC7D98C5514A5CC3449E86277D57428D /* InputTypeText+CoreDataProperties.swift */; };
2ADEFF38B0FAACC0F02E008608A869A1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = DC80E859B98A9DA7B7271B94572C1998 /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; };
2CB5395526431829DF28FB13A79A100B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B32CC88FBFC8AA7636450C109B1A6DD /* Foundation.framework */; };
2CB81F704E69A2C954AB55FEB8B818A8 /* ChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 810165C5D1B827D2AE0E4BE8AA6B42A7 /* ChatViewController.swift */; };
2D6B02B2FA5A240FDC6AA11F79FF9711 /* Empty.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 078C2456FCD47F0D5F451DB0451A5CD0 /* Empty.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
2E67ECC9D9549B2E088C818FF71110F4 /* GPBArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EAA66A40D00BCDDAFA9980382C5EFE5 /* GPBArray.h */; settings = {ATTRIBUTES = (Public, ); }; };
2E78E3D5E1F8AA9EDEC92FE2693ADA9E /* Protobuf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 177706F844CB8DA8BC9079A56A3DE6F4 /* Protobuf.framework */; };
2F6C5D1FEC39A6DC334A1E985D1B5DC1 /* Duration.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = AB2FC4B13DA3ED00D8E226FF12A2F049 /* Duration.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
2FC47908862C779F7C0B9C8D278AC884 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B32CC88FBFC8AA7636450C109B1A6DD /* Foundation.framework */; };
304728981FFE326A0049B172 /* InputTypeMedia+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 304728941FFE326A0049B172 /* InputTypeMedia+CoreDataClass.swift */; };
304728991FFE326A0049B172 /* InputTypeMedia+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 304728951FFE326A0049B172 /* InputTypeMedia+CoreDataProperties.swift */; };
30ACDF9B20164EEC000971F0 /* Message+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30ACDF9920164EEC000971F0 /* Message+CoreDataClass.swift */; };
30ACDF9C20164EEC000971F0 /* Message+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30ACDF9A20164EEC000971F0 /* Message+CoreDataProperties.swift */; };
30EDB75C200662E300A34736 /* SDKMain.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 30EDB75B200662E300A34736 /* SDKMain.storyboard */; };
30EDB75E200662EF00A34736 /* WebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30EDB75D200662EF00A34736 /* WebViewController.swift */; };
31DF765808D98A6983EDAF3E2E225F95 /* GPBDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = BD1A2BBAD2055349C4437BDC00A6CF8C /* GPBDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
326B7D42CA7DC14BAFADDACB32D99C91 /* ChatReceiverMediaCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3EF2E9318343C8D5A177609F37B83E32 /* ChatReceiverMediaCell.xib */; };
333B2E67ECD6FFE210F25EB6B91D0111 /* GPBRuntimeTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 28EECC6BF40C5EA45BFF83FE5AF5F71D /* GPBRuntimeTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
33678D137A43F40FE3EBEF96E6185368 /* Carousel+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21537DCBC8EC6AC037EB7460F60F816D /* Carousel+CoreDataClass.swift */; };
33A4C4D8607700B5956B289ED4D2E88C /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9C6A688ED78529FB8A259C5EB528912 /* Constants.swift */; };
33EE3252021CE66809073B145AD67277 /* BaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3059CA74212D832A90D3B4F150FEE3B8 /* BaseViewController.swift */; };
37D40C27D380BAC3CABDD5DDD02A34A8 /* GPBRootObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 98F849B4AB7E52FFFA1C80B3F63D3D55 /* GPBRootObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
3814DACDB4D70AA707999D9146E82CCB /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = C92B3AD174BFA16CEFBD14B1D4A69E1D /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; };
38617DD0BE1FD9062BC963D610F84105 /* Api.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = C3C2FD839C4EE12CB542AEEDF6A4E860 /* Api.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
39A04B1697993696C8E47C049DE69332 /* GPBArray_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = A601D5266CD3A602585428F47C4DEC47 /* GPBArray_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
3BDF63336FE6F289EDA2ECDD281658B6 /* InputTextModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18A303C5980868E0BFAB05782577C77E /* InputTextModel.swift */; };
3C205C82411A2163C5F8C5022B4A67D5 /* GPBCodedInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 78F40EF10B48E25F6E8DAC46B6A11075 /* GPBCodedInputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
3D329D3C49D247EA7F34DD280874B090 /* TimeRange+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83932E6B9499222CC263654078620ADF /* TimeRange+CoreDataClass.swift */; };
3E6E0D49F9CC263C2D1FF23392A9A652 /* GPBUnknownField_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 706067214A1D2C83160ECC67D7A81532 /* GPBUnknownField_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
3FC23C9AF389434B47E3F82DD4FD0A63 /* GPBMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD37FFAE7D4C5D20F561962012FBA1C /* GPBMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
408E380648A1A3C733939CDC866B4B24 /* RequestHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEAF838D6B18507C962F0B8D9B05A092 /* RequestHelper.swift */; };
4146DD40C14792E8D5443FBAD5E078E7 /* ChatReceiveTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6594D637EF91D41B60E0A61E531CB56F /* ChatReceiveTextCell.xib */; };
415BD7E5415C8350D75258E47CEF4070 /* Participant+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1FE1CA827877C2DA853ED5D9688F6E0 /* Participant+CoreDataClass.swift */; };
43CBE4A0E414DF031B9FA7A4360940A1 /* Pods-ANAChat_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F9AA7E18FCCCA087542D4AA7A10B224 /* Pods-ANAChat_Tests-dummy.m */; };
446183A70E718D82E4103320BCA5A675 /* GPBRootObject_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F39363075D40A959F49BF3F1DEAEAD9 /* GPBRootObject_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
45D69A6AC2B3BD83C1E5D0FC0BEDEC2E /* Protobuf-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5686D5576C5116ED33C8C75BAA8317C3 /* Protobuf-dummy.m */; };
4639D69846E4B6DA7001C2593849618D /* CarouselItem+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC51E557D0BE61389FD6EEE9488E4F93 /* CarouselItem+CoreDataClass.swift */; };
491E27630D4410A5D3C57CBD70A11E33 /* Input+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = C84E6D3E8242BB6476657E12D4A0221D /* Input+CoreDataProperties.swift */; };
49EE08CEDFD2C5695D8BE2500810C64D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B32CC88FBFC8AA7636450C109B1A6DD /* Foundation.framework */; };
4A3780B2DFC1A48B6A2E0C81C67BBB63 /* CommonUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = A05B379EF73976846950F69EB9250095 /* CommonUtility.swift */; };
4C7E13FDE3AF10026FA68C8FBB56926E /* InputDate+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FF0FFCF704618E95BF2B15EB1CD7E1B /* InputDate+CoreDataClass.swift */; };
4D754DC0628DEB6261AE88EEDC575B16 /* GPBCodedInputStream_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 88C5C98B2A20198E1A021A9B9E87AC93 /* GPBCodedInputStream_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
4E6E438DC2F99D9E25CFA568ACDE4BF7 /* GPBCodedInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 525A1155D76DD372BF4D14A7C62EFE2B /* GPBCodedInputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
4E810F8A34A14E856E17294E97412C25 /* ParticipantModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 021AF10E7B133A5B3C1087CD4CE7C5D1 /* ParticipantModel.swift */; };
527FE25758F5311A2930D3E879E775DE /* Options+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AE707BFE0B064E86C24D220F9A86B45 /* Options+CoreDataProperties.swift */; };
569807598A91EE392B9C6227441F88A1 /* GPBCodedOutputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F61877B4545A262CF5085CBDD39415 /* GPBCodedOutputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
56A2BF311EE3004D253B90EE7E07D3DD /* GPBRootObject.m in Sources */ = {isa = PBXBuildFile; fileRef = B126EE8CE607140080ACD69440685729 /* GPBRootObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
57E55392495D6FF393617C52410CE780 /* GPBArray.m in Sources */ = {isa = PBXBuildFile; fileRef = 10D791D354EEA6581EB63DB68BC4A2DC /* GPBArray.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
581C89F48D771CBDA0C588B77F12735B /* Type.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5E83FF21267268429230A4C0F31D55 /* Type.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
5A3D7CEB7053EDDF81B02B3EEE70A54F /* InputOptionsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 08EE3DA1EFBFB9695F366EA6595FDA03 /* InputOptionsView.xib */; };
5A71A596B6F3D13AD79909B6A1D38362 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B32CC88FBFC8AA7636450C109B1A6DD /* Foundation.framework */; };
5CFF369E5D30158C5EA2A669028C503C /* CustomHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B5616787AEF08738CD65F9139844FFD3 /* CustomHeaderView.xib */; };
5E366D537D98BDA19FFC5EBD0901EA71 /* GPBWellKnownTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 04F3C29B3DD07E8819E5F39B92CEABD5 /* GPBWellKnownTypes.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
601198FA851DD2C05E234AF331D1C1F6 /* Protobuf-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F78BCBBA5C526C165968DAE5A95123 /* Protobuf-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
60400CBF79A213F838B763B0DEAFD4D7 /* CarouselItem+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8E0D8072ABC0998E66618421C49555E /* CarouselItem+CoreDataProperties.swift */; };
62A7F8DBB8D4AE6AC285982B5F176C00 /* GPBExtensionRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = BBECC2042DA3223E3CB65BA6BA633BD1 /* GPBExtensionRegistry.h */; settings = {ATTRIBUTES = (Public, ); }; };
639F7812A024F3E9DDB2D0E813CB4E04 /* PreferencesManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB09C5F41FFB66E781EBF501E5E6A532 /* PreferencesManager.swift */; };
648CBE1E44DD137DDE4099149A2335C8 /* ChatViewControllerHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 466956C6DF9BBA65B417ECE805B04356 /* ChatViewControllerHelper.swift */; };
64929182F36C2AAE0F9AFB790C47FC73 /* GPBExtensionRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = F3D833AF41A8B219394C6478DBA6C6A6 /* GPBExtensionRegistry.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
669A1F9242015F2E43E2999A77B551DB /* FieldMask.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 521BC722698B961EC91296CC2DAE0E7B /* FieldMask.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
66B8A7BB49520B8C08C96FD80E370354 /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 250958D553964E1C9F1480EA58FEE28F /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
6789FF43871DF2ABE47F73CEED749C74 /* InputTypeButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8857B367865E991BCB165BA63CE51E4E /* InputTypeButton.swift */; };
6C70610FCCDA18C211D861774BB68885 /* ChatSenderMediaCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C539B6C5E4124017F43B08759857763D /* ChatSenderMediaCell.swift */; };
6E91DD8D963A8C2F94CA16453BDFFD79 /* CoreDataContentManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 930D33F3341A85AD043C584A7B181B71 /* CoreDataContentManager.swift */; };
70F03886D7AFC89087E85F20ED627052 /* Duration.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A6141A265F1200FDB8C322ABDFCA68 /* Duration.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
719789285EFD7E37633A0DFC0B66FACD /* DateRange+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9E390B44CE0F89F7EDED681BBB2C051 /* DateRange+CoreDataClass.swift */; };
73ABF7858E87790D003AD9536E061D54 /* ChatListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A3810BDE345B165DECD876358F699B5 /* ChatListTableViewCell.swift */; };
76B466C51EE4B958A6B26AF6E458757A /* ChatReceiveTextCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65CECCDC8E1A18B5139A85FFE3B14EF /* ChatReceiveTextCell.swift */; };
76D5877EB5DFC1DE6C9B9106F3B521A2 /* TimeRange+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 793DA2DBB5687D3EB5C34C24F9D8273A /* TimeRange+CoreDataProperties.swift */; };
78597170D7C601B4BCFC3EC5D5CE9A1B /* GPBMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = DC0A29912E2160ABE67FD84CF71554F7 /* GPBMessage.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
788710C0F386E13C1146004A1EB8DC94 /* Pods-ANAChat_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A227A2844335BE1B305A19716F85517A /* Pods-ANAChat_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
794BC7750D0E1EDC40F0CEB8729B77CD /* TypingIndicatorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60D5C9BF7DCCAC722AE27E70A23D26A5 /* TypingIndicatorView.swift */; };
79EC901545CE2163C24F119564F01F3B /* ChatSenderTextCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4465CE282F209B84D3ED47BA9162C473 /* ChatSenderTextCell.xib */; };
7A7E5A8792C630E7D0881F69BF2681B0 /* CustomAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 78CA8FD39DECB3CB696288F600B8682F /* CustomAlertView.xib */; };
7C8DB58A356CF357C3519F8348573884 /* GPBProtocolBuffers_RuntimeSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5BAFA46BC181767A862E6938B99A34 /* GPBProtocolBuffers_RuntimeSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
7DAECEE7958B447B9CE5ECF6E97A6B5A /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DA288616C1B9F6E4D4C77D659AE164 /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; };
81C1D1982D2C7D3F960C42D587C79ABE /* LocationManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B4A927FC24E3C1C7C1FCB16C16D1193 /* LocationManager.swift */; };
83B63C62CE1C62E8C0A72B6C494A9E28 /* GPBUnknownField.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E23C54F83CF004274E96571BA64E535 /* GPBUnknownField.h */; settings = {ATTRIBUTES = (Public, ); }; };
8693CFDFF93D3083CA3FF920EE515B2F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F3FAEA35B48C2EE8BF7E1CCBB8DA804 /* UIKit.framework */; };
86A7D8DFDC984D35B383D3A165FC79AA /* InputMediaModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76938D68F8617C04D8E8DAD59D07C064 /* InputMediaModel.swift */; };
8740EA24ED02D8AD298C95D0B366CDAC /* ChatOptionsTableCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 712FE0AE366E7721C54F9917E80266E6 /* ChatOptionsTableCell.xib */; };
8A3BB6940A009FBE5039F8A353E07732 /* GPBDictionary_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4275C1C5335CDDE1B258C5A079A5A80A /* GPBDictionary_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
8ACD2C8AC8DF139E8E1BF576164D603F /* Chat_iOSSDK.xcdatamodeld in Resources */ = {isa = PBXBuildFile; fileRef = 6145327F944952195B6595D591BF0BC1 /* Chat_iOSSDK.xcdatamodeld */; };
8D1485455663D8176CF103BB84B1B55B /* AddressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E4C63E6E7724F004B8A52094E0381C1 /* AddressView.swift */; };
8E2A2F8878F95D8ADC11F092B4FBF831 /* GTMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = DABF35642DA97C73DF0196A6AE304131 /* GTMDefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
8F394A8C95509BC89DED31A21A9578D1 /* GTMNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = D6964F57B6D94F25DA10FF4503E85481 /* GTMNSData+zlib.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
9387F9DC0406C6AC423B9D93F053A0E3 /* DeviceUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85D8B01A587FE8883EA8DE09BF10E784 /* DeviceUtils.swift */; };
95041093C512365E359F27C86B223EFA /* ChatSenderTextCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4B1F082748A6EFBFE345D912248D704 /* ChatSenderTextCell.swift */; };
96FC5A5E2F0DC697A1061CED65D13742 /* GPBCodedOutputStream_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F245333671E568786F9B4457145481 /* GPBCodedOutputStream_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
994BB3A30AC1B20C225F64D99ECB124B /* Timestamp.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = C776E3ABFC2BBFE5545FC0D9297965FD /* Timestamp.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
99B692FBFC32B0370F15693336567F3F /* GTMLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = AD4DF62AE6E9D48CC565A462F3E7D6B8 /* GTMLogger.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
9A22736A4CC3A19776A32460C4A973DD /* ChatCarouselCollectionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = DDFE6FC064A34ACB1BB55FE47A69F695 /* ChatCarouselCollectionCell.xib */; };
9AB69A56947A518A4AAEE63FBE24FDE0 /* DataHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8AC165C3B0567AF9476280B56DC514C /* DataHelper.swift */; };
9AF24EDF95419B7189527A7DBD20B9C6 /* InputLocationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 805B7248F41F3D5EB9B9413AD77B155F /* InputLocationModel.swift */; };
A13321CA0FA0D3A6FA41573B1B4D2834 /* InputDateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4CA42EDA0B5A2FAE99D560FA51E2A47 /* InputDateModel.swift */; };
A1673D47B795FFF97B90943C4E60CFEB /* GPBDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = CB1CD1E5B688F08EB41849E108B4FCC1 /* GPBDictionary.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
A4806A6AE860C524DFA9FAC20F79E810 /* GPBUnknownFieldSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 53B1495973908531CF1CB45182726F21 /* GPBUnknownFieldSet.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
A793BDCA0983603DA8726CD5218836BC /* GPBDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8101B3542E53B336F9F4400B26F420C4 /* GPBDescriptor.h */; settings = {ATTRIBUTES = (Public, ); }; };
A9393757E76DC00BD01E20E02EDCEF06 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 118009AA37FA4346270ACC42C9444F35 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; };
AAE87D73D5FF70B95BDF2871380592F0 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA4227A8AE7066295646293818B22A75 /* ImageCache.swift */; };
AC094623F78363F53ECD9C0AE6831655 /* ChatCarouselCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AF53BBE696C6C9A00E340848179C133 /* ChatCarouselCollectionCell.swift */; };
AC3960CDFF3DF4A062B507A6574447A1 /* GPBCodedOutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 150CB46C4295EF02B5708C8877460ED2 /* GPBCodedOutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
AD2F83809AB592F7E094AB4F3DBD8998 /* External+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84788F498CE7A1E20EE7444D0AEC9114 /* External+CoreDataProperties.swift */; };
AE91C1667B83F6D36FB5D2529324EBCB /* Any.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = A663BCCCCC8C10CD1D45CD87BF708E9D /* Any.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
B109FDF336D0ED0657D2D108A3BB4449 /* GPBUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = A6BAADCDCED5F2D192A56B27A30E98E7 /* GPBUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
B3929BBB0599F5B96400BD6F81E24F91 /* nanopb.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4EF037501255AA2444A79148B5FA6AD8 /* nanopb.framework */; };
B3FC962100E919DFF1562EFAED55F11B /* CarouselModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E5E8378EA224ADFC0C64BEE2F4856C0 /* CarouselModel.swift */; };
BC0D19F4366B77E491051E0E5A484570 /* OptionsModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DD510F235D5A4D9242A5FEEC2009092 /* OptionsModel.swift */; };
BD21F062BAD5A2D2CD6E21F56B530BA5 /* InputLocation+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BDD3E51F963FB7F5A591451BE60532D /* InputLocation+CoreDataProperties.swift */; };
BDD765429A8F113FE8F61BB55EB2AC9A /* InputTime+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD7184CB56A11BCBC149364AE51AE899 /* InputTime+CoreDataProperties.swift */; };
BDFEACBFDEAE5ADB5FEC953C0D5E0F4D /* DatePickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38CBADA3BA46D5E4EF32BD8A9980375A /* DatePickerView.swift */; };
BF029658251168F8AAAFB2B43C0DCBC5 /* ChatListTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2F07EF2A57A2301A64BF3DCB37AB97EB /* ChatListTableViewCell.xib */; };
C00489F1BD1D3E8FD00C0E68DA9B5590 /* Simple+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53A3F8B7A84966D2630A4E39C4B69CF0 /* Simple+CoreDataClass.swift */; };
C03B369F96041370CEBD2CD5CD57BC74 /* ANAChat.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 61EE2DB65460388DEFB53CC223712A66 /* ANAChat.bundle */; };
C2051CC9D8E56F3D0191B13B0679A56A /* InputTypeOptions+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 408DD92306166DAEEA097081296992C5 /* InputTypeOptions+CoreDataProperties.swift */; };
C2461F7063315869C772162277701B32 /* GPBDescriptor_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6826DD97E13D633637D07F71E9D54149 /* GPBDescriptor_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
C2B88B7DCDFB15A8287D1FB831D457F1 /* GTMLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D299A612F2D918CE551356F29ACE30 /* GTMLogger.h */; settings = {ATTRIBUTES = (Public, ); }; };
C344BD374974C2B1C36AC2D85CF6ACFF /* External+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21F9D676776C57A840DA10D8293AB42A /* External+CoreDataClass.swift */; };
C6C93EC408B5A34708312C0175654030 /* GTMNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EE3CEF83C7CA2113DD9AC2C729EFE8 /* GTMNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; };
C6E437903EB26949311BAFE663933DD7 /* Participant+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84690519948FDF569AF36A0B29C6A269 /* Participant+CoreDataProperties.swift */; };
C8DE4747BE8E9A9DBBC24BF210BC3D95 /* ConstraintsHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A27BED6BCDF11FCD65E884D61C75BAA8 /* ConstraintsHelper.swift */; };
C8FCB6D1C5F0AB785DDD12A324C75260 /* SourceContext.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 53491A5744D0D2B7C020BD94CAE19859 /* SourceContext.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
CA7D70C9513BE33A458E563F3A33A140 /* GPBExtensionInternals.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D53CD0966D446BB27A386ADE82F5986 /* GPBExtensionInternals.h */; settings = {ATTRIBUTES = (Public, ); }; };
CE08307CB0AAA3F26C698BBB96DF61C7 /* FCMMessagesManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 863AC419460D0D1AD0EA6509DFB0892D /* FCMMessagesManager.swift */; };
D12B7CD356C03BD6FDF34B9F3F494543 /* InputTypeButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = 25B3131C374A6333CB6DE050E7F951F4 /* InputTypeButton.xib */; };
D1FE3E88FB8ED212507DD448DD7CD06C /* ExternalMessageModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = F701BC959ABFA199C02FB002173D7D0C /* ExternalMessageModel.swift */; };
D40099E0D39E661E223E7A738E9AD082 /* GPBUtilities_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 009A0427C75AF5D23AFBC0E2827D044C /* GPBUtilities_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
D42D59CDD7DEEAE179AC319A3FCC3585 /* Struct.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 583299AD2746D1A7CB87676206BA7869 /* Struct.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
D5D17A8643371404BF64BDAB98395E17 /* GPBWireFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 4804E7138784E758FD912EA5D97BBEBD /* GPBWireFormat.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
D63B3B0A171F8E82E02975FD21EE023C /* GPBUnknownFieldSet_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C09A14639AA0AA4621A68CD4A43EC7E /* GPBUnknownFieldSet_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
D693BE0D3A8609E2821891D503BEEBFF /* InputTimeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C8E0177EE1FB6C4C7411A4504B81976 /* InputTimeModel.swift */; };
D75378C95CDFE1AB7DB0E6ABB73E3772 /* TypingIndicatorCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 83463ABC3131D2D501C3800118A35CEB /* TypingIndicatorCell.xib */; };
D846E230827F7CEB82A29E936917ECB9 /* Wrappers.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 560200B2128B8D052AF32F058B0F040C /* Wrappers.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
D86E918E24D2C8181413ADD5B0932FBC /* Wrappers.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = FB4A3DD045EEE6E7CD8C286A131C7840 /* Wrappers.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
D8EB491A54280FD5921BDC78045B3389 /* InputTypeText+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD77DC1C39BD32901F3C5B91DCF2E58E /* InputTypeText+CoreDataClass.swift */; };
D9F65BFFFB1F100542C3627FAA69A545 /* SDKAssets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5647B60FD6529705F226FC3F17B78CD9 /* SDKAssets.xcassets */; };
D9F6D67F2D87275A968914978DED6760 /* GoogleToolboxForMac-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE60DE2513DB31F20C5FA4CA3D064B7A /* GoogleToolboxForMac-dummy.m */; };
DABABDD6C9D8EB929D18D3889D1FF0E2 /* InputAddress+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48AB39A0D3F0521751B3BEBB62F0BB29 /* InputAddress+CoreDataClass.swift */; };
DB4602CFBC0B4FBFA4F3FECCD0A997FD /* GPBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 17370EC62F8E267340F264F1EEC678F4 /* GPBUtilities.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
DB479899CD1CED9942CD21D55DFFCD4A /* SourceContext.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = B546797C90A2C615CFCC2DF1C5A30668 /* SourceContext.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
DBF9DE37743371E6711B18723AA61DA9 /* ChatReceiveCarouselCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = BF4B09F49D2B868828A7275A50D62866 /* ChatReceiveCarouselCell.xib */; };
DCAD1C0F1F432A645A187C2E1B51323A /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F4630967F9078CD627B1D99C1A10BE4 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; };
DCC141DAE6BAE280EBAA3DAA25561AC8 /* ANAChat-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5484313DC79D5489FCEE34B03CBDE88F /* ANAChat-dummy.m */; };
DCDD3962EA5E335E3D0508428ECE3424 /* Pods-ANAChat_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 469AB29EF898E0FCFCA74A032F360AEF /* Pods-ANAChat_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
DD0C6CDF7589D4A2DED0797FC0BC7BAA /* ChatReceiveCarouselCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A16394E5B7B37DF62B15E037284DBE7 /* ChatReceiveCarouselCell.swift */; };
DD59DCBEF0E0843413F392D039B1A703 /* DateRange+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D90A716635CB4AE7D55619FC59BE9C0 /* DateRange+CoreDataProperties.swift */; };
DE9C47801AFD58F74829F195D8BD76BD /* CustomHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AED58B2C92366FE040711BFC17ABFF5 /* CustomHeaderView.swift */; };
DEAF64CD66106C01215DD79DC8A4AF7B /* UIConfigurationUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = E31FDF933349574E21AD2B7B2B0F2756 /* UIConfigurationUtility.swift */; };
DF6D65DAA23BD546BE183525CB2146AB /* AppLauncherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B8797972DADB60C1A715298932FEE27 /* AppLauncherManager.swift */; };
E2B6DC845D5F76CAC4552DBAB7601A14 /* GPBExtensionInternals.m in Sources */ = {isa = PBXBuildFile; fileRef = DE37671E3CE008D2C4F011CCAA537B94 /* GPBExtensionInternals.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
E431FAFACB21415E6186C1D09F7BD376 /* GPBWellKnownTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 526F4C967930411842B1FFA671D0E137 /* GPBWellKnownTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
E56C505F136FBBFB4B842156A74823AA /* InputListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56BD5611CA3411BBB2F476CA4AF9CEBA /* InputListView.swift */; };
E5B06CFCEA730BB71A320EDE995F6AED /* TypingIndicatorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97B7346626294BB271E743276371F981 /* TypingIndicatorCell.swift */; };
E61CF34007902F30AC028020ED0D2B19 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B32CC88FBFC8AA7636450C109B1A6DD /* Foundation.framework */; };
E63CBB9759C9CDD02D09C6050802175D /* Any.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 65775860CC7E4A14598465C220D69AD6 /* Any.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
E89974AE5EEB8C206AC82709321D3184 /* Struct.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 582254AC879DA04855DF9AFCCE8025C5 /* Struct.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
E8A3BA60DF6B035BDFD36AE463405C41 /* Input+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE7B6621A2447E72C28AE18B32CB4AD4 /* Input+CoreDataClass.swift */; };
E9901F8F65BD6170FDF109BDDFB0B464 /* Api.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7E1E90DE520241ADA1A6C0B6113944 /* Api.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
EB2DD8AED1D83C7C5EDB3EB903190EE3 /* GPBWireFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5489280EF08E11BAF5B73674732D68 /* GPBWireFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
EC761B8D6BD8421526D4807CBF54AFE0 /* PickerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 210AB5588A312EDD5483167AC1CFCF20 /* PickerView.xib */; };
EC769BD27830AF12BBB4AF47AC07F231 /* InputDate+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54A9540752D207C8BFB555EABEDE91C7 /* InputDate+CoreDataProperties.swift */; };
EDA5EE22502DFF28FB2CFCE70381143C /* InputOptionsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AAB4CB753B85A54641F74D8375595D6 /* InputOptionsView.swift */; };
EE22634304A5FEB07FBDA984F95F3559 /* DatePickerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1BD947DAAE9310563BD4F5CBA5E3E0D9 /* DatePickerView.xib */; };
EEA43B1F030DC888D0CF9486BF2EA591 /* MessageModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72CADC9C0FEB9C976464124B7FE552F0 /* MessageModel.swift */; };
EED5B4105524E2844A9C0621D2A364BE /* GoogleToolboxForMac-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BCFA06D808EE0E6250A4A185905AF6 /* GoogleToolboxForMac-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
EFCFFBF5D956FE7A3A9FD037DB789342 /* AddressView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7B6996AF116E1A27E7C2C63C44058A06 /* AddressView.xib */; };
F136F8924A434BE1CD17BFD9AB928654 /* Simple+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFB7E650C1956393384D618454E9D6DE /* Simple+CoreDataProperties.swift */; };
F36ADAE4B273B3902B7930150F0C4388 /* InputListView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A137101780C32BE47AE00BB9A37D93F0 /* InputListView.xib */; };
F50C97B0899EBE1562DCB204285D4E35 /* GPBUnknownFieldSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E593E914104CD3E053067B1846D1D6 /* GPBUnknownFieldSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
F97E27AD50FE54E9CF55A01648C6AD76 /* GPBMessage_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = E978C30D521776F749F32DBA8A32171E /* GPBMessage_PackagePrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBB77755720E117CB35CB9301618CA76 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C0A5327E2B8DF1ADAFCEFBC8B60FF9 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; };
FC5A6429987EA00D644A06EF176165CF /* InputTextFieldView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1B0BAFB807B6F05DEE6F3D09D03655EF /* InputTextFieldView.xib */; };
FCFC2176F34B29AA80B19D746E189F28 /* MessagesDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7273BCF4E3B2E4B44132F5923F779F7B /* MessagesDataSource.swift */; };
FD1AA414B07F525552477E521E78CFC9 /* Type.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB904A66A97657A417858F629E4BDBB /* Type.pbobjc.h */; settings = {ATTRIBUTES = (Public, ); }; };
FD5E2B9B510F3FBD33D458826D0EBAC0 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 231E8C2E7EFF055B5105A292BB3CE4B0 /* nanopb-dummy.m */; };
FD5FCA75E03C9755370538EB17203862 /* GPBDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C638EBD5977EB01B99417235D03A50E /* GPBDescriptor.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
076020E4683B2E339C84D321BDD2BD8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BB02C4ADFE850AC7FCCE1A1594F545B6;
remoteInfo = Protobuf;
};
0E78755CF283D19FB8FB5F21D209CBC7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4C9D618598096C01C093A7699D8B6E6B;
remoteInfo = nanopb;
};
7B7DB0128B77A0257B1900ECA708B8FC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 4C9D618598096C01C093A7699D8B6E6B;
remoteInfo = nanopb;
};
7D1BCBBB8659EBD031C397B638409A76 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6F28D4AF03274EFA4D66C503789A77D8;
remoteInfo = ANAChat;
};
B024AD597149C8EFF7332551306B7BE3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BB02C4ADFE850AC7FCCE1A1594F545B6;
remoteInfo = Protobuf;
};
B81E356C522F447EC52711E2DB6B7D6E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A258436778A131DBECB9A0DD2514991C;
remoteInfo = "ANAChat-ANAChat";
};
D77ED467531739035E83AE61ED6817E9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1DDC8AE21F36A107A4ECEC2B317EDC3D;
remoteInfo = GoogleToolboxForMac;
};
F1015BB7587CCBD7F49B2BED0F936532 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1DDC8AE21F36A107A4ECEC2B317EDC3D;
remoteInfo = GoogleToolboxForMac;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
009A0427C75AF5D23AFBC0E2827D044C /* GPBUtilities_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities_PackagePrivate.h; path = objectivec/GPBUtilities_PackagePrivate.h; sourceTree = "<group>"; };
00BCFA06D808EE0E6250A4A185905AF6 /* GoogleToolboxForMac-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-umbrella.h"; sourceTree = "<group>"; };
0141345A1542D34CD6465199A04C6F6A /* ANAChat.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = ANAChat.modulemap; sourceTree = "<group>"; };
021AF10E7B133A5B3C1087CD4CE7C5D1 /* ParticipantModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ParticipantModel.swift; sourceTree = "<group>"; };
0378C63D4BF1436B1C746FBCC12BFDA1 /* CarouselItemModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarouselItemModel.swift; sourceTree = "<group>"; };
04F245333671E568786F9B4457145481 /* GPBCodedOutputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream_PackagePrivate.h; path = objectivec/GPBCodedOutputStream_PackagePrivate.h; sourceTree = "<group>"; };
04F3C29B3DD07E8819E5F39B92CEABD5 /* GPBWellKnownTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWellKnownTypes.m; path = objectivec/GPBWellKnownTypes.m; sourceTree = "<group>"; };
078C2456FCD47F0D5F451DB0451A5CD0 /* Empty.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Empty.pbobjc.m; path = objectivec/google/protobuf/Empty.pbobjc.m; sourceTree = "<group>"; };
08EE3DA1EFBFB9695F366EA6595FDA03 /* InputOptionsView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = InputOptionsView.xib; sourceTree = "<group>"; };
0C53F7D0A30CA8890766A79CE32F13EB /* InputAddress+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputAddress+CoreDataProperties.swift"; sourceTree = "<group>"; };
0D53CD0966D446BB27A386ADE82F5986 /* GPBExtensionInternals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBExtensionInternals.h; path = objectivec/GPBExtensionInternals.h; sourceTree = "<group>"; };
0E9F7C745FABE59DA8DC6FEBE5D332F7 /* ANAChat.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ANAChat.xcconfig; sourceTree = "<group>"; };
10D791D354EEA6581EB63DB68BC4A2DC /* GPBArray.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBArray.m; path = objectivec/GPBArray.m; sourceTree = "<group>"; };
118009AA37FA4346270ACC42C9444F35 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_common.c; sourceTree = "<group>"; };
1496E85E744BAB1F33650285BA7415E8 /* ChatSenderMediaCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = ChatSenderMediaCell.xib; sourceTree = "<group>"; };
150CB46C4295EF02B5708C8877460ED2 /* GPBCodedOutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream.h; path = objectivec/GPBCodedOutputStream.h; sourceTree = "<group>"; };
153F8180D2D39366A58596F9A72130BB /* CustomAlertView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CustomAlertView.swift; sourceTree = "<group>"; };
15E76DD24EF25DB773F69AC644516371 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
160630F0411C79F4AFE25CD457E5B6EA /* APIManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = APIManager.swift; sourceTree = "<group>"; };
17370EC62F8E267340F264F1EEC678F4 /* GPBUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUtilities.m; path = objectivec/GPBUtilities.m; sourceTree = "<group>"; };
177706F844CB8DA8BC9079A56A3DE6F4 /* Protobuf.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Protobuf.framework; sourceTree = BUILT_PRODUCTS_DIR; };
18A303C5980868E0BFAB05782577C77E /* InputTextModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputTextModel.swift; sourceTree = "<group>"; };
19ED33F0E3F2BA72AAF13956DDD993D2 /* GPBUnknownField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownField.m; path = objectivec/GPBUnknownField.m; sourceTree = "<group>"; };
1B0BAFB807B6F05DEE6F3D09D03655EF /* InputTextFieldView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = InputTextFieldView.xib; sourceTree = "<group>"; };
1BD947DAAE9310563BD4F5CBA5E3E0D9 /* DatePickerView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = DatePickerView.xib; sourceTree = "<group>"; };
1C638EBD5977EB01B99417235D03A50E /* GPBDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDescriptor.m; path = objectivec/GPBDescriptor.m; sourceTree = "<group>"; };
20964512CE7675CD0CE2F4DC7F4E3CB7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
20DA332BF7F93B142D0DB881E11E0C57 /* Chat_iOSSDK.xcdatamodel */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = wrapper.xcdatamodel; path = Chat_iOSSDK.xcdatamodel; sourceTree = "<group>"; };
210AB5588A312EDD5483167AC1CFCF20 /* PickerView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PickerView.xib; sourceTree = "<group>"; };
21537DCBC8EC6AC037EB7460F60F816D /* Carousel+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Carousel+CoreDataClass.swift"; sourceTree = "<group>"; };
21F9D676776C57A840DA10D8293AB42A /* External+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "External+CoreDataClass.swift"; sourceTree = "<group>"; };
2301A67E70D518D692E90BD28790C78F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
231E8C2E7EFF055B5105A292BB3CE4B0 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = "<group>"; };
250958D553964E1C9F1480EA58FEE28F /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = "<group>"; };
25B3131C374A6333CB6DE050E7F951F4 /* InputTypeButton.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = InputTypeButton.xib; sourceTree = "<group>"; };
2868CB104A36ED2DA150C765DE27797E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
28EECC6BF40C5EA45BFF83FE5AF5F71D /* GPBRuntimeTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRuntimeTypes.h; path = objectivec/GPBRuntimeTypes.h; sourceTree = "<group>"; };
2AED58B2C92366FE040711BFC17ABFF5 /* CustomHeaderView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CustomHeaderView.swift; sourceTree = "<group>"; };
2CEFA7E4A3779D66E5FE40EC1935FFEA /* Pods-ANAChat_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ANAChat_Tests.release.xcconfig"; sourceTree = "<group>"; };
2D7013B9F58789E5E38C2B4E0E6D6CB5 /* Pods-ANAChat_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ANAChat_Example-resources.sh"; sourceTree = "<group>"; };
2EAA66A40D00BCDDAFA9980382C5EFE5 /* GPBArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray.h; path = objectivec/GPBArray.h; sourceTree = "<group>"; };
2F07EF2A57A2301A64BF3DCB37AB97EB /* ChatListTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = ChatListTableViewCell.xib; sourceTree = "<group>"; };
2F66D71241333EDE540ADD3B78825AAF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
304728941FFE326A0049B172 /* InputTypeMedia+CoreDataClass.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "InputTypeMedia+CoreDataClass.swift"; sourceTree = "<group>"; };
304728951FFE326A0049B172 /* InputTypeMedia+CoreDataProperties.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "InputTypeMedia+CoreDataProperties.swift"; sourceTree = "<group>"; };
3059CA74212D832A90D3B4F150FEE3B8 /* BaseViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BaseViewController.swift; sourceTree = "<group>"; };
30ACDF9920164EEC000971F0 /* Message+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Message+CoreDataClass.swift"; sourceTree = "<group>"; };
30ACDF9A20164EEC000971F0 /* Message+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Message+CoreDataProperties.swift"; sourceTree = "<group>"; };
30EDB75B200662E300A34736 /* SDKMain.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = SDKMain.storyboard; sourceTree = "<group>"; };
30EDB75D200662EF00A34736 /* WebViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WebViewController.swift; sourceTree = "<group>"; };
3708C6AA32E39EEE431C7534B28481AD /* InputTextFieldView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputTextFieldView.swift; sourceTree = "<group>"; };
38CBADA3BA46D5E4EF32BD8A9980375A /* DatePickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DatePickerView.swift; sourceTree = "<group>"; };
3A16394E5B7B37DF62B15E037284DBE7 /* ChatReceiveCarouselCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatReceiveCarouselCell.swift; sourceTree = "<group>"; };
3AAB4CB753B85A54641F74D8375595D6 /* InputOptionsView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputOptionsView.swift; sourceTree = "<group>"; };
3B0AFD2491288033548D6D938C0DCED9 /* Pods-ANAChat_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ANAChat_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
3B32CC88FBFC8AA7636450C109B1A6DD /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
3C70C6F85D5F6BD4B8E4C26A46AB93F1 /* ChatReceiverMediaCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatReceiverMediaCell.swift; sourceTree = "<group>"; };
3C8E0177EE1FB6C4C7411A4504B81976 /* InputTimeModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputTimeModel.swift; sourceTree = "<group>"; };
3EF2E9318343C8D5A177609F37B83E32 /* ChatReceiverMediaCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = ChatReceiverMediaCell.xib; sourceTree = "<group>"; };
407A1607E52CA14B02A588AC5B3844AF /* Pods-ANAChat_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ANAChat_Example.modulemap"; sourceTree = "<group>"; };
408DD92306166DAEEA097081296992C5 /* InputTypeOptions+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputTypeOptions+CoreDataProperties.swift"; sourceTree = "<group>"; };
40D0F248865BA2FDE61FCEDBDE89BBF5 /* Pods-ANAChat_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ANAChat_Example-acknowledgements.plist"; sourceTree = "<group>"; };
414AB822429579B26642B27717FF304C /* Protobuf.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Protobuf.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4275C1C5335CDDE1B258C5A079A5A80A /* GPBDictionary_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary_PackagePrivate.h; path = objectivec/GPBDictionary_PackagePrivate.h; sourceTree = "<group>"; };
438EF475DB0778433B652BD0549C31BC /* Empty.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Empty.pbobjc.h; path = objectivec/google/protobuf/Empty.pbobjc.h; sourceTree = "<group>"; };
43E593E914104CD3E053067B1846D1D6 /* GPBUnknownFieldSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet.h; path = objectivec/GPBUnknownFieldSet.h; sourceTree = "<group>"; };
4465CE282F209B84D3ED47BA9162C473 /* ChatSenderTextCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = ChatSenderTextCell.xib; sourceTree = "<group>"; };
44C45E718964FA8A60150B1EFD773320 /* Pods-ANAChat_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ANAChat_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
466956C6DF9BBA65B417ECE805B04356 /* ChatViewControllerHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatViewControllerHelper.swift; sourceTree = "<group>"; };
469AB29EF898E0FCFCA74A032F360AEF /* Pods-ANAChat_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ANAChat_Example-umbrella.h"; sourceTree = "<group>"; };
4796A981EC663ACE5412390594ADA3DC /* GoogleToolboxForMac.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.xcconfig; sourceTree = "<group>"; };
4804E7138784E758FD912EA5D97BBEBD /* GPBWireFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWireFormat.m; path = objectivec/GPBWireFormat.m; sourceTree = "<group>"; };
48AB39A0D3F0521751B3BEBB62F0BB29 /* InputAddress+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputAddress+CoreDataClass.swift"; sourceTree = "<group>"; };
4A5489280EF08E11BAF5B73674732D68 /* GPBWireFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWireFormat.h; path = objectivec/GPBWireFormat.h; sourceTree = "<group>"; };
4A6A87F0960C8A1AE2904490CFA1BE32 /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Frameworks/FirebaseCoreDiagnostics.framework; sourceTree = "<group>"; };
4BD1A46D28A5DBF5BE4E8528C25B8D59 /* Pods-ANAChat_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ANAChat_Tests.debug.xcconfig"; sourceTree = "<group>"; };
4BDD3E51F963FB7F5A591451BE60532D /* InputLocation+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputLocation+CoreDataProperties.swift"; sourceTree = "<group>"; };
4C09A14639AA0AA4621A68CD4A43EC7E /* GPBUnknownFieldSet_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet_PackagePrivate.h; path = objectivec/GPBUnknownFieldSet_PackagePrivate.h; sourceTree = "<group>"; };
4E4C63E6E7724F004B8A52094E0381C1 /* AddressView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AddressView.swift; sourceTree = "<group>"; };
4EF037501255AA2444A79148B5FA6AD8 /* nanopb.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; };
521BC722698B961EC91296CC2DAE0E7B /* FieldMask.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FieldMask.pbobjc.m; path = objectivec/google/protobuf/FieldMask.pbobjc.m; sourceTree = "<group>"; };
5239EA3AA21FC1E2AF71D9512122F2DB /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GoogleToolboxForMac.framework; sourceTree = BUILT_PRODUCTS_DIR; };
525A1155D76DD372BF4D14A7C62EFE2B /* GPBCodedInputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream.h; path = objectivec/GPBCodedInputStream.h; sourceTree = "<group>"; };
526F4C967930411842B1FFA671D0E137 /* GPBWellKnownTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWellKnownTypes.h; path = objectivec/GPBWellKnownTypes.h; sourceTree = "<group>"; };
53491A5744D0D2B7C020BD94CAE19859 /* SourceContext.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SourceContext.pbobjc.h; path = objectivec/google/protobuf/SourceContext.pbobjc.h; sourceTree = "<group>"; };
53A3F8B7A84966D2630A4E39C4B69CF0 /* Simple+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Simple+CoreDataClass.swift"; sourceTree = "<group>"; };
53B1495973908531CF1CB45182726F21 /* GPBUnknownFieldSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownFieldSet.m; path = objectivec/GPBUnknownFieldSet.m; sourceTree = "<group>"; };
5484313DC79D5489FCEE34B03CBDE88F /* ANAChat-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ANAChat-dummy.m"; sourceTree = "<group>"; };
54A9540752D207C8BFB555EABEDE91C7 /* InputDate+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputDate+CoreDataProperties.swift"; sourceTree = "<group>"; };
560200B2128B8D052AF32F058B0F040C /* Wrappers.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wrappers.pbobjc.h; path = objectivec/google/protobuf/Wrappers.pbobjc.h; sourceTree = "<group>"; };
5647B60FD6529705F226FC3F17B78CD9 /* SDKAssets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = SDKAssets.xcassets; path = ANAChat/Classes/SDKAssets.xcassets; sourceTree = "<group>"; };
5686D5576C5116ED33C8C75BAA8317C3 /* Protobuf-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Protobuf-dummy.m"; sourceTree = "<group>"; };
56BD5611CA3411BBB2F476CA4AF9CEBA /* InputListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputListView.swift; sourceTree = "<group>"; };
582254AC879DA04855DF9AFCCE8025C5 /* Struct.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Struct.pbobjc.h; path = objectivec/google/protobuf/Struct.pbobjc.h; sourceTree = "<group>"; };
583299AD2746D1A7CB87676206BA7869 /* Struct.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Struct.pbobjc.m; path = objectivec/google/protobuf/Struct.pbobjc.m; sourceTree = "<group>"; };
5901323187388A1B3CD1A90D1D347DA0 /* Pods-ANAChat_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ANAChat_Example-dummy.m"; sourceTree = "<group>"; };
59151F3CFD8CCC9EA1AFEEDE26A57EA5 /* Pods-ANAChat_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ANAChat_Example.debug.xcconfig"; sourceTree = "<group>"; };
5966CD35E8E1CA1370318AAF93CAA559 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_encode.c; sourceTree = "<group>"; };
5A3810BDE345B165DECD876358F699B5 /* ChatListTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatListTableViewCell.swift; sourceTree = "<group>"; };
5D3E7228A7FB0F7E02DB0A60A5F8CD5F /* InputTypeOptions+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputTypeOptions+CoreDataClass.swift"; sourceTree = "<group>"; };
5DF5B40F807E15043AE597FE8DC26965 /* ANAChat-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ANAChat-prefix.pch"; sourceTree = "<group>"; };
5F39363075D40A959F49BF3F1DEAEAD9 /* GPBRootObject_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject_PackagePrivate.h; path = objectivec/GPBRootObject_PackagePrivate.h; sourceTree = "<group>"; };
5F4630967F9078CD627B1D99C1A10BE4 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = pb_decode.c; sourceTree = "<group>"; };
5F47964FDBC46144C2D3B7ED7FFFE7DB /* ANAChat.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ANAChat.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5FBE98E4171349C38D9B9256F3328F84 /* Protobuf-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Protobuf-prefix.pch"; sourceTree = "<group>"; };
60D5C9BF7DCCAC722AE27E70A23D26A5 /* TypingIndicatorView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TypingIndicatorView.swift; sourceTree = "<group>"; };
61EE2DB65460388DEFB53CC223712A66 /* ANAChat.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ANAChat.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
65775860CC7E4A14598465C220D69AD6 /* Any.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Any.pbobjc.m; path = objectivec/google/protobuf/Any.pbobjc.m; sourceTree = "<group>"; };
6594D637EF91D41B60E0A61E531CB56F /* ChatReceiveTextCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = ChatReceiveTextCell.xib; sourceTree = "<group>"; };
670905FC4909D15FCD99DA5057993FFB /* SDKReachability.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SDKReachability.swift; sourceTree = "<group>"; };
6826DD97E13D633637D07F71E9D54149 /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor_PackagePrivate.h; path = objectivec/GPBDescriptor_PackagePrivate.h; sourceTree = "<group>"; };
6D90A716635CB4AE7D55619FC59BE9C0 /* DateRange+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "DateRange+CoreDataProperties.swift"; sourceTree = "<group>"; };
6F3FAEA35B48C2EE8BF7E1CCBB8DA804 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
6FF0FFCF704618E95BF2B15EB1CD7E1B /* InputDate+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputDate+CoreDataClass.swift"; sourceTree = "<group>"; };
706067214A1D2C83160ECC67D7A81532 /* GPBUnknownField_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField_PackagePrivate.h; path = objectivec/GPBUnknownField_PackagePrivate.h; sourceTree = "<group>"; };
712FE0AE366E7721C54F9917E80266E6 /* ChatOptionsTableCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = ChatOptionsTableCell.xib; sourceTree = "<group>"; };
71A6141A265F1200FDB8C322ABDFCA68 /* Duration.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Duration.pbobjc.h; path = objectivec/google/protobuf/Duration.pbobjc.h; sourceTree = "<group>"; };
7273BCF4E3B2E4B44132F5923F779F7B /* MessagesDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = MessagesDataSource.swift; sourceTree = "<group>"; };
72CADC9C0FEB9C976464124B7FE552F0 /* MessageModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = MessageModel.swift; sourceTree = "<group>"; };
76938D68F8617C04D8E8DAD59D07C064 /* InputMediaModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputMediaModel.swift; sourceTree = "<group>"; };
78CA8FD39DECB3CB696288F600B8682F /* CustomAlertView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = CustomAlertView.xib; sourceTree = "<group>"; };
78F40EF10B48E25F6E8DAC46B6A11075 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedInputStream.m; path = objectivec/GPBCodedInputStream.m; sourceTree = "<group>"; };
793DA2DBB5687D3EB5C34C24F9D8273A /* TimeRange+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "TimeRange+CoreDataProperties.swift"; sourceTree = "<group>"; };
7B6996AF116E1A27E7C2C63C44058A06 /* AddressView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = AddressView.xib; sourceTree = "<group>"; };
7B8797972DADB60C1A715298932FEE27 /* AppLauncherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AppLauncherManager.swift; sourceTree = "<group>"; };
7E5E8378EA224ADFC0C64BEE2F4856C0 /* CarouselModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CarouselModel.swift; sourceTree = "<group>"; };
7ECCE085ADBC24558BD93CA3E65E4031 /* Options+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Options+CoreDataClass.swift"; sourceTree = "<group>"; };
805B7248F41F3D5EB9B9413AD77B155F /* InputLocationModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputLocationModel.swift; sourceTree = "<group>"; };
8079204BD49B5972C95CA2DF76D6ECA3 /* PickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PickerView.swift; sourceTree = "<group>"; };
810165C5D1B827D2AE0E4BE8AA6B42A7 /* ChatViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatViewController.swift; sourceTree = "<group>"; };
8101B3542E53B336F9F4400B26F420C4 /* GPBDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor.h; path = objectivec/GPBDescriptor.h; sourceTree = "<group>"; };
810933C7850ACA946DD4CD41DF2E6760 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = Core/Sources/Firebase.h; sourceTree = "<group>"; };
8125FAB106FF65DB8F7F7D2EBA65F1D7 /* Protobuf.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Protobuf.modulemap; sourceTree = "<group>"; };
83463ABC3131D2D501C3800118A35CEB /* TypingIndicatorCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = TypingIndicatorCell.xib; sourceTree = "<group>"; };
83853492F9D4599DA84831069BEE67B8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
83932E6B9499222CC263654078620ADF /* TimeRange+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "TimeRange+CoreDataClass.swift"; sourceTree = "<group>"; };
84690519948FDF569AF36A0B29C6A269 /* Participant+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Participant+CoreDataProperties.swift"; sourceTree = "<group>"; };
84788F498CE7A1E20EE7444D0AEC9114 /* External+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "External+CoreDataProperties.swift"; sourceTree = "<group>"; };
85D8B01A587FE8883EA8DE09BF10E784 /* DeviceUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DeviceUtils.swift; sourceTree = "<group>"; };
863AC419460D0D1AD0EA6509DFB0892D /* FCMMessagesManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FCMMessagesManager.swift; sourceTree = "<group>"; };
8857B367865E991BCB165BA63CE51E4E /* InputTypeButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputTypeButton.swift; sourceTree = "<group>"; };
88C5C98B2A20198E1A021A9B9E87AC93 /* GPBCodedInputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream_PackagePrivate.h; path = objectivec/GPBCodedInputStream_PackagePrivate.h; sourceTree = "<group>"; };
8AA8E7BCC056F17BBC59455F2B2AE698 /* GPBBootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBBootstrap.h; path = objectivec/GPBBootstrap.h; sourceTree = "<group>"; };
8D9AB3207FA19BA926AEC7A9C19BA0A2 /* FirebaseNanoPB.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseNanoPB.framework; path = Frameworks/FirebaseNanoPB.framework; sourceTree = "<group>"; };
8DD510F235D5A4D9242A5FEEC2009092 /* OptionsModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = OptionsModel.swift; sourceTree = "<group>"; };
8E23C54F83CF004274E96571BA64E535 /* GPBUnknownField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField.h; path = objectivec/GPBUnknownField.h; sourceTree = "<group>"; };
8F9AA7E18FCCCA087542D4AA7A10B224 /* Pods-ANAChat_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ANAChat_Tests-dummy.m"; sourceTree = "<group>"; };
917E5AE702B6E65DD89C7065A7174DEB /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCore.framework; path = Frameworks/FirebaseCore.framework; sourceTree = "<group>"; };
930D33F3341A85AD043C584A7B181B71 /* CoreDataContentManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CoreDataContentManager.swift; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
93DA288616C1B9F6E4D4C77D659AE164 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = "<group>"; };
97B7346626294BB271E743276371F981 /* TypingIndicatorCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TypingIndicatorCell.swift; sourceTree = "<group>"; };
98CB3F3811553A7F960661239DC4CD50 /* GPBProtocolBuffers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers.h; path = objectivec/GPBProtocolBuffers.h; sourceTree = "<group>"; };
98F849B4AB7E52FFFA1C80B3F63D3D55 /* GPBRootObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject.h; path = objectivec/GPBRootObject.h; sourceTree = "<group>"; };
9904C69C8A8C7FE67750BAF19522DD9B /* ProtocolHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ProtocolHelper.swift; sourceTree = "<group>"; };
9ADB3447DDED789CD9C5C24C83E61EF5 /* ResourceBundle-ANAChat-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-ANAChat-Info.plist"; sourceTree = "<group>"; };
9AE707BFE0B064E86C24D220F9A86B45 /* Options+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Options+CoreDataProperties.swift"; sourceTree = "<group>"; };
9AF53BBE696C6C9A00E340848179C133 /* ChatCarouselCollectionCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatCarouselCollectionCell.swift; sourceTree = "<group>"; };
9B4A927FC24E3C1C7C1FCB16C16D1193 /* LocationManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LocationManager.swift; sourceTree = "<group>"; };
9B5BAFA46BC181767A862E6938B99A34 /* GPBProtocolBuffers_RuntimeSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers_RuntimeSupport.h; path = objectivec/GPBProtocolBuffers_RuntimeSupport.h; sourceTree = "<group>"; };
A05B379EF73976846950F69EB9250095 /* CommonUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CommonUtility.swift; sourceTree = "<group>"; };
A137101780C32BE47AE00BB9A37D93F0 /* InputListView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = InputListView.xib; sourceTree = "<group>"; };
A1FE1CA827877C2DA853ED5D9688F6E0 /* Participant+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Participant+CoreDataClass.swift"; sourceTree = "<group>"; };
A2078612D4DC50CA6B1DE98A4912FEDD /* FirebaseMessaging.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseMessaging.framework; path = Frameworks/FirebaseMessaging.framework; sourceTree = "<group>"; };
A227A2844335BE1B305A19716F85517A /* Pods-ANAChat_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ANAChat_Tests-umbrella.h"; sourceTree = "<group>"; };
A27BED6BCDF11FCD65E884D61C75BAA8 /* ConstraintsHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ConstraintsHelper.swift; sourceTree = "<group>"; };
A3EE3CEF83C7CA2113DD9AC2C729EFE8 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSData+zlib.h"; path = "Foundation/GTMNSData+zlib.h"; sourceTree = "<group>"; };
A4BD48569F4C38C66772F688E38DF56B /* Pods-ANAChat_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ANAChat_Example.release.xcconfig"; sourceTree = "<group>"; };
A4CA42EDA0B5A2FAE99D560FA51E2A47 /* InputDateModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputDateModel.swift; sourceTree = "<group>"; };
A4E9544C8AAAF0D5702A050A36BB7DB7 /* Pods_ANAChat_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ANAChat_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A5F61877B4545A262CF5085CBDD39415 /* GPBCodedOutputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedOutputStream.m; path = objectivec/GPBCodedOutputStream.m; sourceTree = "<group>"; };
A601D5266CD3A602585428F47C4DEC47 /* GPBArray_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray_PackagePrivate.h; path = objectivec/GPBArray_PackagePrivate.h; sourceTree = "<group>"; };
A65C6B8C2BD690E1BB11F0336384CB76 /* Pods-ANAChat_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ANAChat_Tests-resources.sh"; sourceTree = "<group>"; };
A663BCCCCC8C10CD1D45CD87BF708E9D /* Any.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Any.pbobjc.h; path = objectivec/google/protobuf/Any.pbobjc.h; sourceTree = "<group>"; };
A6B2632E67CD8EC21A9A3BDF88D0B6F7 /* InputTime+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputTime+CoreDataClass.swift"; sourceTree = "<group>"; };
A6BAADCDCED5F2D192A56B27A30E98E7 /* GPBUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities.h; path = objectivec/GPBUtilities.h; sourceTree = "<group>"; };
A8E0D8072ABC0998E66618421C49555E /* CarouselItem+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "CarouselItem+CoreDataProperties.swift"; sourceTree = "<group>"; };
A9C6A688ED78529FB8A259C5EB528912 /* Constants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
AAB904A66A97657A417858F629E4BDBB /* Type.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Type.pbobjc.h; path = objectivec/google/protobuf/Type.pbobjc.h; sourceTree = "<group>"; };
AB2FC4B13DA3ED00D8E226FF12A2F049 /* Duration.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Duration.pbobjc.m; path = objectivec/google/protobuf/Duration.pbobjc.m; sourceTree = "<group>"; };
AD4DF62AE6E9D48CC565A462F3E7D6B8 /* GTMLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMLogger.m; path = Foundation/GTMLogger.m; sourceTree = "<group>"; };
AE7B6621A2447E72C28AE18B32CB4AD4 /* Input+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Input+CoreDataClass.swift"; sourceTree = "<group>"; };
B126EE8CE607140080ACD69440685729 /* GPBRootObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBRootObject.m; path = objectivec/GPBRootObject.m; sourceTree = "<group>"; };
B1BA234E2EFB52D6A00B9EFF3D6C17E6 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = "<group>"; };
B2F9AC03C223440208B6BFEF241D4DFD /* Pods-ANAChat_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-ANAChat_Tests.modulemap"; sourceTree = "<group>"; };
B546797C90A2C615CFCC2DF1C5A30668 /* SourceContext.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SourceContext.pbobjc.m; path = objectivec/google/protobuf/SourceContext.pbobjc.m; sourceTree = "<group>"; };
B5616787AEF08738CD65F9139844FFD3 /* CustomHeaderView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = CustomHeaderView.xib; sourceTree = "<group>"; };
B5C0A5327E2B8DF1ADAFCEFBC8B60FF9 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = "<group>"; };
B8D8CE689C8972601508A79827EBF22E /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = "<group>"; };
B9E390B44CE0F89F7EDED681BBB2C051 /* DateRange+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "DateRange+CoreDataClass.swift"; sourceTree = "<group>"; };
BB09C5F41FFB66E781EBF501E5E6A532 /* PreferencesManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PreferencesManager.swift; sourceTree = "<group>"; };
BBECC2042DA3223E3CB65BA6BA633BD1 /* GPBExtensionRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBExtensionRegistry.h; path = objectivec/GPBExtensionRegistry.h; sourceTree = "<group>"; };
BC2B74D15429B19CA9857C4840018985 /* nanopb.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BD1A2BBAD2055349C4437BDC00A6CF8C /* GPBDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary.h; path = objectivec/GPBDictionary.h; sourceTree = "<group>"; };
BEAF838D6B18507C962F0B8D9B05A092 /* RequestHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = RequestHelper.swift; sourceTree = "<group>"; };
BF4B09F49D2B868828A7275A50D62866 /* ChatReceiveCarouselCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = ChatReceiveCarouselCell.xib; sourceTree = "<group>"; };
BFB7E650C1956393384D618454E9D6DE /* Simple+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Simple+CoreDataProperties.swift"; sourceTree = "<group>"; };
C0D299A612F2D918CE551356F29ACE30 /* GTMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMLogger.h; path = Foundation/GTMLogger.h; sourceTree = "<group>"; };
C1F689119584924BD8AF18A8DC558822 /* Pods_ANAChat_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ANAChat_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C3C2FD839C4EE12CB542AEEDF6A4E860 /* Api.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Api.pbobjc.m; path = objectivec/google/protobuf/Api.pbobjc.m; sourceTree = "<group>"; };
C3C6AE8CB5BE21C02C3D5BFF3D5242B8 /* ChatOptionsTableCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatOptionsTableCell.swift; sourceTree = "<group>"; };
C45C7C49D0457A115F6DB5042D3B8AC6 /* allChatsMock.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; path = allChatsMock.json; sourceTree = "<group>"; };
C539B6C5E4124017F43B08759857763D /* ChatSenderMediaCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatSenderMediaCell.swift; sourceTree = "<group>"; };
C776E3ABFC2BBFE5545FC0D9297965FD /* Timestamp.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Timestamp.pbobjc.m; path = objectivec/google/protobuf/Timestamp.pbobjc.m; sourceTree = "<group>"; };
C84E6D3E8242BB6476657E12D4A0221D /* Input+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Input+CoreDataProperties.swift"; sourceTree = "<group>"; };
C8F78BCBBA5C526C165968DAE5A95123 /* Protobuf-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Protobuf-umbrella.h"; sourceTree = "<group>"; };
C92B3AD174BFA16CEFBD14B1D4A69E1D /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = "<group>"; };
CA33BBDA2C9FB64E710E4253F4A0F3B3 /* Pods-ANAChat_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ANAChat_Tests-frameworks.sh"; sourceTree = "<group>"; };
CB1CD1E5B688F08EB41849E108B4FCC1 /* GPBDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDictionary.m; path = objectivec/GPBDictionary.m; sourceTree = "<group>"; };
CC51E557D0BE61389FD6EEE9488E4F93 /* CarouselItem+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "CarouselItem+CoreDataClass.swift"; sourceTree = "<group>"; };
CC7D98C5514A5CC3449E86277D57428D /* InputTypeText+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputTypeText+CoreDataProperties.swift"; sourceTree = "<group>"; };
CD7184CB56A11BCBC149364AE51AE899 /* InputTime+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputTime+CoreDataProperties.swift"; sourceTree = "<group>"; };
CE984AB461D6A9380D8E37AC16593B8D /* Protobuf.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Protobuf.xcconfig; sourceTree = "<group>"; };
CED40080151497883D633E8D1B3B2C62 /* Carousel+CoreDataProperties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Carousel+CoreDataProperties.swift"; sourceTree = "<group>"; };
D0E674497A291E43F5E9F55C2632494B /* FieldMask.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FieldMask.pbobjc.h; path = objectivec/google/protobuf/FieldMask.pbobjc.h; sourceTree = "<group>"; };
D61C681D3DD143F30E974F1DFC345B2F /* CoreDataManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CoreDataManager.swift; sourceTree = "<group>"; };
D6964F57B6D94F25DA10FF4503E85481 /* GTMNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSData+zlib.m"; path = "Foundation/GTMNSData+zlib.m"; sourceTree = "<group>"; };
DA4227A8AE7066295646293818B22A75 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ImageCache.swift; sourceTree = "<group>"; };
DABF35642DA97C73DF0196A6AE304131 /* GTMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
DB7E1E90DE520241ADA1A6C0B6113944 /* Api.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Api.pbobjc.h; path = objectivec/google/protobuf/Api.pbobjc.h; sourceTree = "<group>"; };
DC0A29912E2160ABE67FD84CF71554F7 /* GPBMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBMessage.m; path = objectivec/GPBMessage.m; sourceTree = "<group>"; };
DC80E859B98A9DA7B7271B94572C1998 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = "<group>"; };
DD77DC1C39BD32901F3C5B91DCF2E58E /* InputTypeText+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputTypeText+CoreDataClass.swift"; sourceTree = "<group>"; };
DDFE6FC064A34ACB1BB55FE47A69F695 /* ChatCarouselCollectionCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = ChatCarouselCollectionCell.xib; sourceTree = "<group>"; };
DE37671E3CE008D2C4F011CCAA537B94 /* GPBExtensionInternals.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionInternals.m; path = objectivec/GPBExtensionInternals.m; sourceTree = "<group>"; };
DE60DE2513DB31F20C5FA4CA3D064B7A /* GoogleToolboxForMac-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleToolboxForMac-dummy.m"; sourceTree = "<group>"; };
E31FDF933349574E21AD2B7B2B0F2756 /* UIConfigurationUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = UIConfigurationUtility.swift; sourceTree = "<group>"; };
E3E6F990BE3E1F0FFA81201DB0A93FD9 /* ExtensionUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ExtensionUtility.swift; sourceTree = "<group>"; };
E489131A594885F018B79967F109D4C4 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = "<group>"; };
E4B1F082748A6EFBFE345D912248D704 /* ChatSenderTextCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatSenderTextCell.swift; sourceTree = "<group>"; };
E65CECCDC8E1A18B5139A85FFE3B14EF /* ChatReceiveTextCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ChatReceiveTextCell.swift; sourceTree = "<group>"; };
E8AC165C3B0567AF9476280B56DC514C /* DataHelper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DataHelper.swift; sourceTree = "<group>"; };
E9179A76EC522D4C6B6FB58D9877090D /* ANAChat-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ANAChat-umbrella.h"; sourceTree = "<group>"; };
E978C30D521776F749F32DBA8A32171E /* GPBMessage_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage_PackagePrivate.h; path = objectivec/GPBMessage_PackagePrivate.h; sourceTree = "<group>"; };
EAB0D82B3A3B763069BB9A038BA76884 /* Pods-ANAChat_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ANAChat_Example-frameworks.sh"; sourceTree = "<group>"; };
EB5E83FF21267268429230A4C0F31D55 /* Type.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Type.pbobjc.m; path = objectivec/google/protobuf/Type.pbobjc.m; sourceTree = "<group>"; };
EB9A7F4C0088FA19EE0561765A3AB94A /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = nanopb.modulemap; sourceTree = "<group>"; };
EEA4D66EE6CCB00EB86AE5E80AC224A5 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseInstanceID.framework; path = Frameworks/FirebaseInstanceID.framework; sourceTree = "<group>"; };
F099D52BA60EA489DE895E5D72AA19A6 /* Timestamp.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Timestamp.pbobjc.h; path = objectivec/google/protobuf/Timestamp.pbobjc.h; sourceTree = "<group>"; };
F0B69372FD2972E5756105AAA83940D9 /* InputModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InputModel.swift; sourceTree = "<group>"; };
F3D833AF41A8B219394C6478DBA6C6A6 /* GPBExtensionRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionRegistry.m; path = objectivec/GPBExtensionRegistry.m; sourceTree = "<group>"; };
F44D5B4BB26C61A654FC93278EAB295C /* GoogleToolboxForMac.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = GoogleToolboxForMac.modulemap; sourceTree = "<group>"; };
F519D0A459016F2E4B35B7DD0F8CE1B7 /* Pods-ANAChat_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ANAChat_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
F5FA0E39861C43F306DC560DE7344781 /* GoogleToolboxForMac.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GoogleToolboxForMac.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F701BC959ABFA199C02FB002173D7D0C /* ExternalMessageModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ExternalMessageModel.swift; sourceTree = "<group>"; };
FAC7302835CC4B8046DEB1553D23D8B2 /* GoogleToolboxForMac-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-prefix.pch"; sourceTree = "<group>"; };
FB4A3DD045EEE6E7CD8C286A131C7840 /* Wrappers.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Wrappers.pbobjc.m; path = objectivec/google/protobuf/Wrappers.pbobjc.m; sourceTree = "<group>"; };
FBD37FFAE7D4C5D20F561962012FBA1C /* GPBMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage.h; path = objectivec/GPBMessage.h; sourceTree = "<group>"; };
FBDF81FE6F78BC6DDC7467665EC4D34D /* InputLocation+CoreDataClass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "InputLocation+CoreDataClass.swift"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
0687C508F2EE76D0CF73FF22A7D389D3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
0C0D1A606735B2A53D7C1B0FE615A1F3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2FC47908862C779F7C0B9C8D278AC884 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
0D17C2CC3FE0C7AB2E39C676E7DD01BC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
08D9AE8AE01C306975C5761F6356629C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
25C667259AA978E3DBAA233F073641C5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E61CF34007902F30AC028020ED0D2B19 /* Foundation.framework in Frameworks */,
10E0CD6133CFC0FD26996FB7C4E250FC /* GoogleToolboxForMac.framework in Frameworks */,
B3929BBB0599F5B96400BD6F81E24F91 /* nanopb.framework in Frameworks */,
2E78E3D5E1F8AA9EDEC92FE2693ADA9E /* Protobuf.framework in Frameworks */,
8693CFDFF93D3083CA3FF920EE515B2F /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3113924D9EF56AABE6027174EEC39E4D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2CB5395526431829DF28FB13A79A100B /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7C73B8DA25CC4B498AEBE1FA4572F246 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
49EE08CEDFD2C5695D8BE2500810C64D /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
99DA628032445D798B9CAEB6DF12401A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5A71A596B6F3D13AD79909B6A1D38362 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
007BA4D4D910BFBD6C7240627ECFF468 /* FirebaseAnalytics */ = {
isa = PBXGroup;
children = (
6F354D2E63549EA2BBB366BC180B4EE2 /* Frameworks */,
);
path = FirebaseAnalytics;
sourceTree = "<group>";
};
0AF1064AE85BACC7928F418B6892C191 /* Views */ = {
isa = PBXGroup;
children = (
4E4C63E6E7724F004B8A52094E0381C1 /* AddressView.swift */,
153F8180D2D39366A58596F9A72130BB /* CustomAlertView.swift */,
2AED58B2C92366FE040711BFC17ABFF5 /* CustomHeaderView.swift */,
38CBADA3BA46D5E4EF32BD8A9980375A /* DatePickerView.swift */,
56BD5611CA3411BBB2F476CA4AF9CEBA /* InputListView.swift */,
3AAB4CB753B85A54641F74D8375595D6 /* InputOptionsView.swift */,
3708C6AA32E39EEE431C7534B28481AD /* InputTextFieldView.swift */,
8857B367865E991BCB165BA63CE51E4E /* InputTypeButton.swift */,
8079204BD49B5972C95CA2DF76D6ECA3 /* PickerView.swift */,
60D5C9BF7DCCAC722AE27E70A23D26A5 /* TypingIndicatorView.swift */,
);
path = Views;
sourceTree = "<group>";
};
0E651770079EF488178EB0674432F884 /* FirebaseInstanceID */ = {
isa = PBXGroup;
children = (
EE6FEB187EF7C1E3143D3630C909F2BB /* Frameworks */,
);
path = FirebaseInstanceID;
sourceTree = "<group>";
};
108CB5D9C3BF185944DA454A12C6D37B /* Targets Support Files */ = {
isa = PBXGroup;
children = (
656BE1D9D701873FB0336309DFA909F9 /* Pods-ANAChat_Example */,
296B8DFEF63BE640F7CFB57E14EF1690 /* Pods-ANAChat_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
145EE3B5681DCAF2F97C4C2D5DEC5922 /* Support Files */ = {
isa = PBXGroup;
children = (
F44D5B4BB26C61A654FC93278EAB295C /* GoogleToolboxForMac.modulemap */,
4796A981EC663ACE5412390594ADA3DC /* GoogleToolboxForMac.xcconfig */,
DE60DE2513DB31F20C5FA4CA3D064B7A /* GoogleToolboxForMac-dummy.m */,
FAC7302835CC4B8046DEB1553D23D8B2 /* GoogleToolboxForMac-prefix.pch */,
00BCFA06D808EE0E6250A4A185905AF6 /* GoogleToolboxForMac-umbrella.h */,
83853492F9D4599DA84831069BEE67B8 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/GoogleToolboxForMac";
sourceTree = "<group>";
};
15B5113F63DF3AA3032E6DD00D742479 /* Pods */ = {
isa = PBXGroup;
children = (
8C6C6224B6144E581942937FE08D6270 /* Firebase */,
007BA4D4D910BFBD6C7240627ECFF468 /* FirebaseAnalytics */,
814CDE80B34382E456B5F8561546B979 /* FirebaseCore */,
0E651770079EF488178EB0674432F884 /* FirebaseInstanceID */,
BDB613CFA115C5BD3BE91F2B5A141F5E /* FirebaseMessaging */,
6BA6DA2E57CCCE57926338E95FCC8690 /* GoogleToolboxForMac */,
8558CD7D36720957794357DC54D8A9F5 /* nanopb */,
A5812D29616C60191109452888C8E8BE /* Protobuf */,
);
name = Pods;
sourceTree = "<group>";
};
15F2D1CDAAC2ED0D55D49180990FC928 /* ANAChat */ = {
isa = PBXGroup;
children = (
99AE8D659DE09C054ECF0C1CA7E69C79 /* APIHelpers */,
B515CFE9E44DA5804ECC41F61ED7E623 /* DBHelpers */,
9092ABE6D31168D0122D9261718A3DFC /* Resources */,
2B0EE1CE315BC7EC73FEB7C40F94BB06 /* Support Files */,
6CE5E2D20C8FD621023FD7A101B920BF /* UIComponents */,
CC0B55C249C086FF41E98C5A1C129988 /* Utilities */,
);
name = ANAChat;
path = ../..;
sourceTree = "<group>";
};
2879A92740EB0C5874AEBB3481140D08 /* Defines */ = {
isa = PBXGroup;
children = (
DABF35642DA97C73DF0196A6AE304131 /* GTMDefines.h */,
);
name = Defines;
sourceTree = "<group>";
};
296B8DFEF63BE640F7CFB57E14EF1690 /* Pods-ANAChat_Tests */ = {
isa = PBXGroup;
children = (
2868CB104A36ED2DA150C765DE27797E /* Info.plist */,
B2F9AC03C223440208B6BFEF241D4DFD /* Pods-ANAChat_Tests.modulemap */,
3B0AFD2491288033548D6D938C0DCED9 /* Pods-ANAChat_Tests-acknowledgements.markdown */,
44C45E718964FA8A60150B1EFD773320 /* Pods-ANAChat_Tests-acknowledgements.plist */,
8F9AA7E18FCCCA087542D4AA7A10B224 /* Pods-ANAChat_Tests-dummy.m */,
CA33BBDA2C9FB64E710E4253F4A0F3B3 /* Pods-ANAChat_Tests-frameworks.sh */,
A65C6B8C2BD690E1BB11F0336384CB76 /* Pods-ANAChat_Tests-resources.sh */,
A227A2844335BE1B305A19716F85517A /* Pods-ANAChat_Tests-umbrella.h */,
4BD1A46D28A5DBF5BE4E8528C25B8D59 /* Pods-ANAChat_Tests.debug.xcconfig */,
2CEFA7E4A3779D66E5FE40EC1935FFEA /* Pods-ANAChat_Tests.release.xcconfig */,
);
name = "Pods-ANAChat_Tests";
path = "Target Support Files/Pods-ANAChat_Tests";
sourceTree = "<group>";
};
2B0EE1CE315BC7EC73FEB7C40F94BB06 /* Support Files */ = {
isa = PBXGroup;
children = (
0141345A1542D34CD6465199A04C6F6A /* ANAChat.modulemap */,
0E9F7C745FABE59DA8DC6FEBE5D332F7 /* ANAChat.xcconfig */,
5484313DC79D5489FCEE34B03CBDE88F /* ANAChat-dummy.m */,
5DF5B40F807E15043AE597FE8DC26965 /* ANAChat-prefix.pch */,
E9179A76EC522D4C6B6FB58D9877090D /* ANAChat-umbrella.h */,
20964512CE7675CD0CE2F4DC7F4E3CB7 /* Info.plist */,
9ADB3447DDED789CD9C5C24C83E61EF5 /* ResourceBundle-ANAChat-Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/ANAChat";
sourceTree = "<group>";
};
2CE62FF0EBC44ABBD8488AE33F09D740 /* Development Pods */ = {
isa = PBXGroup;
children = (
15F2D1CDAAC2ED0D55D49180990FC928 /* ANAChat */,
);
name = "Development Pods";
sourceTree = "<group>";
};
46D494380DFA7887EB6CCC5F4698ACD8 /* Cells */ = {
isa = PBXGroup;
children = (
DDFE6FC064A34ACB1BB55FE47A69F695 /* ChatCarouselCollectionCell.xib */,
2F07EF2A57A2301A64BF3DCB37AB97EB /* ChatListTableViewCell.xib */,
712FE0AE366E7721C54F9917E80266E6 /* ChatOptionsTableCell.xib */,
BF4B09F49D2B868828A7275A50D62866 /* ChatReceiveCarouselCell.xib */,
3EF2E9318343C8D5A177609F37B83E32 /* ChatReceiverMediaCell.xib */,
6594D637EF91D41B60E0A61E531CB56F /* ChatReceiveTextCell.xib */,
1496E85E744BAB1F33650285BA7415E8 /* ChatSenderMediaCell.xib */,
4465CE282F209B84D3ED47BA9162C473 /* ChatSenderTextCell.xib */,
83463ABC3131D2D501C3800118A35CEB /* TypingIndicatorCell.xib */,
);
path = Cells;
sourceTree = "<group>";
};
4AFC489ECA3F3199B5188B21103BF386 /* DBHelpers */ = {
isa = PBXGroup;
children = (
6145327F944952195B6595D591BF0BC1 /* Chat_iOSSDK.xcdatamodeld */,
);
name = DBHelpers;
path = ANAChat/Classes/DBHelpers;
sourceTree = "<group>";
};
656BE1D9D701873FB0336309DFA909F9 /* Pods-ANAChat_Example */ = {
isa = PBXGroup;
children = (
15E76DD24EF25DB773F69AC644516371 /* Info.plist */,
407A1607E52CA14B02A588AC5B3844AF /* Pods-ANAChat_Example.modulemap */,
F519D0A459016F2E4B35B7DD0F8CE1B7 /* Pods-ANAChat_Example-acknowledgements.markdown */,
40D0F248865BA2FDE61FCEDBDE89BBF5 /* Pods-ANAChat_Example-acknowledgements.plist */,
5901323187388A1B3CD1A90D1D347DA0 /* Pods-ANAChat_Example-dummy.m */,
EAB0D82B3A3B763069BB9A038BA76884 /* Pods-ANAChat_Example-frameworks.sh */,
2D7013B9F58789E5E38C2B4E0E6D6CB5 /* Pods-ANAChat_Example-resources.sh */,
469AB29EF898E0FCFCA74A032F360AEF /* Pods-ANAChat_Example-umbrella.h */,
59151F3CFD8CCC9EA1AFEEDE26A57EA5 /* Pods-ANAChat_Example.debug.xcconfig */,
A4BD48569F4C38C66772F688E38DF56B /* Pods-ANAChat_Example.release.xcconfig */,
);
name = "Pods-ANAChat_Example";
path = "Target Support Files/Pods-ANAChat_Example";
sourceTree = "<group>";
};
686E9649CDF66AB1416E14EAB6729B5D /* Logger */ = {
isa = PBXGroup;
children = (
C0D299A612F2D918CE551356F29ACE30 /* GTMLogger.h */,
AD4DF62AE6E9D48CC565A462F3E7D6B8 /* GTMLogger.m */,
);
name = Logger;
sourceTree = "<group>";
};
6BA6DA2E57CCCE57926338E95FCC8690 /* GoogleToolboxForMac */ = {
isa = PBXGroup;
children = (
2879A92740EB0C5874AEBB3481140D08 /* Defines */,
686E9649CDF66AB1416E14EAB6729B5D /* Logger */,
ADD4C5A672151B7779C7B717DAE83CAC /* NSData+zlib */,
145EE3B5681DCAF2F97C4C2D5DEC5922 /* Support Files */,
);
path = GoogleToolboxForMac;
sourceTree = "<group>";
};
6CE5E2D20C8FD621023FD7A101B920BF /* UIComponents */ = {
isa = PBXGroup;
children = (
6E029EF5979B85CB9A3C4610D3C9EB3D /* Cells */,
C8B1F8F9D296284E1AC7EDE592218CC1 /* ViewControllers */,
0AF1064AE85BACC7928F418B6892C191 /* Views */,
);
name = UIComponents;
path = ANAChat/Classes/UIComponents;
sourceTree = "<group>";
};
6E029EF5979B85CB9A3C4610D3C9EB3D /* Cells */ = {
isa = PBXGroup;
children = (
9AF53BBE696C6C9A00E340848179C133 /* ChatCarouselCollectionCell.swift */,
5A3810BDE345B165DECD876358F699B5 /* ChatListTableViewCell.swift */,
C3C6AE8CB5BE21C02C3D5BFF3D5242B8 /* ChatOptionsTableCell.swift */,
3A16394E5B7B37DF62B15E037284DBE7 /* ChatReceiveCarouselCell.swift */,
3C70C6F85D5F6BD4B8E4C26A46AB93F1 /* ChatReceiverMediaCell.swift */,
E65CECCDC8E1A18B5139A85FFE3B14EF /* ChatReceiveTextCell.swift */,
C539B6C5E4124017F43B08759857763D /* ChatSenderMediaCell.swift */,
E4B1F082748A6EFBFE345D912248D704 /* ChatSenderTextCell.swift */,
97B7346626294BB271E743276371F981 /* TypingIndicatorCell.swift */,
);
path = Cells;
sourceTree = "<group>";
};
6F354D2E63549EA2BBB366BC180B4EE2 /* Frameworks */ = {
isa = PBXGroup;
children = (
E489131A594885F018B79967F109D4C4 /* FirebaseAnalytics.framework */,
4A6A87F0960C8A1AE2904490CFA1BE32 /* FirebaseCoreDiagnostics.framework */,
8D9AB3207FA19BA926AEC7A9C19BA0A2 /* FirebaseNanoPB.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
71319297DC09BE8D1166729333B33604 /* MockJson */ = {
isa = PBXGroup;
children = (
C45C7C49D0457A115F6DB5042D3B8AC6 /* allChatsMock.json */,
);
name = MockJson;
path = ANAChat/Classes/MockJson;
sourceTree = "<group>";
};
71D93A896E63C4B36180075DD73CA08F /* Frameworks */ = {
isa = PBXGroup;
children = (
5239EA3AA21FC1E2AF71D9512122F2DB /* GoogleToolboxForMac.framework */,
4EF037501255AA2444A79148B5FA6AD8 /* nanopb.framework */,
177706F844CB8DA8BC9079A56A3DE6F4 /* Protobuf.framework */,
962DBE90B127A3371A365838C891F7BD /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
2CE62FF0EBC44ABBD8488AE33F09D740 /* Development Pods */,
71D93A896E63C4B36180075DD73CA08F /* Frameworks */,
15B5113F63DF3AA3032E6DD00D742479 /* Pods */,
982452CF77294B2928801DC88284E7BC /* Products */,
108CB5D9C3BF185944DA454A12C6D37B /* Targets Support Files */,
);
sourceTree = "<group>";
};
814CDE80B34382E456B5F8561546B979 /* FirebaseCore */ = {
isa = PBXGroup;
children = (
DFEBCD156ACED7F10FD7A9ED52394A9C /* Frameworks */,
);
path = FirebaseCore;
sourceTree = "<group>";
};
8558CD7D36720957794357DC54D8A9F5 /* nanopb */ = {
isa = PBXGroup;
children = (
93DA288616C1B9F6E4D4C77D659AE164 /* pb.h */,
118009AA37FA4346270ACC42C9444F35 /* pb_common.c */,
C92B3AD174BFA16CEFBD14B1D4A69E1D /* pb_common.h */,
5F4630967F9078CD627B1D99C1A10BE4 /* pb_decode.c */,
DC80E859B98A9DA7B7271B94572C1998 /* pb_decode.h */,
5966CD35E8E1CA1370318AAF93CAA559 /* pb_encode.c */,
B5C0A5327E2B8DF1ADAFCEFBC8B60FF9 /* pb_encode.h */,
AFEFC670BC28E9F57612DF6327E4FB48 /* decode */,
94708DA65B0681DC0D5F5B569CEDFE76 /* encode */,
ABAC1F966420C534327FAE6100D2756B /* Support Files */,
);
path = nanopb;
sourceTree = "<group>";
};
8C6C6224B6144E581942937FE08D6270 /* Firebase */ = {
isa = PBXGroup;
children = (
D483A57D17E4A0B4888E8A533A1E3496 /* Core */,
);
path = Firebase;
sourceTree = "<group>";
};
9002DD19DF5BE3E62D6FF3C13F6827BA /* StoryBoards */ = {
isa = PBXGroup;
children = (
30EDB75B200662E300A34736 /* SDKMain.storyboard */,
);
path = StoryBoards;
sourceTree = "<group>";
};
9092ABE6D31168D0122D9261718A3DFC /* Resources */ = {
isa = PBXGroup;
children = (
5647B60FD6529705F226FC3F17B78CD9 /* SDKAssets.xcassets */,
4AFC489ECA3F3199B5188B21103BF386 /* DBHelpers */,
71319297DC09BE8D1166729333B33604 /* MockJson */,
EE185EABD9A9ACFBB8F2A7A9AE90DC01 /* UIComponents */,
);
name = Resources;
sourceTree = "<group>";
};
94708DA65B0681DC0D5F5B569CEDFE76 /* encode */ = {
isa = PBXGroup;
children = (
);
name = encode;
sourceTree = "<group>";
};
962DBE90B127A3371A365838C891F7BD /* iOS */ = {
isa = PBXGroup;
children = (
3B32CC88FBFC8AA7636450C109B1A6DD /* Foundation.framework */,
6F3FAEA35B48C2EE8BF7E1CCBB8DA804 /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
982452CF77294B2928801DC88284E7BC /* Products */ = {
isa = PBXGroup;
children = (
61EE2DB65460388DEFB53CC223712A66 /* ANAChat.bundle */,
5F47964FDBC46144C2D3B7ED7FFFE7DB /* ANAChat.framework */,
F5FA0E39861C43F306DC560DE7344781 /* GoogleToolboxForMac.framework */,
BC2B74D15429B19CA9857C4840018985 /* nanopb.framework */,
C1F689119584924BD8AF18A8DC558822 /* Pods_ANAChat_Example.framework */,
A4E9544C8AAAF0D5702A050A36BB7DB7 /* Pods_ANAChat_Tests.framework */,
414AB822429579B26642B27717FF304C /* Protobuf.framework */,
);
name = Products;
sourceTree = "<group>";
};
99AE8D659DE09C054ECF0C1CA7E69C79 /* APIHelpers */ = {
isa = PBXGroup;
children = (
160630F0411C79F4AFE25CD457E5B6EA /* APIManager.swift */,
670905FC4909D15FCD99DA5057993FFB /* SDKReachability.swift */,
);
name = APIHelpers;
path = ANAChat/Classes/APIHelpers;
sourceTree = "<group>";
};
A5812D29616C60191109452888C8E8BE /* Protobuf */ = {
isa = PBXGroup;
children = (
A663BCCCCC8C10CD1D45CD87BF708E9D /* Any.pbobjc.h */,
65775860CC7E4A14598465C220D69AD6 /* Any.pbobjc.m */,
DB7E1E90DE520241ADA1A6C0B6113944 /* Api.pbobjc.h */,
C3C2FD839C4EE12CB542AEEDF6A4E860 /* Api.pbobjc.m */,
71A6141A265F1200FDB8C322ABDFCA68 /* Duration.pbobjc.h */,
AB2FC4B13DA3ED00D8E226FF12A2F049 /* Duration.pbobjc.m */,
438EF475DB0778433B652BD0549C31BC /* Empty.pbobjc.h */,
078C2456FCD47F0D5F451DB0451A5CD0 /* Empty.pbobjc.m */,
D0E674497A291E43F5E9F55C2632494B /* FieldMask.pbobjc.h */,
521BC722698B961EC91296CC2DAE0E7B /* FieldMask.pbobjc.m */,
2EAA66A40D00BCDDAFA9980382C5EFE5 /* GPBArray.h */,
10D791D354EEA6581EB63DB68BC4A2DC /* GPBArray.m */,
A601D5266CD3A602585428F47C4DEC47 /* GPBArray_PackagePrivate.h */,
8AA8E7BCC056F17BBC59455F2B2AE698 /* GPBBootstrap.h */,
525A1155D76DD372BF4D14A7C62EFE2B /* GPBCodedInputStream.h */,
78F40EF10B48E25F6E8DAC46B6A11075 /* GPBCodedInputStream.m */,
88C5C98B2A20198E1A021A9B9E87AC93 /* GPBCodedInputStream_PackagePrivate.h */,
150CB46C4295EF02B5708C8877460ED2 /* GPBCodedOutputStream.h */,
A5F61877B4545A262CF5085CBDD39415 /* GPBCodedOutputStream.m */,
04F245333671E568786F9B4457145481 /* GPBCodedOutputStream_PackagePrivate.h */,
8101B3542E53B336F9F4400B26F420C4 /* GPBDescriptor.h */,
1C638EBD5977EB01B99417235D03A50E /* GPBDescriptor.m */,
6826DD97E13D633637D07F71E9D54149 /* GPBDescriptor_PackagePrivate.h */,
BD1A2BBAD2055349C4437BDC00A6CF8C /* GPBDictionary.h */,
CB1CD1E5B688F08EB41849E108B4FCC1 /* GPBDictionary.m */,
4275C1C5335CDDE1B258C5A079A5A80A /* GPBDictionary_PackagePrivate.h */,
0D53CD0966D446BB27A386ADE82F5986 /* GPBExtensionInternals.h */,
DE37671E3CE008D2C4F011CCAA537B94 /* GPBExtensionInternals.m */,
BBECC2042DA3223E3CB65BA6BA633BD1 /* GPBExtensionRegistry.h */,
F3D833AF41A8B219394C6478DBA6C6A6 /* GPBExtensionRegistry.m */,
FBD37FFAE7D4C5D20F561962012FBA1C /* GPBMessage.h */,
DC0A29912E2160ABE67FD84CF71554F7 /* GPBMessage.m */,
E978C30D521776F749F32DBA8A32171E /* GPBMessage_PackagePrivate.h */,
98CB3F3811553A7F960661239DC4CD50 /* GPBProtocolBuffers.h */,
9B5BAFA46BC181767A862E6938B99A34 /* GPBProtocolBuffers_RuntimeSupport.h */,
98F849B4AB7E52FFFA1C80B3F63D3D55 /* GPBRootObject.h */,
B126EE8CE607140080ACD69440685729 /* GPBRootObject.m */,
5F39363075D40A959F49BF3F1DEAEAD9 /* GPBRootObject_PackagePrivate.h */,
28EECC6BF40C5EA45BFF83FE5AF5F71D /* GPBRuntimeTypes.h */,
8E23C54F83CF004274E96571BA64E535 /* GPBUnknownField.h */,
19ED33F0E3F2BA72AAF13956DDD993D2 /* GPBUnknownField.m */,
706067214A1D2C83160ECC67D7A81532 /* GPBUnknownField_PackagePrivate.h */,
43E593E914104CD3E053067B1846D1D6 /* GPBUnknownFieldSet.h */,
53B1495973908531CF1CB45182726F21 /* GPBUnknownFieldSet.m */,
4C09A14639AA0AA4621A68CD4A43EC7E /* GPBUnknownFieldSet_PackagePrivate.h */,
A6BAADCDCED5F2D192A56B27A30E98E7 /* GPBUtilities.h */,
17370EC62F8E267340F264F1EEC678F4 /* GPBUtilities.m */,