-
Notifications
You must be signed in to change notification settings - Fork 514
/
Copy pathproject.pbxproj
1379 lines (1365 loc) · 91.2 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 */
0E71BE2A22E94C7200FC5B99 /* fireworks.gif in Resources */ = {isa = PBXBuildFile; fileRef = 0E71BE2522E94C7200FC5B99 /* fireworks.gif */; };
139D3A631F67284400F82935 /* PINRemoteImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 139D3A5A1F67284400F82935 /* PINRemoteImage.framework */; };
139D4FCA1F672B0D00DE64E0 /* PINButton+PINRemoteImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD47F991C699F4B00F12CA0 /* PINButton+PINRemoteImage.m */; };
139D4FCB1F672B0D00DE64E0 /* PINImageView+PINRemoteImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD47F9B1C699F4B00F12CA0 /* PINImageView+PINRemoteImage.m */; };
139D4FCC1F672B0D00DE64E0 /* NSData+ImageDetectors.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918DF1BCF23C800710963 /* NSData+ImageDetectors.m */; };
139D4FCD1F672B0D00DE64E0 /* PINCache+PINRemoteImageCaching.m in Sources */ = {isa = PBXBuildFile; fileRef = 68CA92821DB19C20008BECE2 /* PINCache+PINRemoteImageCaching.m */; };
139D4FCE1F672B0D00DE64E0 /* PINAlternateRepresentationProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F0EA8F1CB32EC900F1FD41 /* PINAlternateRepresentationProvider.m */; };
139D4FD01F672B0D00DE64E0 /* PINProgressiveImage.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918EE1BCF23C800710963 /* PINProgressiveImage.m */; };
139D4FD11F672B0D00DE64E0 /* PINRemoteImageCategoryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918DC1BCF23C800710963 /* PINRemoteImageCategoryManager.m */; };
139D4FD21F672B0D00DE64E0 /* PINRemoteImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918F61BCF23C800710963 /* PINRemoteImageManager.m */; };
139D4FD31F672B0D00DE64E0 /* PINRemoteImageManagerResult.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918F81BCF23C800710963 /* PINRemoteImageManagerResult.m */; };
139D4FD41F672B0D00DE64E0 /* PINURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918FE1BCF23C900710963 /* PINURLSessionManager.m */; };
139D4FD51F672B0D00DE64E0 /* PINRequestRetryStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 926E015D1F0DFCAE00874D01 /* PINRequestRetryStrategy.m */; };
139D4FD61F672B0D00DE64E0 /* PINImage+ScaledImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A6B1D91E5248BF003A92D1 /* PINImage+ScaledImage.m */; };
139D4FD71F672B0D00DE64E0 /* PINImage+DecodedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD47FA11C699FDC00F12CA0 /* PINImage+DecodedImage.m */; };
139D4FD81F672B0D00DE64E0 /* PINImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD47FA31C699FDC00F12CA0 /* PINImage+WebP.m */; };
139D4FDB1F672B0D00DE64E0 /* PINRemoteImageCallbacks.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918F11BCF23C800710963 /* PINRemoteImageCallbacks.m */; };
139D4FDC1F672B0D00DE64E0 /* PINRemoteImageDownloadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918F41BCF23C800710963 /* PINRemoteImageDownloadTask.m */; };
139D4FDD1F672B0D00DE64E0 /* PINRemoteImageProcessorTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918FA1BCF23C800710963 /* PINRemoteImageProcessorTask.m */; };
139D4FDE1F672B0D00DE64E0 /* PINRemoteImageTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918FC1BCF23C800710963 /* PINRemoteImageTask.m */; };
139D4FDF1F672B0D00DE64E0 /* PINRemoteLock.m in Sources */ = {isa = PBXBuildFile; fileRef = 6858C0741C9CC5BA00E420EB /* PINRemoteLock.m */; };
139D4FE01F672B0D00DE64E0 /* PINRemoteImageMemoryContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F0EA911CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.m */; };
139D4FE11F672B0D00DE64E0 /* PINRemoteImageBasicCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 68CA927A1DAEFF93008BECE2 /* PINRemoteImageBasicCache.m */; };
139D4FE21F672B0D00DE64E0 /* PINRemoteImageDownloadQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B1F2801E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.m */; };
139D4FE31F672B0D00DE64E0 /* PINResume.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B7E3B11E736C73000FC887 /* PINResume.m */; };
139D4FE41F672B0D00DE64E0 /* PINSpeedRecorder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6860CB071F578287005E886E /* PINSpeedRecorder.m */; };
139D50A31F672BBF00DE64E0 /* PINImage+ScaledImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A6B1DA1E5248BF003A92D1 /* PINImage+ScaledImage.h */; };
139D50A41F672BBF00DE64E0 /* PINImage+DecodedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD47FA01C699FDC00F12CA0 /* PINImage+DecodedImage.h */; };
139D50A51F672BBF00DE64E0 /* PINImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD47FA21C699FDC00F12CA0 /* PINImage+WebP.h */; };
139D50A71F672BBF00DE64E0 /* PINRemoteImageTask+Subclassing.h in Headers */ = {isa = PBXBuildFile; fileRef = 686D48CE1ED38FC0003DB4C2 /* PINRemoteImageTask+Subclassing.h */; };
139D50A91F672BBF00DE64E0 /* PINRemoteImageCallbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B918F01BCF23C800710963 /* PINRemoteImageCallbacks.h */; };
139D50AA1F672BBF00DE64E0 /* PINRemoteImageDownloadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B918F31BCF23C800710963 /* PINRemoteImageDownloadTask.h */; };
139D50AB1F672BBF00DE64E0 /* PINRemoteImageProcessorTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B918F91BCF23C800710963 /* PINRemoteImageProcessorTask.h */; };
139D50AC1F672BBF00DE64E0 /* PINRemoteImageTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B918FB1BCF23C800710963 /* PINRemoteImageTask.h */; };
139D50AD1F672BBF00DE64E0 /* PINRemoteLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6858C0731C9CC5BA00E420EB /* PINRemoteLock.h */; };
139D50AE1F672BBF00DE64E0 /* PINRemoteImageMemoryContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F0EA901CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.h */; };
139D50AF1F672BBF00DE64E0 /* PINRemoteImageBasicCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CA92791DAEFF93008BECE2 /* PINRemoteImageBasicCache.h */; };
139D50B01F672BBF00DE64E0 /* PINRemoteImageDownloadQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B1F27F1E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.h */; };
139D50B11F672BBF00DE64E0 /* PINResume.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B7E3B01E736C73000FC887 /* PINResume.h */; };
139D50B21F672BBF00DE64E0 /* PINSpeedRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6860CB061F578287005E886E /* PINSpeedRecorder.h */; };
683128F51F95045200D5B4A8 /* PINAnimatedImage+PINAnimatedImageTesting.m in Sources */ = {isa = PBXBuildFile; fileRef = 683128F41F95045200D5B4A8 /* PINAnimatedImage+PINAnimatedImageTesting.m */; };
6858C0751C9CC5BA00E420EB /* PINRemoteLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6858C0731C9CC5BA00E420EB /* PINRemoteLock.h */; };
6858C0761C9CC5BA00E420EB /* PINRemoteLock.m in Sources */ = {isa = PBXBuildFile; fileRef = 6858C0741C9CC5BA00E420EB /* PINRemoteLock.m */; };
6860CB081F578287005E886E /* PINSpeedRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6860CB061F578287005E886E /* PINSpeedRecorder.h */; };
6860CB091F578287005E886E /* PINSpeedRecorder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6860CB071F578287005E886E /* PINSpeedRecorder.m */; };
6864A9221F6D94AF007BB848 /* PINAnimatedImageTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6864A9211F6D94AF007BB848 /* PINAnimatedImageTests.swift */; };
686D48D01ED38FC0003DB4C2 /* PINRemoteImageTask+Subclassing.h in Headers */ = {isa = PBXBuildFile; fileRef = 686D48CE1ED38FC0003DB4C2 /* PINRemoteImageTask+Subclassing.h */; };
687750281F6B2305008748B0 /* PINWebPAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 687750261F6B2305008748B0 /* PINWebPAnimatedImage.m */; };
68837707252F9D5300B9C290 /* PINCache.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68837706252F9D5300B9C290 /* PINCache.framework */; };
68837709252F9D5300B9C290 /* PINOperation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68837708252F9D5300B9C290 /* PINOperation.framework */; };
6883770B252F9D7800B9C290 /* PINCache.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6883770A252F9D7800B9C290 /* PINCache.framework */; };
6883770D252F9D7800B9C290 /* PINOperation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6883770C252F9D7800B9C290 /* PINOperation.framework */; };
68912D86208FDB4900F5FE0E /* PINRemoteWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 68912D84208FDB4900F5FE0E /* PINRemoteWeakProxy.h */; };
68912D87208FDB4900F5FE0E /* PINRemoteWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 68912D84208FDB4900F5FE0E /* PINRemoteWeakProxy.h */; };
68912D88208FDB4900F5FE0E /* PINRemoteWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68912D85208FDB4900F5FE0E /* PINRemoteWeakProxy.m */; };
68912D89208FDB4900F5FE0E /* PINRemoteWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68912D85208FDB4900F5FE0E /* PINRemoteWeakProxy.m */; };
689613D8208FD89900D2095C /* PINAnimatedImageView+PINRemoteImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 689613D2208FD89900D2095C /* PINAnimatedImageView+PINRemoteImage.m */; };
689613D9208FD89900D2095C /* PINAnimatedImageView+PINRemoteImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 689613D2208FD89900D2095C /* PINAnimatedImageView+PINRemoteImage.m */; };
689613DE208FD8B700D2095C /* PINAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 689613DC208FD8B600D2095C /* PINAnimatedImageView.m */; };
689613DF208FD8B700D2095C /* PINAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 689613DC208FD8B600D2095C /* PINAnimatedImageView.m */; };
689613E4208FD90B00D2095C /* PINDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 689613E2208FD90A00D2095C /* PINDisplayLink.h */; };
689613E5208FD90B00D2095C /* PINDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 689613E2208FD90A00D2095C /* PINDisplayLink.h */; };
689613E6208FD90B00D2095C /* PINDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 689613E3208FD90B00D2095C /* PINDisplayLink.m */; };
689613E7208FD90B00D2095C /* PINDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 689613E3208FD90B00D2095C /* PINDisplayLink.m */; };
68A0FC1C1E523434000B552D /* PINRemoteImageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A0FC1B1E523434000B552D /* PINRemoteImageTests.m */; };
68A0FC1E1E523434000B552D /* PINRemoteImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F1B918D11BCF239200710963 /* PINRemoteImage.framework */; };
68A6B1DB1E5248BF003A92D1 /* PINImage+ScaledImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A6B1D91E5248BF003A92D1 /* PINImage+ScaledImage.m */; };
68A6B1DC1E5248BF003A92D1 /* PINImage+ScaledImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A6B1DA1E5248BF003A92D1 /* PINImage+ScaledImage.h */; };
68B1F2811E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B1F27F1E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.h */; };
68B1F2821E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B1F2801E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.m */; };
68B7E3B21E736C73000FC887 /* PINResume.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B7E3B01E736C73000FC887 /* PINResume.h */; };
68B7E3B31E736C73000FC887 /* PINResume.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B7E3B11E736C73000FC887 /* PINResume.m */; };
68C155CC1F6EE0A20075EE40 /* PINCachedAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C155CA1F6EE0A20075EE40 /* PINCachedAnimatedImage.m */; };
68C155D71F6EE8890075EE40 /* PINAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C155D51F6EE8890075EE40 /* PINAnimatedImage.m */; };
68C155DD1F6F202F0075EE40 /* PINGIFAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C155DB1F6F202F0075EE40 /* PINGIFAnimatedImage.m */; };
68CA927C1DAEFF93008BECE2 /* PINRemoteImageBasicCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CA92791DAEFF93008BECE2 /* PINRemoteImageBasicCache.h */; };
68CA927D1DAEFF93008BECE2 /* PINRemoteImageBasicCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 68CA927A1DAEFF93008BECE2 /* PINRemoteImageBasicCache.m */; };
68CA92841DB19C20008BECE2 /* PINCache+PINRemoteImageCaching.m in Sources */ = {isa = PBXBuildFile; fileRef = 68CA92821DB19C20008BECE2 /* PINCache+PINRemoteImageCaching.m */; };
68D7344C1F75FDCF00B9C95D /* PINAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C155D51F6EE8890075EE40 /* PINAnimatedImage.m */; };
68D7344E1F75FDDB00B9C95D /* PINCachedAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C155CA1F6EE0A20075EE40 /* PINCachedAnimatedImage.m */; };
68D734521F75FDEA00B9C95D /* PINGIFAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C155DB1F6F202F0075EE40 /* PINGIFAnimatedImage.m */; };
68F0EA931CB32EC900F1FD41 /* PINAlternateRepresentationProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F0EA8F1CB32EC900F1FD41 /* PINAlternateRepresentationProvider.m */; };
68F0EA941CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F0EA901CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.h */; };
68F0EA951CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F0EA911CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.m */; };
926E01641F0DFEE800874D01 /* PINRequestRetryStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 926E015D1F0DFCAE00874D01 /* PINRequestRetryStrategy.m */; };
938E98D52224775600029E4D /* PINRemoteImageManagerConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 939546BE2220AF84006031BB /* PINRemoteImageManagerConfiguration.h */; };
938E98DA2224775B00029E4D /* PINRemoteImageManagerConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 939546BF2220AF84006031BB /* PINRemoteImageManagerConfiguration.m */; };
939546C02220AF84006031BB /* PINRemoteImageManagerConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 939546BE2220AF84006031BB /* PINRemoteImageManagerConfiguration.h */; };
939546C12220AF84006031BB /* PINRemoteImageManagerConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 939546BF2220AF84006031BB /* PINRemoteImageManagerConfiguration.m */; };
9A079DD826826EFD00F2E70A /* PINImage+AlternativeTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A079DD726826EFD00F2E70A /* PINImage+AlternativeTypes.m */; };
9A079DE1268270F900F2E70A /* PINImage+AlternativeTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A079DDB26826F0E00F2E70A /* PINImage+AlternativeTypes.h */; settings = {ATTRIBUTES = (Public, ); }; };
9DD47F9D1C699F4B00F12CA0 /* PINButton+PINRemoteImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD47F991C699F4B00F12CA0 /* PINButton+PINRemoteImage.m */; };
9DD47F9F1C699F4B00F12CA0 /* PINImageView+PINRemoteImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD47F9B1C699F4B00F12CA0 /* PINImageView+PINRemoteImage.m */; };
9DD47FA41C699FDC00F12CA0 /* PINImage+DecodedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD47FA01C699FDC00F12CA0 /* PINImage+DecodedImage.h */; };
9DD47FA51C699FDC00F12CA0 /* PINImage+DecodedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD47FA11C699FDC00F12CA0 /* PINImage+DecodedImage.m */; };
9DD47FA61C699FDC00F12CA0 /* PINImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD47FA21C699FDC00F12CA0 /* PINImage+WebP.h */; };
9DD47FA71C699FDC00F12CA0 /* PINImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DD47FA31C699FDC00F12CA0 /* PINImage+WebP.m */; };
A7343C5B228993D100972894 /* NSHTTPURLResponse+MaxAge.m in Sources */ = {isa = PBXBuildFile; fileRef = ACD28EAE81695DDF84BB76B8 /* NSHTTPURLResponse+MaxAge.m */; };
A7343C60228993F400972894 /* NSHTTPURLResponse+MaxAge.m in Sources */ = {isa = PBXBuildFile; fileRef = ACD28EAE81695DDF84BB76B8 /* NSHTTPURLResponse+MaxAge.m */; };
ACD28AB87FABF6BA3B9BF4E4 /* NSDate+PINCacheTests.m in Sources */ = {isa = PBXBuildFile; fileRef = ACD28D963D79EEC14EE071CE /* NSDate+PINCacheTests.m */; };
D93A340224182D46005EB15E /* TestAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D93A340124182D46005EB15E /* TestAnimatedImage.m */; };
D93A340324182D46005EB15E /* TestAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = D93A340124182D46005EB15E /* TestAnimatedImage.m */; };
F1B918FF1BCF23C900710963 /* PINRemoteImageCategoryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918DC1BCF23C800710963 /* PINRemoteImageCategoryManager.m */; };
F1B919011BCF23C900710963 /* NSData+ImageDetectors.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918DF1BCF23C800710963 /* NSData+ImageDetectors.m */; };
F1B9190F1BCF23C900710963 /* PINProgressiveImage.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918EE1BCF23C800710963 /* PINProgressiveImage.m */; };
F1B919111BCF23C900710963 /* PINRemoteImageCallbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B918F01BCF23C800710963 /* PINRemoteImageCallbacks.h */; };
F1B919121BCF23C900710963 /* PINRemoteImageCallbacks.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918F11BCF23C800710963 /* PINRemoteImageCallbacks.m */; };
F1B919141BCF23C900710963 /* PINRemoteImageDownloadTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B918F31BCF23C800710963 /* PINRemoteImageDownloadTask.h */; };
F1B919151BCF23C900710963 /* PINRemoteImageDownloadTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918F41BCF23C800710963 /* PINRemoteImageDownloadTask.m */; };
F1B919171BCF23C900710963 /* PINRemoteImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918F61BCF23C800710963 /* PINRemoteImageManager.m */; };
F1B919191BCF23C900710963 /* PINRemoteImageManagerResult.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918F81BCF23C800710963 /* PINRemoteImageManagerResult.m */; };
F1B9191A1BCF23C900710963 /* PINRemoteImageProcessorTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B918F91BCF23C800710963 /* PINRemoteImageProcessorTask.h */; };
F1B9191B1BCF23C900710963 /* PINRemoteImageProcessorTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918FA1BCF23C800710963 /* PINRemoteImageProcessorTask.m */; };
F1B9191C1BCF23C900710963 /* PINRemoteImageTask.h in Headers */ = {isa = PBXBuildFile; fileRef = F1B918FB1BCF23C800710963 /* PINRemoteImageTask.h */; };
F1B9191D1BCF23C900710963 /* PINRemoteImageTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918FC1BCF23C800710963 /* PINRemoteImageTask.m */; };
F1B9191F1BCF23C900710963 /* PINURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B918FE1BCF23C900710963 /* PINURLSessionManager.m */; };
F370FD6624AD0F6D0026A9D9 /* WebPDemux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F370FD6524AD0F6D0026A9D9 /* WebPDemux.framework */; };
F370FD6924AD0F920026A9D9 /* WebPDecoder.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F370FD6824AD0F920026A9D9 /* WebPDecoder.framework */; };
FBC8209C2526277E007FD40D /* PINURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820812526277E007FD40D /* PINURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC8209D2526277E007FD40D /* PINURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820812526277E007FD40D /* PINURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC8209E2526277E007FD40D /* PINRemoteImageCategoryManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820822526277E007FD40D /* PINRemoteImageCategoryManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC8209F2526277E007FD40D /* PINRemoteImageCategoryManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820822526277E007FD40D /* PINRemoteImageCategoryManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A02526277E007FD40D /* PINAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820832526277E007FD40D /* PINAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A12526277E007FD40D /* PINAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820832526277E007FD40D /* PINAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A22526277E007FD40D /* PINProgressiveImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820842526277E007FD40D /* PINProgressiveImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A32526277E007FD40D /* PINProgressiveImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820842526277E007FD40D /* PINProgressiveImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A42526277E007FD40D /* PINRequestRetryStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820852526277E007FD40D /* PINRequestRetryStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A52526277E007FD40D /* PINRequestRetryStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820852526277E007FD40D /* PINRequestRetryStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A62526277E007FD40D /* PINAnimatedImageView+PINRemoteImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820862526277E007FD40D /* PINAnimatedImageView+PINRemoteImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A72526277E007FD40D /* PINAnimatedImageView+PINRemoteImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820862526277E007FD40D /* PINAnimatedImageView+PINRemoteImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A82526277E007FD40D /* PINCache+PINRemoteImageCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820872526277E007FD40D /* PINCache+PINRemoteImageCaching.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820A92526277E007FD40D /* PINCache+PINRemoteImageCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820872526277E007FD40D /* PINCache+PINRemoteImageCaching.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820AA2526277E007FD40D /* PINAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820882526277E007FD40D /* PINAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820AB2526277E007FD40D /* PINAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820882526277E007FD40D /* PINAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820AC2526277E007FD40D /* PINWebPAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820892526277E007FD40D /* PINWebPAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820AD2526277E007FD40D /* PINWebPAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820892526277E007FD40D /* PINWebPAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820AE2526277E007FD40D /* PINGIFAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208A2526277E007FD40D /* PINGIFAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820AF2526277E007FD40D /* PINGIFAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208A2526277E007FD40D /* PINGIFAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B02526277E007FD40D /* PINRemoteImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208B2526277E007FD40D /* PINRemoteImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B12526277E007FD40D /* PINRemoteImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208B2526277E007FD40D /* PINRemoteImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B22526277E007FD40D /* PINRemoteImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208C2526277E007FD40D /* PINRemoteImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B32526277E007FD40D /* PINRemoteImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208C2526277E007FD40D /* PINRemoteImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B42526277E007FD40D /* PINAlternateRepresentationProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208D2526277E007FD40D /* PINAlternateRepresentationProvider.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B52526277E007FD40D /* PINAlternateRepresentationProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208D2526277E007FD40D /* PINAlternateRepresentationProvider.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B62526277E007FD40D /* NSData+ImageDetectors.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208E2526277E007FD40D /* NSData+ImageDetectors.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B72526277E007FD40D /* NSData+ImageDetectors.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208E2526277E007FD40D /* NSData+ImageDetectors.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B82526277E007FD40D /* PINRemoteImageMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208F2526277E007FD40D /* PINRemoteImageMacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820B92526277E007FD40D /* PINRemoteImageMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC8208F2526277E007FD40D /* PINRemoteImageMacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820BA2526277E007FD40D /* PINButton+PINRemoteImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820902526277E007FD40D /* PINButton+PINRemoteImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820BB2526277E007FD40D /* PINButton+PINRemoteImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820902526277E007FD40D /* PINButton+PINRemoteImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820BC2526277E007FD40D /* PINRemoteImageManagerResult.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820912526277E007FD40D /* PINRemoteImageManagerResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820BD2526277E007FD40D /* PINRemoteImageManagerResult.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820912526277E007FD40D /* PINRemoteImageManagerResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820BE2526277E007FD40D /* PINImageView+PINRemoteImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820922526277E007FD40D /* PINImageView+PINRemoteImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820BF2526277E007FD40D /* PINImageView+PINRemoteImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820922526277E007FD40D /* PINImageView+PINRemoteImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820C02526277E007FD40D /* PINRemoteImageCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820932526277E007FD40D /* PINRemoteImageCaching.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820C12526277E007FD40D /* PINRemoteImageCaching.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820932526277E007FD40D /* PINRemoteImageCaching.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820C22526277E007FD40D /* PINCachedAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820942526277E007FD40D /* PINCachedAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
FBC820C32526277E007FD40D /* PINCachedAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC820942526277E007FD40D /* PINCachedAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
139D3A641F67284400F82935 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = F1B918C81BCF239200710963 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 139D3A591F67284400F82935;
remoteInfo = "PINRemoteImage-tvOS";
};
68A0FC1F1E523434000B552D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = F1B918C81BCF239200710963 /* Project object */;
proxyType = 1;
remoteGlobalIDString = F1B918D01BCF239200710963;
remoteInfo = "PINRemoteImage-iOS";
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
687BB0A81E526FE0005D70C6 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
687BB0B11E527EBC005D70C6 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
0E71BE2522E94C7200FC5B99 /* fireworks.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = fireworks.gif; sourceTree = "<group>"; };
139D3A5A1F67284400F82935 /* PINRemoteImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PINRemoteImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
139D3A621F67284400F82935 /* PINRemoteImage-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "PINRemoteImage-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
680B83C71ECE5F9D00210A55 /* PINRemoteImageManager+Private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "PINRemoteImageManager+Private.h"; path = "../PINRemoteImageManager+Private.h"; sourceTree = "<group>"; };
6818C1541E551B5A00875DB7 /* PINCache.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PINCache.framework; path = "Carthage/Checkouts/PINCache/build/Debug-iphoneos/PINCache.framework"; sourceTree = "<group>"; };
6818C1561E551BAB00875DB7 /* PINOperation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PINOperation.framework; path = "Carthage/Checkouts/PINOperation/build/Debug-iphoneos/PINOperation.framework"; sourceTree = "<group>"; };
683128F31F95045200D5B4A8 /* PINAnimatedImage+PINAnimatedImageTesting.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PINAnimatedImage+PINAnimatedImageTesting.h"; sourceTree = "<group>"; };
683128F41F95045200D5B4A8 /* PINAnimatedImage+PINAnimatedImageTesting.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "PINAnimatedImage+PINAnimatedImageTesting.m"; sourceTree = "<group>"; };
6858C0731C9CC5BA00E420EB /* PINRemoteLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteLock.h; sourceTree = "<group>"; };
6858C0741C9CC5BA00E420EB /* PINRemoteLock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteLock.m; sourceTree = "<group>"; };
6860CB061F578287005E886E /* PINSpeedRecorder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINSpeedRecorder.h; sourceTree = "<group>"; };
6860CB071F578287005E886E /* PINSpeedRecorder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINSpeedRecorder.m; sourceTree = "<group>"; };
6864A9201F6D94AF007BB848 /* PINRemoteImageTests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PINRemoteImageTests-Bridging-Header.h"; sourceTree = "<group>"; };
6864A9211F6D94AF007BB848 /* PINAnimatedImageTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PINAnimatedImageTests.swift; sourceTree = "<group>"; };
686D48CE1ED38FC0003DB4C2 /* PINRemoteImageTask+Subclassing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PINRemoteImageTask+Subclassing.h"; sourceTree = "<group>"; };
687750261F6B2305008748B0 /* PINWebPAnimatedImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINWebPAnimatedImage.m; sourceTree = "<group>"; };
687D3FC81E5650790027B131 /* PINOperation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PINOperation.framework; path = "Carthage/Checkouts/PINCache/Carthage/Checkouts/PINOperation/build/Debug-iphoneos/PINOperation.framework"; sourceTree = "<group>"; };
68837706252F9D5300B9C290 /* PINCache.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = PINCache.framework; sourceTree = BUILT_PRODUCTS_DIR; };
68837708252F9D5300B9C290 /* PINOperation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = PINOperation.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6883770A252F9D7800B9C290 /* PINCache.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = PINCache.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6883770C252F9D7800B9C290 /* PINOperation.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = PINOperation.framework; sourceTree = BUILT_PRODUCTS_DIR; };
68912D84208FDB4900F5FE0E /* PINRemoteWeakProxy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PINRemoteWeakProxy.h; sourceTree = "<group>"; };
68912D85208FDB4900F5FE0E /* PINRemoteWeakProxy.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PINRemoteWeakProxy.m; sourceTree = "<group>"; };
689613D2208FD89900D2095C /* PINAnimatedImageView+PINRemoteImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PINAnimatedImageView+PINRemoteImage.m"; sourceTree = "<group>"; };
689613DC208FD8B600D2095C /* PINAnimatedImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINAnimatedImageView.m; sourceTree = "<group>"; };
689613E2208FD90A00D2095C /* PINDisplayLink.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINDisplayLink.h; sourceTree = "<group>"; };
689613E3208FD90B00D2095C /* PINDisplayLink.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINDisplayLink.m; sourceTree = "<group>"; };
68A0FC191E523434000B552D /* PINRemoteImageTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PINRemoteImageTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
68A0FC1B1E523434000B552D /* PINRemoteImageTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageTests.m; sourceTree = "<group>"; };
68A0FC1D1E523434000B552D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
68A6B1D91E5248BF003A92D1 /* PINImage+ScaledImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PINImage+ScaledImage.m"; sourceTree = "<group>"; };
68A6B1DA1E5248BF003A92D1 /* PINImage+ScaledImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PINImage+ScaledImage.h"; sourceTree = "<group>"; };
68B1F27F1E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageDownloadQueue.h; sourceTree = "<group>"; };
68B1F2801E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageDownloadQueue.m; sourceTree = "<group>"; };
68B7E3B01E736C73000FC887 /* PINResume.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINResume.h; sourceTree = "<group>"; };
68B7E3B11E736C73000FC887 /* PINResume.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINResume.m; sourceTree = "<group>"; };
68C155CA1F6EE0A20075EE40 /* PINCachedAnimatedImage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PINCachedAnimatedImage.m; sourceTree = "<group>"; };
68C155D51F6EE8890075EE40 /* PINAnimatedImage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PINAnimatedImage.m; sourceTree = "<group>"; };
68C155DB1F6F202F0075EE40 /* PINGIFAnimatedImage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PINGIFAnimatedImage.m; sourceTree = "<group>"; };
68CA92791DAEFF93008BECE2 /* PINRemoteImageBasicCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageBasicCache.h; sourceTree = "<group>"; };
68CA927A1DAEFF93008BECE2 /* PINRemoteImageBasicCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageBasicCache.m; sourceTree = "<group>"; };
68CA92821DB19C20008BECE2 /* PINCache+PINRemoteImageCaching.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "PINCache+PINRemoteImageCaching.m"; path = "PINCache/PINCache+PINRemoteImageCaching.m"; sourceTree = "<group>"; };
68F0EA8F1CB32EC900F1FD41 /* PINAlternateRepresentationProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINAlternateRepresentationProvider.m; sourceTree = "<group>"; };
68F0EA901CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageMemoryContainer.h; sourceTree = "<group>"; };
68F0EA911CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageMemoryContainer.m; sourceTree = "<group>"; };
926E015D1F0DFCAE00874D01 /* PINRequestRetryStrategy.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PINRequestRetryStrategy.m; sourceTree = "<group>"; };
939546BE2220AF84006031BB /* PINRemoteImageManagerConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageManagerConfiguration.h; sourceTree = "<group>"; };
939546BF2220AF84006031BB /* PINRemoteImageManagerConfiguration.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageManagerConfiguration.m; sourceTree = "<group>"; };
9A079DD726826EFD00F2E70A /* PINImage+AlternativeTypes.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "PINImage+AlternativeTypes.m"; sourceTree = "<group>"; };
9A079DDB26826F0E00F2E70A /* PINImage+AlternativeTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PINImage+AlternativeTypes.h"; sourceTree = "<group>"; };
9DD47F991C699F4B00F12CA0 /* PINButton+PINRemoteImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PINButton+PINRemoteImage.m"; sourceTree = "<group>"; };
9DD47F9B1C699F4B00F12CA0 /* PINImageView+PINRemoteImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PINImageView+PINRemoteImage.m"; sourceTree = "<group>"; };
9DD47FA01C699FDC00F12CA0 /* PINImage+DecodedImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PINImage+DecodedImage.h"; sourceTree = "<group>"; };
9DD47FA11C699FDC00F12CA0 /* PINImage+DecodedImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PINImage+DecodedImage.m"; sourceTree = "<group>"; };
9DD47FA21C699FDC00F12CA0 /* PINImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PINImage+WebP.h"; sourceTree = "<group>"; };
9DD47FA31C699FDC00F12CA0 /* PINImage+WebP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PINImage+WebP.m"; sourceTree = "<group>"; };
ACD288C6E6B13E6DA226D252 /* NSDate+PINCacheTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+PINCacheTests.h"; sourceTree = "<group>"; };
ACD28A0374E664CFF0BB3297 /* NSHTTPURLResponse+MaxAge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSHTTPURLResponse+MaxAge.h"; sourceTree = "<group>"; };
ACD28D963D79EEC14EE071CE /* NSDate+PINCacheTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+PINCacheTests.m"; sourceTree = "<group>"; };
ACD28EAE81695DDF84BB76B8 /* NSHTTPURLResponse+MaxAge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSHTTPURLResponse+MaxAge.m"; sourceTree = "<group>"; };
D93A340024182D46005EB15E /* TestAnimatedImage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TestAnimatedImage.h; sourceTree = "<group>"; };
D93A340124182D46005EB15E /* TestAnimatedImage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TestAnimatedImage.m; sourceTree = "<group>"; };
F1B918D11BCF239200710963 /* PINRemoteImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PINRemoteImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F1B918D61BCF239200710963 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F1B918DC1BCF23C800710963 /* PINRemoteImageCategoryManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageCategoryManager.m; sourceTree = "<group>"; };
F1B918DF1BCF23C800710963 /* NSData+ImageDetectors.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ImageDetectors.m"; sourceTree = "<group>"; };
F1B918EE1BCF23C800710963 /* PINProgressiveImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINProgressiveImage.m; sourceTree = "<group>"; };
F1B918F01BCF23C800710963 /* PINRemoteImageCallbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageCallbacks.h; sourceTree = "<group>"; };
F1B918F11BCF23C800710963 /* PINRemoteImageCallbacks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageCallbacks.m; sourceTree = "<group>"; };
F1B918F31BCF23C800710963 /* PINRemoteImageDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageDownloadTask.h; sourceTree = "<group>"; };
F1B918F41BCF23C800710963 /* PINRemoteImageDownloadTask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageDownloadTask.m; sourceTree = "<group>"; };
F1B918F61BCF23C800710963 /* PINRemoteImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageManager.m; sourceTree = "<group>"; };
F1B918F81BCF23C800710963 /* PINRemoteImageManagerResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageManagerResult.m; sourceTree = "<group>"; };
F1B918F91BCF23C800710963 /* PINRemoteImageProcessorTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageProcessorTask.h; sourceTree = "<group>"; };
F1B918FA1BCF23C800710963 /* PINRemoteImageProcessorTask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageProcessorTask.m; sourceTree = "<group>"; };
F1B918FB1BCF23C800710963 /* PINRemoteImageTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageTask.h; sourceTree = "<group>"; };
F1B918FC1BCF23C800710963 /* PINRemoteImageTask.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINRemoteImageTask.m; sourceTree = "<group>"; };
F1B918FE1BCF23C900710963 /* PINURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PINURLSessionManager.m; sourceTree = "<group>"; };
F1E3658B1BE04112003BF022 /* PINRemoteImage.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = PINRemoteImage.modulemap; sourceTree = "<group>"; };
F370FD6524AD0F6D0026A9D9 /* WebPDemux.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebPDemux.framework; path = webp/WebPDemux.framework; sourceTree = "<group>"; };
F370FD6824AD0F920026A9D9 /* WebPDecoder.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebPDecoder.framework; path = webp/WebPDecoder.framework; sourceTree = "<group>"; };
FBC820812526277E007FD40D /* PINURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINURLSessionManager.h; sourceTree = "<group>"; };
FBC820822526277E007FD40D /* PINRemoteImageCategoryManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageCategoryManager.h; sourceTree = "<group>"; };
FBC820832526277E007FD40D /* PINAnimatedImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINAnimatedImage.h; sourceTree = "<group>"; };
FBC820842526277E007FD40D /* PINProgressiveImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINProgressiveImage.h; sourceTree = "<group>"; };
FBC820852526277E007FD40D /* PINRequestRetryStrategy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRequestRetryStrategy.h; sourceTree = "<group>"; };
FBC820862526277E007FD40D /* PINAnimatedImageView+PINRemoteImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PINAnimatedImageView+PINRemoteImage.h"; sourceTree = "<group>"; };
FBC820872526277E007FD40D /* PINCache+PINRemoteImageCaching.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PINCache+PINRemoteImageCaching.h"; sourceTree = "<group>"; };
FBC820882526277E007FD40D /* PINAnimatedImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINAnimatedImageView.h; sourceTree = "<group>"; };
FBC820892526277E007FD40D /* PINWebPAnimatedImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINWebPAnimatedImage.h; sourceTree = "<group>"; };
FBC8208A2526277E007FD40D /* PINGIFAnimatedImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINGIFAnimatedImage.h; sourceTree = "<group>"; };
FBC8208B2526277E007FD40D /* PINRemoteImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImage.h; sourceTree = "<group>"; };
FBC8208C2526277E007FD40D /* PINRemoteImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageManager.h; sourceTree = "<group>"; };
FBC8208D2526277E007FD40D /* PINAlternateRepresentationProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINAlternateRepresentationProvider.h; sourceTree = "<group>"; };
FBC8208E2526277E007FD40D /* NSData+ImageDetectors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageDetectors.h"; sourceTree = "<group>"; };
FBC8208F2526277E007FD40D /* PINRemoteImageMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageMacros.h; sourceTree = "<group>"; };
FBC820902526277E007FD40D /* PINButton+PINRemoteImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PINButton+PINRemoteImage.h"; sourceTree = "<group>"; };
FBC820912526277E007FD40D /* PINRemoteImageManagerResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageManagerResult.h; sourceTree = "<group>"; };
FBC820922526277E007FD40D /* PINImageView+PINRemoteImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PINImageView+PINRemoteImage.h"; sourceTree = "<group>"; };
FBC820932526277E007FD40D /* PINRemoteImageCaching.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINRemoteImageCaching.h; sourceTree = "<group>"; };
FBC820942526277E007FD40D /* PINCachedAnimatedImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PINCachedAnimatedImage.h; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
139D3A561F67284400F82935 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6883770B252F9D7800B9C290 /* PINCache.framework in Frameworks */,
6883770D252F9D7800B9C290 /* PINOperation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
139D3A5F1F67284400F82935 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
139D3A631F67284400F82935 /* PINRemoteImage.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
68A0FC161E523434000B552D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
68A0FC1E1E523434000B552D /* PINRemoteImage.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F1B918CD1BCF239200710963 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F370FD6624AD0F6D0026A9D9 /* WebPDemux.framework in Frameworks */,
F370FD6924AD0F920026A9D9 /* WebPDecoder.framework in Frameworks */,
68837709252F9D5300B9C290 /* PINOperation.framework in Frameworks */,
68837707252F9D5300B9C290 /* PINCache.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
6818C1531E551B5900875DB7 /* Frameworks */ = {
isa = PBXGroup;
children = (
6883770A252F9D7800B9C290 /* PINCache.framework */,
6883770C252F9D7800B9C290 /* PINOperation.framework */,
68837706252F9D5300B9C290 /* PINCache.framework */,
68837708252F9D5300B9C290 /* PINOperation.framework */,
F370FD6824AD0F920026A9D9 /* WebPDecoder.framework */,
F370FD6524AD0F6D0026A9D9 /* WebPDemux.framework */,
687D3FC81E5650790027B131 /* PINOperation.framework */,
6818C1561E551BAB00875DB7 /* PINOperation.framework */,
6818C1541E551B5A00875DB7 /* PINCache.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
68A0FC1A1E523434000B552D /* Tests */ = {
isa = PBXGroup;
children = (
0E71BE2522E94C7200FC5B99 /* fireworks.gif */,
68A0FC1B1E523434000B552D /* PINRemoteImageTests.m */,
6864A9211F6D94AF007BB848 /* PINAnimatedImageTests.swift */,
D93A340024182D46005EB15E /* TestAnimatedImage.h */,
D93A340124182D46005EB15E /* TestAnimatedImage.m */,
68A0FC1D1E523434000B552D /* Info.plist */,
6864A9201F6D94AF007BB848 /* PINRemoteImageTests-Bridging-Header.h */,
683128F31F95045200D5B4A8 /* PINAnimatedImage+PINAnimatedImageTesting.h */,
683128F41F95045200D5B4A8 /* PINAnimatedImage+PINAnimatedImageTesting.m */,
ACD288C6E6B13E6DA226D252 /* NSDate+PINCacheTests.h */,
ACD28D963D79EEC14EE071CE /* NSDate+PINCacheTests.m */,
);
path = Tests;
sourceTree = "<group>";
};
68C155D21F6EE3450075EE40 /* AnimatedImages */ = {
isa = PBXGroup;
children = (
68C155D51F6EE8890075EE40 /* PINAnimatedImage.m */,
689613DC208FD8B600D2095C /* PINAnimatedImageView.m */,
68C155CA1F6EE0A20075EE40 /* PINCachedAnimatedImage.m */,
687750261F6B2305008748B0 /* PINWebPAnimatedImage.m */,
68C155DB1F6F202F0075EE40 /* PINGIFAnimatedImage.m */,
);
path = AnimatedImages;
sourceTree = "<group>";
};
68C155D31F6EE3BE0075EE40 /* AnimatedImages */ = {
isa = PBXGroup;
children = (
);
path = AnimatedImages;
sourceTree = "<group>";
};
68CA92801DB19C06008BECE2 /* PINCache */ = {
isa = PBXGroup;
children = (
68CA92821DB19C20008BECE2 /* PINCache+PINRemoteImageCaching.m */,
);
name = PINCache;
sourceTree = "<group>";
};
68EB25221C6A64BE002501A3 /* Supporting Files */ = {
isa = PBXGroup;
children = (
F1B918D61BCF239200710963 /* Info.plist */,
F1E3658B1BE04112003BF022 /* PINRemoteImage.modulemap */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
CC4243F61E62051900FD6517 /* Categories */ = {
isa = PBXGroup;
children = (
F1B918DF1BCF23C800710963 /* NSData+ImageDetectors.m */,
);
path = Categories;
sourceTree = "<group>";
};
F165DFD61BD021E30008C6E8 /* Public */ = {
isa = PBXGroup;
children = (
FBC820802526277E007FD40D /* include */,
68C155D21F6EE3450075EE40 /* AnimatedImages */,
F1B918E41BCF23C800710963 /* ImageCategories */,
CC4243F61E62051900FD6517 /* Categories */,
68CA92801DB19C06008BECE2 /* PINCache */,
68F0EA8F1CB32EC900F1FD41 /* PINAlternateRepresentationProvider.m */,
F1B918EE1BCF23C800710963 /* PINProgressiveImage.m */,
F1B918DC1BCF23C800710963 /* PINRemoteImageCategoryManager.m */,
F1B918F61BCF23C800710963 /* PINRemoteImageManager.m */,
939546BE2220AF84006031BB /* PINRemoteImageManagerConfiguration.h */,
939546BF2220AF84006031BB /* PINRemoteImageManagerConfiguration.m */,
F1B918F81BCF23C800710963 /* PINRemoteImageManagerResult.m */,
F1B918FE1BCF23C900710963 /* PINURLSessionManager.m */,
926E015D1F0DFCAE00874D01 /* PINRequestRetryStrategy.m */,
);
name = Public;
path = Classes;
sourceTree = "<group>";
};
F165DFD71BD021EE0008C6E8 /* Project */ = {
isa = PBXGroup;
children = (
68C155D31F6EE3BE0075EE40 /* AnimatedImages */,
F1B918DD1BCF23C800710963 /* Categories */,
689613E2208FD90A00D2095C /* PINDisplayLink.h */,
689613E3208FD90B00D2095C /* PINDisplayLink.m */,
F1B918F01BCF23C800710963 /* PINRemoteImageCallbacks.h */,
F1B918F11BCF23C800710963 /* PINRemoteImageCallbacks.m */,
F1B918F31BCF23C800710963 /* PINRemoteImageDownloadTask.h */,
F1B918F41BCF23C800710963 /* PINRemoteImageDownloadTask.m */,
F1B918F91BCF23C800710963 /* PINRemoteImageProcessorTask.h */,
F1B918FA1BCF23C800710963 /* PINRemoteImageProcessorTask.m */,
F1B918FB1BCF23C800710963 /* PINRemoteImageTask.h */,
F1B918FC1BCF23C800710963 /* PINRemoteImageTask.m */,
6858C0731C9CC5BA00E420EB /* PINRemoteLock.h */,
6858C0741C9CC5BA00E420EB /* PINRemoteLock.m */,
68F0EA901CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.h */,
68F0EA911CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.m */,
68CA92791DAEFF93008BECE2 /* PINRemoteImageBasicCache.h */,
68CA927A1DAEFF93008BECE2 /* PINRemoteImageBasicCache.m */,
68B1F27F1E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.h */,
68B1F2801E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.m */,
68912D84208FDB4900F5FE0E /* PINRemoteWeakProxy.h */,
68912D85208FDB4900F5FE0E /* PINRemoteWeakProxy.m */,
68B7E3B01E736C73000FC887 /* PINResume.h */,
68B7E3B11E736C73000FC887 /* PINResume.m */,
6860CB061F578287005E886E /* PINSpeedRecorder.h */,
6860CB071F578287005E886E /* PINSpeedRecorder.m */,
);
name = Project;
path = Classes;
sourceTree = "<group>";
};
F1B918C71BCF239200710963 = {
isa = PBXGroup;
children = (
F1B918D31BCF239200710963 /* PINRemoteImage */,
68A0FC1A1E523434000B552D /* Tests */,
F1B918D21BCF239200710963 /* Products */,
6818C1531E551B5900875DB7 /* Frameworks */,
);
sourceTree = "<group>";
usesTabs = 0;
};
F1B918D21BCF239200710963 /* Products */ = {
isa = PBXGroup;
children = (
F1B918D11BCF239200710963 /* PINRemoteImage.framework */,
68A0FC191E523434000B552D /* PINRemoteImageTests.xctest */,
139D3A5A1F67284400F82935 /* PINRemoteImage.framework */,
139D3A621F67284400F82935 /* PINRemoteImage-tvOSTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
F1B918D31BCF239200710963 /* PINRemoteImage */ = {
isa = PBXGroup;
children = (
F165DFD61BD021E30008C6E8 /* Public */,
F165DFD71BD021EE0008C6E8 /* Project */,
68EB25221C6A64BE002501A3 /* Supporting Files */,
);
name = PINRemoteImage;
path = Source;
sourceTree = "<group>";
};
F1B918DD1BCF23C800710963 /* Categories */ = {
isa = PBXGroup;
children = (
680B83C71ECE5F9D00210A55 /* PINRemoteImageManager+Private.h */,
68A6B1D91E5248BF003A92D1 /* PINImage+ScaledImage.m */,
68A6B1DA1E5248BF003A92D1 /* PINImage+ScaledImage.h */,
9DD47FA01C699FDC00F12CA0 /* PINImage+DecodedImage.h */,
9DD47FA11C699FDC00F12CA0 /* PINImage+DecodedImage.m */,
9DD47FA21C699FDC00F12CA0 /* PINImage+WebP.h */,
9DD47FA31C699FDC00F12CA0 /* PINImage+WebP.m */,
686D48CE1ED38FC0003DB4C2 /* PINRemoteImageTask+Subclassing.h */,
ACD28EAE81695DDF84BB76B8 /* NSHTTPURLResponse+MaxAge.m */,
ACD28A0374E664CFF0BB3297 /* NSHTTPURLResponse+MaxAge.h */,
9A079DD726826EFD00F2E70A /* PINImage+AlternativeTypes.m */,
9A079DDB26826F0E00F2E70A /* PINImage+AlternativeTypes.h */,
);
path = Categories;
sourceTree = "<group>";
};
F1B918E41BCF23C800710963 /* ImageCategories */ = {
isa = PBXGroup;
children = (
689613D2208FD89900D2095C /* PINAnimatedImageView+PINRemoteImage.m */,
9DD47F991C699F4B00F12CA0 /* PINButton+PINRemoteImage.m */,
9DD47F9B1C699F4B00F12CA0 /* PINImageView+PINRemoteImage.m */,
);
path = ImageCategories;
sourceTree = "<group>";
};
FBC820802526277E007FD40D /* include */ = {
isa = PBXGroup;
children = (
FBC820812526277E007FD40D /* PINURLSessionManager.h */,
FBC820822526277E007FD40D /* PINRemoteImageCategoryManager.h */,
FBC820832526277E007FD40D /* PINAnimatedImage.h */,
FBC820842526277E007FD40D /* PINProgressiveImage.h */,
FBC820852526277E007FD40D /* PINRequestRetryStrategy.h */,
FBC820862526277E007FD40D /* PINAnimatedImageView+PINRemoteImage.h */,
FBC820872526277E007FD40D /* PINCache+PINRemoteImageCaching.h */,
FBC820882526277E007FD40D /* PINAnimatedImageView.h */,
FBC820892526277E007FD40D /* PINWebPAnimatedImage.h */,
FBC8208A2526277E007FD40D /* PINGIFAnimatedImage.h */,
FBC8208B2526277E007FD40D /* PINRemoteImage.h */,
FBC8208C2526277E007FD40D /* PINRemoteImageManager.h */,
FBC8208D2526277E007FD40D /* PINAlternateRepresentationProvider.h */,
FBC8208E2526277E007FD40D /* NSData+ImageDetectors.h */,
FBC8208F2526277E007FD40D /* PINRemoteImageMacros.h */,
FBC820902526277E007FD40D /* PINButton+PINRemoteImage.h */,
FBC820912526277E007FD40D /* PINRemoteImageManagerResult.h */,
FBC820922526277E007FD40D /* PINImageView+PINRemoteImage.h */,
FBC820932526277E007FD40D /* PINRemoteImageCaching.h */,
FBC820942526277E007FD40D /* PINCachedAnimatedImage.h */,
);
path = include;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
139D3A571F67284400F82935 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
FBC820AB2526277E007FD40D /* PINAnimatedImageView.h in Headers */,
FBC820B12526277E007FD40D /* PINRemoteImage.h in Headers */,
FBC820B72526277E007FD40D /* NSData+ImageDetectors.h in Headers */,
FBC820AF2526277E007FD40D /* PINGIFAnimatedImage.h in Headers */,
FBC820B32526277E007FD40D /* PINRemoteImageManager.h in Headers */,
FBC8209D2526277E007FD40D /* PINURLSessionManager.h in Headers */,
FBC820A12526277E007FD40D /* PINAnimatedImage.h in Headers */,
FBC820BB2526277E007FD40D /* PINButton+PINRemoteImage.h in Headers */,
FBC820BF2526277E007FD40D /* PINImageView+PINRemoteImage.h in Headers */,
FBC820BD2526277E007FD40D /* PINRemoteImageManagerResult.h in Headers */,
139D50A31F672BBF00DE64E0 /* PINImage+ScaledImage.h in Headers */,
FBC8209F2526277E007FD40D /* PINRemoteImageCategoryManager.h in Headers */,
FBC820C12526277E007FD40D /* PINRemoteImageCaching.h in Headers */,
139D50A41F672BBF00DE64E0 /* PINImage+DecodedImage.h in Headers */,
139D50A51F672BBF00DE64E0 /* PINImage+WebP.h in Headers */,
139D50A71F672BBF00DE64E0 /* PINRemoteImageTask+Subclassing.h in Headers */,
139D50A91F672BBF00DE64E0 /* PINRemoteImageCallbacks.h in Headers */,
938E98D52224775600029E4D /* PINRemoteImageManagerConfiguration.h in Headers */,
139D50AA1F672BBF00DE64E0 /* PINRemoteImageDownloadTask.h in Headers */,
139D50AB1F672BBF00DE64E0 /* PINRemoteImageProcessorTask.h in Headers */,
FBC820AD2526277E007FD40D /* PINWebPAnimatedImage.h in Headers */,
FBC820A92526277E007FD40D /* PINCache+PINRemoteImageCaching.h in Headers */,
139D50AC1F672BBF00DE64E0 /* PINRemoteImageTask.h in Headers */,
139D50AD1F672BBF00DE64E0 /* PINRemoteLock.h in Headers */,
139D50AE1F672BBF00DE64E0 /* PINRemoteImageMemoryContainer.h in Headers */,
139D50AF1F672BBF00DE64E0 /* PINRemoteImageBasicCache.h in Headers */,
FBC820B52526277E007FD40D /* PINAlternateRepresentationProvider.h in Headers */,
FBC820A32526277E007FD40D /* PINProgressiveImage.h in Headers */,
FBC820C32526277E007FD40D /* PINCachedAnimatedImage.h in Headers */,
FBC820B92526277E007FD40D /* PINRemoteImageMacros.h in Headers */,
139D50B01F672BBF00DE64E0 /* PINRemoteImageDownloadQueue.h in Headers */,
139D50B11F672BBF00DE64E0 /* PINResume.h in Headers */,
139D50B21F672BBF00DE64E0 /* PINSpeedRecorder.h in Headers */,
68912D87208FDB4900F5FE0E /* PINRemoteWeakProxy.h in Headers */,
689613E5208FD90B00D2095C /* PINDisplayLink.h in Headers */,
FBC820A52526277E007FD40D /* PINRequestRetryStrategy.h in Headers */,
FBC820A72526277E007FD40D /* PINAnimatedImageView+PINRemoteImage.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F1B918CE1BCF239200710963 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9DD47FA61C699FDC00F12CA0 /* PINImage+WebP.h in Headers */,
68B7E3B21E736C73000FC887 /* PINResume.h in Headers */,
6860CB081F578287005E886E /* PINSpeedRecorder.h in Headers */,
68912D86208FDB4900F5FE0E /* PINRemoteWeakProxy.h in Headers */,
FBC820AA2526277E007FD40D /* PINAnimatedImageView.h in Headers */,
FBC820B42526277E007FD40D /* PINAlternateRepresentationProvider.h in Headers */,
FBC820A82526277E007FD40D /* PINCache+PINRemoteImageCaching.h in Headers */,
FBC820C22526277E007FD40D /* PINCachedAnimatedImage.h in Headers */,
68B1F2811E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.h in Headers */,
FBC8209C2526277E007FD40D /* PINURLSessionManager.h in Headers */,
68F0EA941CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.h in Headers */,
F1B9191C1BCF23C900710963 /* PINRemoteImageTask.h in Headers */,
686D48D01ED38FC0003DB4C2 /* PINRemoteImageTask+Subclassing.h in Headers */,
FBC820B22526277E007FD40D /* PINRemoteImageManager.h in Headers */,
FBC820A62526277E007FD40D /* PINAnimatedImageView+PINRemoteImage.h in Headers */,
FBC820A22526277E007FD40D /* PINProgressiveImage.h in Headers */,
9A079DE1268270F900F2E70A /* PINImage+AlternativeTypes.h in Headers */,
939546C02220AF84006031BB /* PINRemoteImageManagerConfiguration.h in Headers */,
FBC820BA2526277E007FD40D /* PINButton+PINRemoteImage.h in Headers */,
FBC820B82526277E007FD40D /* PINRemoteImageMacros.h in Headers */,
FBC820AE2526277E007FD40D /* PINGIFAnimatedImage.h in Headers */,
FBC8209E2526277E007FD40D /* PINRemoteImageCategoryManager.h in Headers */,
FBC820B62526277E007FD40D /* NSData+ImageDetectors.h in Headers */,
F1B919111BCF23C900710963 /* PINRemoteImageCallbacks.h in Headers */,
FBC820BC2526277E007FD40D /* PINRemoteImageManagerResult.h in Headers */,
FBC820A02526277E007FD40D /* PINAnimatedImage.h in Headers */,
FBC820BE2526277E007FD40D /* PINImageView+PINRemoteImage.h in Headers */,
6858C0751C9CC5BA00E420EB /* PINRemoteLock.h in Headers */,
68A6B1DC1E5248BF003A92D1 /* PINImage+ScaledImage.h in Headers */,
FBC820AC2526277E007FD40D /* PINWebPAnimatedImage.h in Headers */,
FBC820C02526277E007FD40D /* PINRemoteImageCaching.h in Headers */,
689613E4208FD90B00D2095C /* PINDisplayLink.h in Headers */,
F1B9191A1BCF23C900710963 /* PINRemoteImageProcessorTask.h in Headers */,
9DD47FA41C699FDC00F12CA0 /* PINImage+DecodedImage.h in Headers */,
FBC820B02526277E007FD40D /* PINRemoteImage.h in Headers */,
68CA927C1DAEFF93008BECE2 /* PINRemoteImageBasicCache.h in Headers */,
FBC820A42526277E007FD40D /* PINRequestRetryStrategy.h in Headers */,
F1B919141BCF23C900710963 /* PINRemoteImageDownloadTask.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
139D3A591F67284400F82935 /* PINRemoteImage-tvOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 139D3A741F67284400F82935 /* Build configuration list for PBXNativeTarget "PINRemoteImage-tvOS" */;
buildPhases = (
139D3A551F67284400F82935 /* Sources */,
139D3A561F67284400F82935 /* Frameworks */,
139D3A571F67284400F82935 /* Headers */,
139D3A581F67284400F82935 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "PINRemoteImage-tvOS";
productName = "PINRemoteImage-tvOS";
productReference = 139D3A5A1F67284400F82935 /* PINRemoteImage.framework */;
productType = "com.apple.product-type.framework";
};
139D3A611F67284400F82935 /* PINRemoteImage-tvOSTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 139D3A751F67284400F82935 /* Build configuration list for PBXNativeTarget "PINRemoteImage-tvOSTests" */;
buildPhases = (
139D3A5E1F67284400F82935 /* Sources */,
139D3A5F1F67284400F82935 /* Frameworks */,
139D3A601F67284400F82935 /* Resources */,
);
buildRules = (
);
dependencies = (
139D3A651F67284400F82935 /* PBXTargetDependency */,
);
name = "PINRemoteImage-tvOSTests";
productName = "PINRemoteImage-tvOSTests";
productReference = 139D3A621F67284400F82935 /* PINRemoteImage-tvOSTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
68A0FC181E523434000B552D /* PINRemoteImageTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 68A0FC231E523434000B552D /* Build configuration list for PBXNativeTarget "PINRemoteImageTests" */;
buildPhases = (
68A0FC151E523434000B552D /* Sources */,
687BB0B11E527EBC005D70C6 /* CopyFiles */,
68A0FC161E523434000B552D /* Frameworks */,
68A0FC171E523434000B552D /* Resources */,
);
buildRules = (
);
dependencies = (
68A0FC201E523434000B552D /* PBXTargetDependency */,
);
name = PINRemoteImageTests;
productName = PINRemoteImageTests;
productReference = 68A0FC191E523434000B552D /* PINRemoteImageTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
F1B918D01BCF239200710963 /* PINRemoteImage */ = {
isa = PBXNativeTarget;
buildConfigurationList = F1B918D91BCF239200710963 /* Build configuration list for PBXNativeTarget "PINRemoteImage" */;
buildPhases = (
F1B918CC1BCF239200710963 /* Sources */,
687BB0A81E526FE0005D70C6 /* CopyFiles */,
F1B918CD1BCF239200710963 /* Frameworks */,
F1B918CE1BCF239200710963 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = PINRemoteImage;
productName = PINRemoteImage;
productReference = F1B918D11BCF239200710963 /* PINRemoteImage.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
F1B918C81BCF239200710963 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1150;
ORGANIZATIONNAME = Pinterest;
TargetAttributes = {
139D3A591F67284400F82935 = {
CreatedOnToolsVersion = 9.0;
ProvisioningStyle = Automatic;
};
139D3A611F67284400F82935 = {
CreatedOnToolsVersion = 9.0;
ProvisioningStyle = Automatic;
};
68A0FC181E523434000B552D = {
CreatedOnToolsVersion = 8.2.1;
LastSwiftMigration = 1020;
ProvisioningStyle = Automatic;
};
F1B918D01BCF239200710963 = {
CreatedOnToolsVersion = 7.0;
};
};
};
buildConfigurationList = F1B918CB1BCF239200710963 /* Build configuration list for PBXProject "PINRemoteImage" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = F1B918C71BCF239200710963;
productRefGroup = F1B918D21BCF239200710963 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
F1B918D01BCF239200710963 /* PINRemoteImage */,
68A0FC181E523434000B552D /* PINRemoteImageTests */,
139D3A591F67284400F82935 /* PINRemoteImage-tvOS */,
139D3A611F67284400F82935 /* PINRemoteImage-tvOSTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
139D3A581F67284400F82935 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
139D3A601F67284400F82935 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
68A0FC171E523434000B552D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0E71BE2A22E94C7200FC5B99 /* fireworks.gif in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
139D3A551F67284400F82935 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
139D4FCA1F672B0D00DE64E0 /* PINButton+PINRemoteImage.m in Sources */,
139D4FCB1F672B0D00DE64E0 /* PINImageView+PINRemoteImage.m in Sources */,
139D4FCC1F672B0D00DE64E0 /* NSData+ImageDetectors.m in Sources */,
139D4FCD1F672B0D00DE64E0 /* PINCache+PINRemoteImageCaching.m in Sources */,
139D4FCE1F672B0D00DE64E0 /* PINAlternateRepresentationProvider.m in Sources */,
139D4FD01F672B0D00DE64E0 /* PINProgressiveImage.m in Sources */,
139D4FD11F672B0D00DE64E0 /* PINRemoteImageCategoryManager.m in Sources */,
139D4FD21F672B0D00DE64E0 /* PINRemoteImageManager.m in Sources */,
139D4FD31F672B0D00DE64E0 /* PINRemoteImageManagerResult.m in Sources */,
139D4FD41F672B0D00DE64E0 /* PINURLSessionManager.m in Sources */,
139D4FD51F672B0D00DE64E0 /* PINRequestRetryStrategy.m in Sources */,
139D4FD61F672B0D00DE64E0 /* PINImage+ScaledImage.m in Sources */,
139D4FD71F672B0D00DE64E0 /* PINImage+DecodedImage.m in Sources */,
139D4FD81F672B0D00DE64E0 /* PINImage+WebP.m in Sources */,
139D4FDB1F672B0D00DE64E0 /* PINRemoteImageCallbacks.m in Sources */,
139D4FDC1F672B0D00DE64E0 /* PINRemoteImageDownloadTask.m in Sources */,
139D4FDD1F672B0D00DE64E0 /* PINRemoteImageProcessorTask.m in Sources */,
139D4FDE1F672B0D00DE64E0 /* PINRemoteImageTask.m in Sources */,
139D4FDF1F672B0D00DE64E0 /* PINRemoteLock.m in Sources */,
139D4FE01F672B0D00DE64E0 /* PINRemoteImageMemoryContainer.m in Sources */,
139D4FE11F672B0D00DE64E0 /* PINRemoteImageBasicCache.m in Sources */,
139D4FE21F672B0D00DE64E0 /* PINRemoteImageDownloadQueue.m in Sources */,
139D4FE31F672B0D00DE64E0 /* PINResume.m in Sources */,
68D734521F75FDEA00B9C95D /* PINGIFAnimatedImage.m in Sources */,
139D4FE41F672B0D00DE64E0 /* PINSpeedRecorder.m in Sources */,
68D7344C1F75FDCF00B9C95D /* PINAnimatedImage.m in Sources */,
938E98DA2224775B00029E4D /* PINRemoteImageManagerConfiguration.m in Sources */,
A7343C60228993F400972894 /* NSHTTPURLResponse+MaxAge.m in Sources */,
689613E7208FD90B00D2095C /* PINDisplayLink.m in Sources */,
68D7344E1F75FDDB00B9C95D /* PINCachedAnimatedImage.m in Sources */,
689613D9208FD89900D2095C /* PINAnimatedImageView+PINRemoteImage.m in Sources */,
68912D89208FDB4900F5FE0E /* PINRemoteWeakProxy.m in Sources */,
689613DF208FD8B700D2095C /* PINAnimatedImageView.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
139D3A5E1F67284400F82935 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D93A340324182D46005EB15E /* TestAnimatedImage.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
68A0FC151E523434000B552D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6864A9221F6D94AF007BB848 /* PINAnimatedImageTests.swift in Sources */,
68A0FC1C1E523434000B552D /* PINRemoteImageTests.m in Sources */,
683128F51F95045200D5B4A8 /* PINAnimatedImage+PINAnimatedImageTesting.m in Sources */,
D93A340224182D46005EB15E /* TestAnimatedImage.m in Sources */,
ACD28AB87FABF6BA3B9BF4E4 /* NSDate+PINCacheTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F1B918CC1BCF239200710963 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
68F0EA931CB32EC900F1FD41 /* PINAlternateRepresentationProvider.m in Sources */,
926E01641F0DFEE800874D01 /* PINRequestRetryStrategy.m in Sources */,
F1B9190F1BCF23C900710963 /* PINProgressiveImage.m in Sources */,
F1B919121BCF23C900710963 /* PINRemoteImageCallbacks.m in Sources */,
68C155CC1F6EE0A20075EE40 /* PINCachedAnimatedImage.m in Sources */,
9DD47F9D1C699F4B00F12CA0 /* PINButton+PINRemoteImage.m in Sources */,
6858C0761C9CC5BA00E420EB /* PINRemoteLock.m in Sources */,
F1B919191BCF23C900710963 /* PINRemoteImageManagerResult.m in Sources */,
9A079DD826826EFD00F2E70A /* PINImage+AlternativeTypes.m in Sources */,
F1B9191D1BCF23C900710963 /* PINRemoteImageTask.m in Sources */,
68B1F2821E679D7A00ED87C4 /* PINRemoteImageDownloadQueue.m in Sources */,
F1B919011BCF23C900710963 /* NSData+ImageDetectors.m in Sources */,
939546C12220AF84006031BB /* PINRemoteImageManagerConfiguration.m in Sources */,
A7343C5B228993D100972894 /* NSHTTPURLResponse+MaxAge.m in Sources */,
689613E6208FD90B00D2095C /* PINDisplayLink.m in Sources */,
F1B918FF1BCF23C900710963 /* PINRemoteImageCategoryManager.m in Sources */,
9DD47FA51C699FDC00F12CA0 /* PINImage+DecodedImage.m in Sources */,
68F0EA951CB32EC900F1FD41 /* PINRemoteImageMemoryContainer.m in Sources */,
F1B919151BCF23C900710963 /* PINRemoteImageDownloadTask.m in Sources */,
68CA92841DB19C20008BECE2 /* PINCache+PINRemoteImageCaching.m in Sources */,
68CA927D1DAEFF93008BECE2 /* PINRemoteImageBasicCache.m in Sources */,
68C155DD1F6F202F0075EE40 /* PINGIFAnimatedImage.m in Sources */,
F1B9191F1BCF23C900710963 /* PINURLSessionManager.m in Sources */,
689613D8208FD89900D2095C /* PINAnimatedImageView+PINRemoteImage.m in Sources */,
687750281F6B2305008748B0 /* PINWebPAnimatedImage.m in Sources */,
F1B9191B1BCF23C900710963 /* PINRemoteImageProcessorTask.m in Sources */,
9DD47FA71C699FDC00F12CA0 /* PINImage+WebP.m in Sources */,
68A6B1DB1E5248BF003A92D1 /* PINImage+ScaledImage.m in Sources */,
68C155D71F6EE8890075EE40 /* PINAnimatedImage.m in Sources */,
68912D88208FDB4900F5FE0E /* PINRemoteWeakProxy.m in Sources */,
6860CB091F578287005E886E /* PINSpeedRecorder.m in Sources */,
689613DE208FD8B700D2095C /* PINAnimatedImageView.m in Sources */,
9DD47F9F1C699F4B00F12CA0 /* PINImageView+PINRemoteImage.m in Sources */,
68B7E3B31E736C73000FC887 /* PINResume.m in Sources */,
F1B919171BCF23C900710963 /* PINRemoteImageManager.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
139D3A651F67284400F82935 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 139D3A591F67284400F82935 /* PINRemoteImage-tvOS */;
targetProxy = 139D3A641F67284400F82935 /* PBXContainerItemProxy */;
};
68A0FC201E523434000B552D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = F1B918D01BCF239200710963 /* PINRemoteImage */;
targetProxy = 68A0FC1F1E523434000B552D /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
139D3A6B1F67284400F82935 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
APPLICATION_EXTENSION_API_ONLY = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/webp",
);
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_PREPROCESSOR_DEFINITIONS = (
"PIN_WEBP=0",
"$(inherited)",
);
INFOPLIST_FILE = Source/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = Source/PINRemoteImage.modulemap;
PRODUCT_BUNDLE_IDENTIFIER = com.pinterest.PINRemoteImage;
PRODUCT_NAME = PINRemoteImage;
PROVISIONING_PROFILE_SPECIFIER = "";
SDKROOT = appletvos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = 3;
};
name = Debug;
};
139D3A6C1F67284400F82935 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
APPLICATION_EXTENSION_API_ONLY = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";