-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathproject.pbxproj
1417 lines (1404 loc) · 82.1 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 = 48;
objects = {
/* Begin PBXBuildFile section */
0CA57E7D0FAE570E4269A62B6CC56385 /* FileCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 667825AD71384FA274CF926C0EE2B9D7 /* FileCoordinator.swift */; };
0FB2B626903C5DA2D9B3CEB7E30E5579 /* RecordCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BD0920E5B3EA9568154478900D54309 /* RecordCoordinator.swift */; };
15E465088861E8CF7AF1C42541911A2D /* PixelTest-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1B08C06EADF88312C62E82F869B57B /* PixelTest-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
22389B828251C013B2728CA913818395 /* FileManagerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EF6FE7B5A5446097A5A151CBFC971E7 /* FileManagerType.swift */; };
299541F8A3E193E3C62118F07752617A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 10720798F5DB94D1CFE0EE52E3A844E1 /* Foundation.framework */; };
2BE634617284FC5C2F61B897005EC05B /* Pods-ExampleModule-ExampleModuleTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 987A506FB9337A941683CE422F734D38 /* Pods-ExampleModule-ExampleModuleTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
38B65C6B367555F61008B35F132CDD51 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 10720798F5DB94D1CFE0EE52E3A844E1 /* Foundation.framework */; };
38F5FA90C7108C91E176E83AD15EE59D /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0E6BE8692A6F65ED33313E4ACF2D9C /* Configuration.swift */; };
3AE1BB12DF8129973EE5FACE8EFF27FF /* Pods-ExampleModule-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D741E27008372D07B363D578ADB43CA /* Pods-ExampleModule-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
42B9BBD3F9D2820EDF7895473C4D99D7 /* PixelTestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6548A96681E5CBC9C3F027699EBB969 /* PixelTestCase.swift */; };
4574175766430795692D48A8B1CA428F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 10720798F5DB94D1CFE0EE52E3A844E1 /* Foundation.framework */; };
4DD22817DE088F07C6491AD247CA38D9 /* UIImage+Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52CFC61E0637FC21C625971A9C3C520B /* UIImage+Placeholder.swift */; };
52A04248D343CE50FE140899716196E0 /* PixelTest+VerifyConveniences.swift in Sources */ = {isa = PBXBuildFile; fileRef = 940AC2340947661AA8675CE0D03BDD3C /* PixelTest+VerifyConveniences.swift */; };
52FB2D11F09AEFC98A955342E29E9E97 /* ImageType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 182DCDCECC746D4DB3436C0AD5C412AC /* ImageType.swift */; };
55C9E144C9DE9490C104E3605B538B79 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 10720798F5DB94D1CFE0EE52E3A844E1 /* Foundation.framework */; };
560BD36705B6800E51FBF4B196EDBA1C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 10720798F5DB94D1CFE0EE52E3A844E1 /* Foundation.framework */; };
619462A6AEC524A30D0253AA98B6AAE2 /* ResultsCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C89383D17B30D0C5993C34612E6845CC /* ResultsCoordinator.swift */; };
6BEC8B1ABD914A47BBCCE98338355592 /* UIView+PixelTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = B77B9DAC71D8764AD6D49279617F6B4E /* UIView+PixelTest.swift */; };
7197DEDE4A1BBF96FD6DA104DAC48BBC /* PixelTest-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E95BF7A880CB4EA4531ACB98C7881DFB /* PixelTest-dummy.m */; };
7DD9145A2D78E308E192C6DC280B27CA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 10720798F5DB94D1CFE0EE52E3A844E1 /* Foundation.framework */; };
822EA78892E43E640E0972CA869362D7 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B332A40F0E3274F710688811A1353C85 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8428B7E563B183CA9E12A00CD2766DFD /* InfoPlist.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60F1BD89F8F22B99CAD17753B0B8EEC3 /* InfoPlist.swift */; };
85CCDFBE93B279B0244B3725F9D5D881 /* RecordCoordinatorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 309EC4F5C75EA6BD58D24BA9308AEF09 /* RecordCoordinatorType.swift */; };
8C6EA5C33616E7949B0827E1709C2B28 /* Pods-PixelTest_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE7AF48E1C778790E52F44638AAAF469 /* Pods-PixelTest_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8C7F15AF9023707125E567614B190B2B /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAC3E64EB0238EFF457089E0C97D5A8F /* Errors.swift */; };
ADD1311FA5BE5412834EBA7C72E9005B /* Pods-ExampleModule-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1516D51FD245488D7AB9B07DB32DF055 /* Pods-ExampleModule-dummy.m */; };
B17D2F4D2D15EF12AB65E8A131B000C8 /* LayoutCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C71C5BDE74AEC06964FAFB97E5B5596 /* LayoutCoordinator.swift */; };
B3BD9F633A51B5558F36876F8B6CABDA /* TestCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F10A43A74777962E7428A2C9A6DF38B1 /* TestCoordinator.swift */; };
B6DD629C9DD6BB5E6537D39ED69DE1AB /* PlaceholderImageGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9C82741F7C084D09B8880F1F339F052 /* PlaceholderImageGenerator.swift */; };
BB1B30464B0F371B3B4F53C1B4F78365 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 314B25FC63A2DE537971096596F6B6CF /* UIKit.framework */; };
BD8574CE20AA18F3AAB2ACBB8A1AD019 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6D70BF75F62472300149937331A6D04A /* XCTest.framework */; };
BDC504B286A6A290EFE4693B9ECA40E7 /* Scale.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5C34977E84E1C967143B7D198B67418 /* Scale.swift */; };
BE65CF6DF51BD41AE12C3FDB3EEDDEE7 /* Mode.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA39329054993224101C2724F9248F7B /* Mode.swift */; };
C43E31FD96C9F5397B178D17C93FA186 /* Pods-PixelTest_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D12CBE97C64D7C2F7EF076FF2A3596 /* Pods-PixelTest_Example-dummy.m */; };
C5F0DC13F8041FFA69083AF458310356 /* TestCoordinatorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CEBC12017E054C6CD41EDDF7CBF4D35 /* TestCoordinatorType.swift */; };
C74D9372211F606984CA2C440A9B7395 /* XCTestCase+InfoPlist.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB2DE2D75A03778D0F715FD33CCDEC9E /* XCTestCase+InfoPlist.swift */; };
CDF37946855E4FA6814A7C4799266622 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D635D3DD7E4399E0A207AB2AF4F43BF0 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m */; };
CF6A172DEEFCFE4A3DB5508BA6A56566 /* Pods-PixelTest_Example-PixelTest_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB61AA51798F94AD7DB7853E5A225F8 /* Pods-PixelTest_Example-PixelTest_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
D19C4F8730D933145024F4C11F3ABC12 /* XCTestCase+AddAttachmentWithName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FA6B3EED7FB29B96480CA0D09772C08 /* XCTestCase+AddAttachmentWithName.swift */; };
D5921EE8D9988ED89D3A7ECDDEF0C444 /* LayoutStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67AE5A37D25078D956F7FC8C43034840 /* LayoutStyle.swift */; };
DE635B7E689C21C9BCCB53474A1F3183 /* LayoutCoordinatorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34C28194BE431E16EE2036160414DA65 /* LayoutCoordinatorType.swift */; };
E647B6966C948BF62B84A439E2B61B25 /* UIImage+PixelTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20FB0E4A6AAF90037807C2FBF7F7E837 /* UIImage+PixelTest.swift */; };
EFE78F035996E0B8D9E9F2A12C4C767F /* FileCoordinatorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DA6118FE13296ABA53D7C487F4DFC0A /* FileCoordinatorType.swift */; };
F5DD1CE7F9DE9E09069516CF96367601 /* Pods-ExampleModule-ExampleModuleTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1225E8AA58C1B94D551658A4D6058505 /* Pods-ExampleModule-ExampleModuleTests-dummy.m */; };
FB5031CD8D2242F03E7F29337B70BDDD /* String+Content.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2830885D77444CFAE1EEBD3780B6CFDD /* String+Content.swift */; };
FCB959EAAC5482CD8B7D64FC6C0CD460 /* Pods-PixelTest_Example-PixelTest_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6837606924FE457DCC9DE2BE5F56E30F /* Pods-PixelTest_Example-PixelTest_Tests-dummy.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
29CC106F1C955B6910440AD7A793FF01 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0459B3877C81C24A5FC7517CBAFFA1D3;
remoteInfo = PixelTest;
};
58AAD4EBBE27A03D62CF4678C7A7DBA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0459B3877C81C24A5FC7517CBAFFA1D3;
remoteInfo = PixelTest;
};
F7F0538677C365051D35FF6F58B5D1AD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0459B3877C81C24A5FC7517CBAFFA1D3;
remoteInfo = PixelTest;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0057F232DF464026AB3E948EC0606F96 /* Pods-ExampleModule-ExampleModuleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ExampleModule-ExampleModuleTests.release.xcconfig"; sourceTree = "<group>"; };
0C6EC4DEC977856A34DE333F3DDEC9D5 /* PixelTest.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PixelTest.framework; path = PixelTest.framework; sourceTree = BUILT_PRODUCTS_DIR; };
105D709E5145D9696B9FC28E016FC896 /* Pods-PixelTest_Example-PixelTest_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PixelTest_Example-PixelTest_Tests.modulemap"; sourceTree = "<group>"; };
10720798F5DB94D1CFE0EE52E3A844E1 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
11DF79B16FA80A395660D6F0213719DD /* Pods-ExampleModule-ExampleModuleTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ExampleModule-ExampleModuleTests.modulemap"; sourceTree = "<group>"; };
1225E8AA58C1B94D551658A4D6058505 /* Pods-ExampleModule-ExampleModuleTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ExampleModule-ExampleModuleTests-dummy.m"; sourceTree = "<group>"; };
1516D51FD245488D7AB9B07DB32DF055 /* Pods-ExampleModule-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ExampleModule-dummy.m"; sourceTree = "<group>"; };
1626DE1E38142043F96A9DAD878D3F56 /* Pods_ExampleModule_ExampleModuleTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ExampleModule_ExampleModuleTests.framework; path = "Pods-ExampleModule-ExampleModuleTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
16D4502C10215A0D964E01224F1AC720 /* PixelTest.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PixelTest.modulemap; sourceTree = "<group>"; };
182DCDCECC746D4DB3436C0AD5C412AC /* ImageType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ImageType.swift; sourceTree = "<group>"; };
19DBFDBE89C6C18BEB234C26058C381C /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests-Info.plist"; sourceTree = "<group>"; };
1A75F88201761E40DF4E9489EC0C9A8B /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests.debug.xcconfig"; sourceTree = "<group>"; };
1BD0920E5B3EA9568154478900D54309 /* RecordCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = RecordCoordinator.swift; sourceTree = "<group>"; };
1FA6B3EED7FB29B96480CA0D09772C08 /* XCTestCase+AddAttachmentWithName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "XCTestCase+AddAttachmentWithName.swift"; sourceTree = "<group>"; };
20FB0E4A6AAF90037807C2FBF7F7E837 /* UIImage+PixelTest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIImage+PixelTest.swift"; sourceTree = "<group>"; };
23708629F45E8D24124400645E1B6F2B /* Pods_PixelTest_Example_PixelTestExampleSnapshotTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_PixelTest_Example_PixelTestExampleSnapshotTests.framework; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
27649912118E7C66E975605D977F6B86 /* Pods-PixelTest_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PixelTest_Example-acknowledgements.plist"; sourceTree = "<group>"; };
2830885D77444CFAE1EEBD3780B6CFDD /* String+Content.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "String+Content.swift"; sourceTree = "<group>"; };
28703CCBC13D0A3CD10D81FEE0FD45E4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
2D5A4485B94A9AA5F9606DE776B391BB /* Pods_PixelTest_Example_PixelTest_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_PixelTest_Example_PixelTest_Tests.framework; path = "Pods-PixelTest_Example-PixelTest_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
309EC4F5C75EA6BD58D24BA9308AEF09 /* RecordCoordinatorType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = RecordCoordinatorType.swift; sourceTree = "<group>"; };
314B25FC63A2DE537971096596F6B6CF /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
32D12CBE97C64D7C2F7EF076FF2A3596 /* Pods-PixelTest_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PixelTest_Example-dummy.m"; sourceTree = "<group>"; };
34C28194BE431E16EE2036160414DA65 /* LayoutCoordinatorType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LayoutCoordinatorType.swift; sourceTree = "<group>"; };
3B1879CA3F213AF42B1FB7753E949FF8 /* Pods-PixelTest_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PixelTest_Example.modulemap"; sourceTree = "<group>"; };
4AC77B760320CD183EBDF1BFE33E18E3 /* PixelTest-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PixelTest-Info.plist"; sourceTree = "<group>"; };
4C0E6BE8692A6F65ED33313E4ACF2D9C /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Configuration.swift; sourceTree = "<group>"; };
4CB61AA51798F94AD7DB7853E5A225F8 /* Pods-PixelTest_Example-PixelTest_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PixelTest_Example-PixelTest_Tests-umbrella.h"; sourceTree = "<group>"; };
4D741E27008372D07B363D578ADB43CA /* Pods-ExampleModule-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ExampleModule-umbrella.h"; sourceTree = "<group>"; };
4F257ED640DD627EEF52082C1157A977 /* Pods_PixelTest_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_PixelTest_Example.framework; path = "Pods-PixelTest_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
50579ECF2B7636F5F08DD17B190EAA0B /* Pods-PixelTest_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PixelTest_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
52CFC61E0637FC21C625971A9C3C520B /* UIImage+Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIImage+Placeholder.swift"; sourceTree = "<group>"; };
5C85FBA1FFA2CFB41B7161D21A776CFF /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests.release.xcconfig"; sourceTree = "<group>"; };
60F1BD89F8F22B99CAD17753B0B8EEC3 /* InfoPlist.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = InfoPlist.swift; sourceTree = "<group>"; };
63AEEA7048D853522299BACD60AC6D3B /* Pods-ExampleModule-ExampleModuleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ExampleModule-ExampleModuleTests.debug.xcconfig"; sourceTree = "<group>"; };
667825AD71384FA274CF926C0EE2B9D7 /* FileCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FileCoordinator.swift; sourceTree = "<group>"; };
67AE5A37D25078D956F7FC8C43034840 /* LayoutStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LayoutStyle.swift; sourceTree = "<group>"; };
6837606924FE457DCC9DE2BE5F56E30F /* Pods-PixelTest_Example-PixelTest_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PixelTest_Example-PixelTest_Tests-dummy.m"; sourceTree = "<group>"; };
6D70BF75F62472300149937331A6D04A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
6D7A8B571DA2BDBF392BDB47D1E37BB9 /* Pods_ExampleModule.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_ExampleModule.framework; path = "Pods-ExampleModule.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
6E9A44E13C837F1235035AFAFF90DE0F /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests.modulemap"; sourceTree = "<group>"; };
7C71C5BDE74AEC06964FAFB97E5B5596 /* LayoutCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LayoutCoordinator.swift; sourceTree = "<group>"; };
7EF6FE7B5A5446097A5A151CBFC971E7 /* FileManagerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FileManagerType.swift; sourceTree = "<group>"; };
7FE4DF759373BCD81E1A94D0D7E6AF2E /* Pods-ExampleModule-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ExampleModule-acknowledgements.markdown"; sourceTree = "<group>"; };
8887C242A52C2507D691291954C44364 /* Pods-PixelTest_Example-PixelTest_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PixelTest_Example-PixelTest_Tests-frameworks.sh"; sourceTree = "<group>"; };
89FA230483D9F43F67CDA7B69A806E51 /* Pods-PixelTest_Example-PixelTest_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PixelTest_Example-PixelTest_Tests-Info.plist"; sourceTree = "<group>"; };
8A1F75CB2340A3C9CA43A9BCE3F615FD /* Pods-ExampleModule-ExampleModuleTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ExampleModule-ExampleModuleTests-acknowledgements.markdown"; sourceTree = "<group>"; };
91E23BABD35BC455675CF80F8589FCB9 /* Pods-PixelTest_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PixelTest_Example.release.xcconfig"; sourceTree = "<group>"; };
93FA2EB7821FADE4B678B45AE17920DD /* PixelTest.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PixelTest.xcconfig; sourceTree = "<group>"; };
940AC2340947661AA8675CE0D03BDD3C /* PixelTest+VerifyConveniences.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PixelTest+VerifyConveniences.swift"; path = "PixelTest/PixelTest+VerifyConveniences.swift"; sourceTree = "<group>"; };
94D4A09DA898590D69D21D7A8ADCEFC7 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.markdown"; sourceTree = "<group>"; };
987A506FB9337A941683CE422F734D38 /* Pods-ExampleModule-ExampleModuleTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ExampleModule-ExampleModuleTests-umbrella.h"; sourceTree = "<group>"; };
9B962B2904ECC904124E779615223AC3 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests-frameworks.sh"; sourceTree = "<group>"; };
9CEBC12017E054C6CD41EDDF7CBF4D35 /* TestCoordinatorType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TestCoordinatorType.swift; sourceTree = "<group>"; };
9D03280BD26082E1476E19147B521AB7 /* Pods-ExampleModule.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ExampleModule.modulemap"; sourceTree = "<group>"; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9DA6118FE13296ABA53D7C487F4DFC0A /* FileCoordinatorType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FileCoordinatorType.swift; sourceTree = "<group>"; };
9FDF761024533C3EE9C9A201C5E2292F /* Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
A1E598900F82C496482B7B4E64907AA7 /* Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
A342048B058AE754DEE1B5CCF2479DA2 /* Pods-ExampleModule-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ExampleModule-acknowledgements.plist"; sourceTree = "<group>"; };
A3B5BE7B3F9BA44A779F35BE5459E035 /* Pods-PixelTest_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PixelTest_Example.debug.xcconfig"; sourceTree = "<group>"; };
A7905938218D51B8F5949D5331912670 /* Pods-ExampleModule-ExampleModuleTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ExampleModule-ExampleModuleTests-Info.plist"; sourceTree = "<group>"; };
A98965CA4391733B330C88383881DD97 /* PixelTest.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = PixelTest.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
AA7C40F73E12192AB94998CB56F5F620 /* Pods-ExampleModule.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ExampleModule.release.xcconfig"; sourceTree = "<group>"; };
B332A40F0E3274F710688811A1353C85 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h"; sourceTree = "<group>"; };
B4BC4964CDB661F8498F68B5F6C7B992 /* Pods-PixelTest_Example-PixelTest_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PixelTest_Example-PixelTest_Tests.release.xcconfig"; sourceTree = "<group>"; };
B65298DD62BACA7C270B9529B37BB552 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
B77B9DAC71D8764AD6D49279617F6B4E /* UIView+PixelTest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "UIView+PixelTest.swift"; sourceTree = "<group>"; };
B7DD1B54BCECC7FF2F90F3B99C5889F9 /* Pods-PixelTest_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PixelTest_Example-Info.plist"; sourceTree = "<group>"; };
BE1B08C06EADF88312C62E82F869B57B /* PixelTest-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PixelTest-umbrella.h"; sourceTree = "<group>"; };
BF1A2D3A875C827EEB8719405D35B018 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.plist"; sourceTree = "<group>"; };
C242B9EC616B1F7AD0A273E8EDD694AF /* Pods-ExampleModule-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ExampleModule-Info.plist"; sourceTree = "<group>"; };
C2E9A44C53BA8E75CFE3118E050B21A2 /* Pods-ExampleModule-ExampleModuleTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ExampleModule-ExampleModuleTests-frameworks.sh"; sourceTree = "<group>"; };
C5C34977E84E1C967143B7D198B67418 /* Scale.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Scale.swift; sourceTree = "<group>"; };
C71AB8E874D803081791B145636DACB9 /* Pods-ExampleModule-ExampleModuleTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ExampleModule-ExampleModuleTests-acknowledgements.plist"; sourceTree = "<group>"; };
C89383D17B30D0C5993C34612E6845CC /* ResultsCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ResultsCoordinator.swift; sourceTree = "<group>"; };
CB2DE2D75A03778D0F715FD33CCDEC9E /* XCTestCase+InfoPlist.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "XCTestCase+InfoPlist.swift"; sourceTree = "<group>"; };
CE7AF48E1C778790E52F44638AAAF469 /* Pods-PixelTest_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PixelTest_Example-umbrella.h"; sourceTree = "<group>"; };
CF888046A18427E882FE8D8D9D87B9B5 /* Pods-ExampleModule.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ExampleModule.debug.xcconfig"; sourceTree = "<group>"; };
D635D3DD7E4399E0A207AB2AF4F43BF0 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m"; sourceTree = "<group>"; };
E95BF7A880CB4EA4531ACB98C7881DFB /* PixelTest-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PixelTest-dummy.m"; sourceTree = "<group>"; };
EA39329054993224101C2724F9248F7B /* Mode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Mode.swift; sourceTree = "<group>"; };
F10A43A74777962E7428A2C9A6DF38B1 /* TestCoordinator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TestCoordinator.swift; sourceTree = "<group>"; };
F348434D18BCF2A90C2D79D6D6463DD0 /* Pods-PixelTest_Example-PixelTest_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PixelTest_Example-PixelTest_Tests.debug.xcconfig"; sourceTree = "<group>"; };
F6548A96681E5CBC9C3F027699EBB969 /* PixelTestCase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PixelTestCase.swift; path = PixelTest/PixelTestCase.swift; sourceTree = "<group>"; };
F9C82741F7C084D09B8880F1F339F052 /* PlaceholderImageGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PlaceholderImageGenerator.swift; sourceTree = "<group>"; };
FAC3E64EB0238EFF457089E0C97D5A8F /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Errors.swift; sourceTree = "<group>"; };
FD6D0F92947822CF4FE1251A9EDF0CDA /* PixelTest-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PixelTest-prefix.pch"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
2883864DC28FC9B95904D41B20738B95 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
38B65C6B367555F61008B35F132CDD51 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4B62F07BA1AD8C9F80C282B46AA525F1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
7DD9145A2D78E308E192C6DC280B27CA /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5A3C1A4A9FC41EA78596BB5389BCB45D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
299541F8A3E193E3C62118F07752617A /* Foundation.framework in Frameworks */,
BB1B30464B0F371B3B4F53C1B4F78365 /* UIKit.framework in Frameworks */,
BD8574CE20AA18F3AAB2ACBB8A1AD019 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5A9571EE389642B2932211EF2C6375DB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
560BD36705B6800E51FBF4B196EDBA1C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6B15FA6892DEA11F72C3E8B5DEE34003 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4574175766430795692D48A8B1CA428F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7157ED393A674C3790DB76BB022A4C73 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
55C9E144C9DE9490C104E3605B538B79 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
03C5C200A0787E300053CFA8F53CA094 /* Frameworks */ = {
isa = PBXGroup;
children = (
3EB7C49733567C9707DC4C42374E8323 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
2F919E7D6218B7A78E4548E8684CCB2C /* Pods-ExampleModule */ = {
isa = PBXGroup;
children = (
9D03280BD26082E1476E19147B521AB7 /* Pods-ExampleModule.modulemap */,
7FE4DF759373BCD81E1A94D0D7E6AF2E /* Pods-ExampleModule-acknowledgements.markdown */,
A342048B058AE754DEE1B5CCF2479DA2 /* Pods-ExampleModule-acknowledgements.plist */,
1516D51FD245488D7AB9B07DB32DF055 /* Pods-ExampleModule-dummy.m */,
C242B9EC616B1F7AD0A273E8EDD694AF /* Pods-ExampleModule-Info.plist */,
4D741E27008372D07B363D578ADB43CA /* Pods-ExampleModule-umbrella.h */,
CF888046A18427E882FE8D8D9D87B9B5 /* Pods-ExampleModule.debug.xcconfig */,
AA7C40F73E12192AB94998CB56F5F620 /* Pods-ExampleModule.release.xcconfig */,
);
name = "Pods-ExampleModule";
path = "Target Support Files/Pods-ExampleModule";
sourceTree = "<group>";
};
3EB7C49733567C9707DC4C42374E8323 /* iOS */ = {
isa = PBXGroup;
children = (
10720798F5DB94D1CFE0EE52E3A844E1 /* Foundation.framework */,
314B25FC63A2DE537971096596F6B6CF /* UIKit.framework */,
6D70BF75F62472300149937331A6D04A /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
467D5A143785A7FABC4093B1E95723FB /* Pods-ExampleModule-ExampleModuleTests */ = {
isa = PBXGroup;
children = (
11DF79B16FA80A395660D6F0213719DD /* Pods-ExampleModule-ExampleModuleTests.modulemap */,
8A1F75CB2340A3C9CA43A9BCE3F615FD /* Pods-ExampleModule-ExampleModuleTests-acknowledgements.markdown */,
C71AB8E874D803081791B145636DACB9 /* Pods-ExampleModule-ExampleModuleTests-acknowledgements.plist */,
1225E8AA58C1B94D551658A4D6058505 /* Pods-ExampleModule-ExampleModuleTests-dummy.m */,
C2E9A44C53BA8E75CFE3118E050B21A2 /* Pods-ExampleModule-ExampleModuleTests-frameworks.sh */,
A7905938218D51B8F5949D5331912670 /* Pods-ExampleModule-ExampleModuleTests-Info.plist */,
987A506FB9337A941683CE422F734D38 /* Pods-ExampleModule-ExampleModuleTests-umbrella.h */,
63AEEA7048D853522299BACD60AC6D3B /* Pods-ExampleModule-ExampleModuleTests.debug.xcconfig */,
0057F232DF464026AB3E948EC0606F96 /* Pods-ExampleModule-ExampleModuleTests.release.xcconfig */,
);
name = "Pods-ExampleModule-ExampleModuleTests";
path = "Target Support Files/Pods-ExampleModule-ExampleModuleTests";
sourceTree = "<group>";
};
515E3E5DC6ECA0F1AEFC3748D6A96956 /* Extensions */ = {
isa = PBXGroup;
children = (
2830885D77444CFAE1EEBD3780B6CFDD /* String+Content.swift */,
20FB0E4A6AAF90037807C2FBF7F7E837 /* UIImage+PixelTest.swift */,
52CFC61E0637FC21C625971A9C3C520B /* UIImage+Placeholder.swift */,
B77B9DAC71D8764AD6D49279617F6B4E /* UIView+PixelTest.swift */,
1FA6B3EED7FB29B96480CA0D09772C08 /* XCTestCase+AddAttachmentWithName.swift */,
CB2DE2D75A03778D0F715FD33CCDEC9E /* XCTestCase+InfoPlist.swift */,
);
name = Extensions;
path = PixelTest/Extensions;
sourceTree = "<group>";
};
52CDA0A216EA81558B50C22BA902AE92 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
2F919E7D6218B7A78E4548E8684CCB2C /* Pods-ExampleModule */,
467D5A143785A7FABC4093B1E95723FB /* Pods-ExampleModule-ExampleModuleTests */,
BE0048BE49234530D18D7D5F80414400 /* Pods-PixelTest_Example */,
9075A26BDAE8A5F741421C2706A697A8 /* Pods-PixelTest_Example-PixelTest_Tests */,
664412F0E6F707727BB7E4AC337092E7 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
664412F0E6F707727BB7E4AC337092E7 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests */ = {
isa = PBXGroup;
children = (
6E9A44E13C837F1235035AFAFF90DE0F /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests.modulemap */,
94D4A09DA898590D69D21D7A8ADCEFC7 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.markdown */,
BF1A2D3A875C827EEB8719405D35B018 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-acknowledgements.plist */,
D635D3DD7E4399E0A207AB2AF4F43BF0 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m */,
9B962B2904ECC904124E779615223AC3 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-frameworks.sh */,
19DBFDBE89C6C18BEB234C26058C381C /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-Info.plist */,
B332A40F0E3274F710688811A1353C85 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h */,
1A75F88201761E40DF4E9489EC0C9A8B /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests.debug.xcconfig */,
5C85FBA1FFA2CFB41B7161D21A776CFF /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests.release.xcconfig */,
);
name = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests";
path = "Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests";
sourceTree = "<group>";
};
6A2A7E70179BE88CE2C331A93FA75B44 /* Products */ = {
isa = PBXGroup;
children = (
0C6EC4DEC977856A34DE333F3DDEC9D5 /* PixelTest.framework */,
6D7A8B571DA2BDBF392BDB47D1E37BB9 /* Pods_ExampleModule.framework */,
1626DE1E38142043F96A9DAD878D3F56 /* Pods_ExampleModule_ExampleModuleTests.framework */,
4F257ED640DD627EEF52082C1157A977 /* Pods_PixelTest_Example.framework */,
2D5A4485B94A9AA5F9606DE776B391BB /* Pods_PixelTest_Example_PixelTest_Tests.framework */,
23708629F45E8D24124400645E1B6F2B /* Pods_PixelTest_Example_PixelTestExampleSnapshotTests.framework */,
);
name = Products;
sourceTree = "<group>";
};
7A03CE3CC6C44688DFE2EECE8200B44E /* Development Pods */ = {
isa = PBXGroup;
children = (
EA5D646D26A07337EE984A207144599B /* PixelTest */,
);
name = "Development Pods";
sourceTree = "<group>";
};
9075A26BDAE8A5F741421C2706A697A8 /* Pods-PixelTest_Example-PixelTest_Tests */ = {
isa = PBXGroup;
children = (
105D709E5145D9696B9FC28E016FC896 /* Pods-PixelTest_Example-PixelTest_Tests.modulemap */,
9FDF761024533C3EE9C9A201C5E2292F /* Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.markdown */,
A1E598900F82C496482B7B4E64907AA7 /* Pods-PixelTest_Example-PixelTest_Tests-acknowledgements.plist */,
6837606924FE457DCC9DE2BE5F56E30F /* Pods-PixelTest_Example-PixelTest_Tests-dummy.m */,
8887C242A52C2507D691291954C44364 /* Pods-PixelTest_Example-PixelTest_Tests-frameworks.sh */,
89FA230483D9F43F67CDA7B69A806E51 /* Pods-PixelTest_Example-PixelTest_Tests-Info.plist */,
4CB61AA51798F94AD7DB7853E5A225F8 /* Pods-PixelTest_Example-PixelTest_Tests-umbrella.h */,
F348434D18BCF2A90C2D79D6D6463DD0 /* Pods-PixelTest_Example-PixelTest_Tests.debug.xcconfig */,
B4BC4964CDB661F8498F68B5F6C7B992 /* Pods-PixelTest_Example-PixelTest_Tests.release.xcconfig */,
);
name = "Pods-PixelTest_Example-PixelTest_Tests";
path = "Target Support Files/Pods-PixelTest_Example-PixelTest_Tests";
sourceTree = "<group>";
};
AB3979C181EC43060A6699DA71EFEC52 /* Coordinators */ = {
isa = PBXGroup;
children = (
667825AD71384FA274CF926C0EE2B9D7 /* FileCoordinator.swift */,
7C71C5BDE74AEC06964FAFB97E5B5596 /* LayoutCoordinator.swift */,
1BD0920E5B3EA9568154478900D54309 /* RecordCoordinator.swift */,
C89383D17B30D0C5993C34612E6845CC /* ResultsCoordinator.swift */,
F10A43A74777962E7428A2C9A6DF38B1 /* TestCoordinator.swift */,
);
name = Coordinators;
path = PixelTest/Coordinators;
sourceTree = "<group>";
};
BE0048BE49234530D18D7D5F80414400 /* Pods-PixelTest_Example */ = {
isa = PBXGroup;
children = (
3B1879CA3F213AF42B1FB7753E949FF8 /* Pods-PixelTest_Example.modulemap */,
50579ECF2B7636F5F08DD17B190EAA0B /* Pods-PixelTest_Example-acknowledgements.markdown */,
27649912118E7C66E975605D977F6B86 /* Pods-PixelTest_Example-acknowledgements.plist */,
32D12CBE97C64D7C2F7EF076FF2A3596 /* Pods-PixelTest_Example-dummy.m */,
B7DD1B54BCECC7FF2F90F3B99C5889F9 /* Pods-PixelTest_Example-Info.plist */,
CE7AF48E1C778790E52F44638AAAF469 /* Pods-PixelTest_Example-umbrella.h */,
A3B5BE7B3F9BA44A779F35BE5459E035 /* Pods-PixelTest_Example.debug.xcconfig */,
91E23BABD35BC455675CF80F8589FCB9 /* Pods-PixelTest_Example.release.xcconfig */,
);
name = "Pods-PixelTest_Example";
path = "Target Support Files/Pods-PixelTest_Example";
sourceTree = "<group>";
};
C19345FA2A25E7D83DE9784D40037908 /* Pod */ = {
isa = PBXGroup;
children = (
B65298DD62BACA7C270B9529B37BB552 /* LICENSE */,
A98965CA4391733B330C88383881DD97 /* PixelTest.podspec */,
28703CCBC13D0A3CD10D81FEE0FD45E4 /* README.md */,
);
name = Pod;
sourceTree = "<group>";
};
C6D35A876165F9AB7E86E558224BF317 /* Models */ = {
isa = PBXGroup;
children = (
4C0E6BE8692A6F65ED33313E4ACF2D9C /* Configuration.swift */,
FAC3E64EB0238EFF457089E0C97D5A8F /* Errors.swift */,
182DCDCECC746D4DB3436C0AD5C412AC /* ImageType.swift */,
60F1BD89F8F22B99CAD17753B0B8EEC3 /* InfoPlist.swift */,
67AE5A37D25078D956F7FC8C43034840 /* LayoutStyle.swift */,
EA39329054993224101C2724F9248F7B /* Mode.swift */,
F9C82741F7C084D09B8880F1F339F052 /* PlaceholderImageGenerator.swift */,
C5C34977E84E1C967143B7D198B67418 /* Scale.swift */,
);
name = Models;
path = PixelTest/Models;
sourceTree = "<group>";
};
CF1408CF629C7361332E53B88F7BD30C = {
isa = PBXGroup;
children = (
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
7A03CE3CC6C44688DFE2EECE8200B44E /* Development Pods */,
03C5C200A0787E300053CFA8F53CA094 /* Frameworks */,
6A2A7E70179BE88CE2C331A93FA75B44 /* Products */,
52CDA0A216EA81558B50C22BA902AE92 /* Targets Support Files */,
);
sourceTree = "<group>";
};
E29037A4E482F0177060FA6102D3CC34 /* Protocols */ = {
isa = PBXGroup;
children = (
9DA6118FE13296ABA53D7C487F4DFC0A /* FileCoordinatorType.swift */,
7EF6FE7B5A5446097A5A151CBFC971E7 /* FileManagerType.swift */,
34C28194BE431E16EE2036160414DA65 /* LayoutCoordinatorType.swift */,
309EC4F5C75EA6BD58D24BA9308AEF09 /* RecordCoordinatorType.swift */,
9CEBC12017E054C6CD41EDDF7CBF4D35 /* TestCoordinatorType.swift */,
);
name = Protocols;
path = PixelTest/Protocols;
sourceTree = "<group>";
};
EA5D646D26A07337EE984A207144599B /* PixelTest */ = {
isa = PBXGroup;
children = (
940AC2340947661AA8675CE0D03BDD3C /* PixelTest+VerifyConveniences.swift */,
F6548A96681E5CBC9C3F027699EBB969 /* PixelTestCase.swift */,
AB3979C181EC43060A6699DA71EFEC52 /* Coordinators */,
515E3E5DC6ECA0F1AEFC3748D6A96956 /* Extensions */,
C6D35A876165F9AB7E86E558224BF317 /* Models */,
C19345FA2A25E7D83DE9784D40037908 /* Pod */,
E29037A4E482F0177060FA6102D3CC34 /* Protocols */,
EB0FC99A9A1EBA539A787BA7F3838E8C /* Support Files */,
);
name = PixelTest;
path = ../..;
sourceTree = "<group>";
};
EB0FC99A9A1EBA539A787BA7F3838E8C /* Support Files */ = {
isa = PBXGroup;
children = (
16D4502C10215A0D964E01224F1AC720 /* PixelTest.modulemap */,
93FA2EB7821FADE4B678B45AE17920DD /* PixelTest.xcconfig */,
E95BF7A880CB4EA4531ACB98C7881DFB /* PixelTest-dummy.m */,
4AC77B760320CD183EBDF1BFE33E18E3 /* PixelTest-Info.plist */,
FD6D0F92947822CF4FE1251A9EDF0CDA /* PixelTest-prefix.pch */,
BE1B08C06EADF88312C62E82F869B57B /* PixelTest-umbrella.h */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/PixelTest";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
133AA4F7586ED1EDCAF036A260544D96 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
8C6EA5C33616E7949B0827E1709C2B28 /* Pods-PixelTest_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
19EC8CBAA8E44E44F78F6782C2E3CB3B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
CF6A172DEEFCFE4A3DB5508BA6A56566 /* Pods-PixelTest_Example-PixelTest_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6AFD488D6D742B8B16980F3304D7BB94 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
15E465088861E8CF7AF1C42541911A2D /* PixelTest-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
943944DBC506A42B303C2266A33E3850 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
3AE1BB12DF8129973EE5FACE8EFF27FF /* Pods-ExampleModule-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A81299700A30163A0AA35E38F0F8102C /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
822EA78892E43E640E0972CA869362D7 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FAC3863A2BD4D4C0D60EF1205956836F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
2BE634617284FC5C2F61B897005EC05B /* Pods-ExampleModule-ExampleModuleTests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
0459B3877C81C24A5FC7517CBAFFA1D3 /* PixelTest */ = {
isa = PBXNativeTarget;
buildConfigurationList = 3E3DAFD22F6F5D171B961BE368E0F89A /* Build configuration list for PBXNativeTarget "PixelTest" */;
buildPhases = (
6AFD488D6D742B8B16980F3304D7BB94 /* Headers */,
70B4D4938C50C08BC9789E8A47502D91 /* Sources */,
5A3C1A4A9FC41EA78596BB5389BCB45D /* Frameworks */,
A896F7F78A76323E4332674482AEB8C3 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = PixelTest;
productName = PixelTest;
productReference = 0C6EC4DEC977856A34DE333F3DDEC9D5 /* PixelTest.framework */;
productType = "com.apple.product-type.framework";
};
80770E53F5B8C1E6A6B3889DC9AAD70E /* Pods-ExampleModule */ = {
isa = PBXNativeTarget;
buildConfigurationList = 17B26E7A03CA72FBA4DD57EFCF7DFF0A /* Build configuration list for PBXNativeTarget "Pods-ExampleModule" */;
buildPhases = (
943944DBC506A42B303C2266A33E3850 /* Headers */,
DA4E2A003B64046708DC5BBFF4183283 /* Sources */,
5A9571EE389642B2932211EF2C6375DB /* Frameworks */,
42203F86CD3F1D29FA7CE4E0D760CF83 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "Pods-ExampleModule";
productName = "Pods-ExampleModule";
productReference = 6D7A8B571DA2BDBF392BDB47D1E37BB9 /* Pods_ExampleModule.framework */;
productType = "com.apple.product-type.framework";
};
9B4CDB61FF799ACC33AE3208EE644C3A /* Pods-PixelTest_Example-PixelTest_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 7AFD64A7D1A70E80050D497D464F50AD /* Build configuration list for PBXNativeTarget "Pods-PixelTest_Example-PixelTest_Tests" */;
buildPhases = (
19EC8CBAA8E44E44F78F6782C2E3CB3B /* Headers */,
052CB321E17311726C927743D4469E2F /* Sources */,
4B62F07BA1AD8C9F80C282B46AA525F1 /* Frameworks */,
0A9E93273FD3C2A6141A8C8D68E3F5F7 /* Resources */,
);
buildRules = (
);
dependencies = (
F4843AD0C0EC789956C6C536A22A7FF2 /* PBXTargetDependency */,
);
name = "Pods-PixelTest_Example-PixelTest_Tests";
productName = "Pods-PixelTest_Example-PixelTest_Tests";
productReference = 2D5A4485B94A9AA5F9606DE776B391BB /* Pods_PixelTest_Example_PixelTest_Tests.framework */;
productType = "com.apple.product-type.framework";
};
ADECD77B1259456B4ECD8A753EE1567A /* Pods-ExampleModule-ExampleModuleTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = E04BF03BD57BA8BAF851F15CB98E8570 /* Build configuration list for PBXNativeTarget "Pods-ExampleModule-ExampleModuleTests" */;
buildPhases = (
FAC3863A2BD4D4C0D60EF1205956836F /* Headers */,
B70CB0E4588F16AFE668B3DD8CA80099 /* Sources */,
6B15FA6892DEA11F72C3E8B5DEE34003 /* Frameworks */,
0BB534AA6E58429C71FDE46D198A0281 /* Resources */,
);
buildRules = (
);
dependencies = (
64B257E2E9535BA6B37B12170AC02A17 /* PBXTargetDependency */,
);
name = "Pods-ExampleModule-ExampleModuleTests";
productName = "Pods-ExampleModule-ExampleModuleTests";
productReference = 1626DE1E38142043F96A9DAD878D3F56 /* Pods_ExampleModule_ExampleModuleTests.framework */;
productType = "com.apple.product-type.framework";
};
E7E7350559BE6BE81CD72F73306CF438 /* Pods-PixelTest_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0B18D2F36432F7B95F0943FCC6204229 /* Build configuration list for PBXNativeTarget "Pods-PixelTest_Example" */;
buildPhases = (
133AA4F7586ED1EDCAF036A260544D96 /* Headers */,
BBB16F2B38963297F9823D025EDB8271 /* Sources */,
2883864DC28FC9B95904D41B20738B95 /* Frameworks */,
068BDA5BF2D4DF448D12FA41DA4EE4FD /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "Pods-PixelTest_Example";
productName = "Pods-PixelTest_Example";
productReference = 4F257ED640DD627EEF52082C1157A977 /* Pods_PixelTest_Example.framework */;
productType = "com.apple.product-type.framework";
};
F30D8CD410C6051F41BD4CDEF96C8182 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 5E56AD360BD35A1A5A6E0E9EB8A51DFE /* Build configuration list for PBXNativeTarget "Pods-PixelTest_Example-PixelTestExampleSnapshotTests" */;
buildPhases = (
A81299700A30163A0AA35E38F0F8102C /* Headers */,
F4937F2A2C9CF2236849DE758D58D930 /* Sources */,
7157ED393A674C3790DB76BB022A4C73 /* Frameworks */,
5824BDF0E38C71EC6D080286C9CA8E13 /* Resources */,
);
buildRules = (
);
dependencies = (
A6F5685A6676C987F8D32D563FC2CA71 /* PBXTargetDependency */,
);
name = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests";
productName = "Pods-PixelTest_Example-PixelTestExampleSnapshotTests";
productReference = 23708629F45E8D24124400645E1B6F2B /* Pods_PixelTest_Example_PixelTestExampleSnapshotTests.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 1100;
LastUpgradeCheck = 1100;
};
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 8.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
productRefGroup = 6A2A7E70179BE88CE2C331A93FA75B44 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
0459B3877C81C24A5FC7517CBAFFA1D3 /* PixelTest */,
80770E53F5B8C1E6A6B3889DC9AAD70E /* Pods-ExampleModule */,
ADECD77B1259456B4ECD8A753EE1567A /* Pods-ExampleModule-ExampleModuleTests */,
E7E7350559BE6BE81CD72F73306CF438 /* Pods-PixelTest_Example */,
9B4CDB61FF799ACC33AE3208EE644C3A /* Pods-PixelTest_Example-PixelTest_Tests */,
F30D8CD410C6051F41BD4CDEF96C8182 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
068BDA5BF2D4DF448D12FA41DA4EE4FD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
0A9E93273FD3C2A6141A8C8D68E3F5F7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
0BB534AA6E58429C71FDE46D198A0281 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
42203F86CD3F1D29FA7CE4E0D760CF83 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
5824BDF0E38C71EC6D080286C9CA8E13 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
A896F7F78A76323E4332674482AEB8C3 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
052CB321E17311726C927743D4469E2F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FCB959EAAC5482CD8B7D64FC6C0CD460 /* Pods-PixelTest_Example-PixelTest_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
70B4D4938C50C08BC9789E8A47502D91 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
38F5FA90C7108C91E176E83AD15EE59D /* Configuration.swift in Sources */,
8C7F15AF9023707125E567614B190B2B /* Errors.swift in Sources */,
0CA57E7D0FAE570E4269A62B6CC56385 /* FileCoordinator.swift in Sources */,
EFE78F035996E0B8D9E9F2A12C4C767F /* FileCoordinatorType.swift in Sources */,
22389B828251C013B2728CA913818395 /* FileManagerType.swift in Sources */,
52FB2D11F09AEFC98A955342E29E9E97 /* ImageType.swift in Sources */,
8428B7E563B183CA9E12A00CD2766DFD /* InfoPlist.swift in Sources */,
B17D2F4D2D15EF12AB65E8A131B000C8 /* LayoutCoordinator.swift in Sources */,
DE635B7E689C21C9BCCB53474A1F3183 /* LayoutCoordinatorType.swift in Sources */,
D5921EE8D9988ED89D3A7ECDDEF0C444 /* LayoutStyle.swift in Sources */,
BE65CF6DF51BD41AE12C3FDB3EEDDEE7 /* Mode.swift in Sources */,
52A04248D343CE50FE140899716196E0 /* PixelTest+VerifyConveniences.swift in Sources */,
7197DEDE4A1BBF96FD6DA104DAC48BBC /* PixelTest-dummy.m in Sources */,
42B9BBD3F9D2820EDF7895473C4D99D7 /* PixelTestCase.swift in Sources */,
B6DD629C9DD6BB5E6537D39ED69DE1AB /* PlaceholderImageGenerator.swift in Sources */,
0FB2B626903C5DA2D9B3CEB7E30E5579 /* RecordCoordinator.swift in Sources */,
85CCDFBE93B279B0244B3725F9D5D881 /* RecordCoordinatorType.swift in Sources */,
619462A6AEC524A30D0253AA98B6AAE2 /* ResultsCoordinator.swift in Sources */,
BDC504B286A6A290EFE4693B9ECA40E7 /* Scale.swift in Sources */,
FB5031CD8D2242F03E7F29337B70BDDD /* String+Content.swift in Sources */,
B3BD9F633A51B5558F36876F8B6CABDA /* TestCoordinator.swift in Sources */,
C5F0DC13F8041FFA69083AF458310356 /* TestCoordinatorType.swift in Sources */,
E647B6966C948BF62B84A439E2B61B25 /* UIImage+PixelTest.swift in Sources */,
4DD22817DE088F07C6491AD247CA38D9 /* UIImage+Placeholder.swift in Sources */,
6BEC8B1ABD914A47BBCCE98338355592 /* UIView+PixelTest.swift in Sources */,
D19C4F8730D933145024F4C11F3ABC12 /* XCTestCase+AddAttachmentWithName.swift in Sources */,
C74D9372211F606984CA2C440A9B7395 /* XCTestCase+InfoPlist.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B70CB0E4588F16AFE668B3DD8CA80099 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
F5DD1CE7F9DE9E09069516CF96367601 /* Pods-ExampleModule-ExampleModuleTests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
BBB16F2B38963297F9823D025EDB8271 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C43E31FD96C9F5397B178D17C93FA186 /* Pods-PixelTest_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DA4E2A003B64046708DC5BBFF4183283 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
ADD1311FA5BE5412834EBA7C72E9005B /* Pods-ExampleModule-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F4937F2A2C9CF2236849DE758D58D930 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
CDF37946855E4FA6814A7C4799266622 /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
64B257E2E9535BA6B37B12170AC02A17 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PixelTest;
target = 0459B3877C81C24A5FC7517CBAFFA1D3 /* PixelTest */;
targetProxy = 29CC106F1C955B6910440AD7A793FF01 /* PBXContainerItemProxy */;
};
A6F5685A6676C987F8D32D563FC2CA71 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PixelTest;
target = 0459B3877C81C24A5FC7517CBAFFA1D3 /* PixelTest */;
targetProxy = F7F0538677C365051D35FF6F58B5D1AD /* PBXContainerItemProxy */;
};
F4843AD0C0EC789956C6C536A22A7FF2 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PixelTest;
target = 0459B3877C81C24A5FC7517CBAFFA1D3 /* PixelTest */;
targetProxy = 58AAD4EBBE27A03D62CF4678C7A7DBA2 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
1422B121EAEAEA11307496903FA623C6 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_RELEASE=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
SWIFT_VERSION = 5.0;
SYMROOT = "${SRCROOT}/../build";
};
name = Release;
};
20AC978F6C182D6A2220960C5D8BCE9D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 91E23BABD35BC455675CF80F8589FCB9 /* Pods-PixelTest_Example.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-PixelTest_Example/Pods-PixelTest_Example.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
3B10869DABE7CDD4BE2DF7ECDB43C891 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 5C85FBA1FFA2CFB41B7161D21A776CFF /* Pods-PixelTest_Example-PixelTestExampleSnapshotTests.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-PixelTest_Example-PixelTestExampleSnapshotTests/Pods-PixelTest_Example-PixelTestExampleSnapshotTests.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
3EAF506CDBCF02FCA352F339C5F49DF3 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = B4BC4964CDB661F8498F68B5F6C7B992 /* Pods-PixelTest_Example-PixelTest_Tests.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
5312ABC6C769FE64CFC145BED72EA27F /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = F348434D18BCF2A90C2D79D6D6463DD0 /* Pods-PixelTest_Example-PixelTest_Tests.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-PixelTest_Example-PixelTest_Tests/Pods-PixelTest_Example-PixelTest_Tests.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";