-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1302 lines (1289 loc) · 80.4 KB
/
project.pbxproj
File metadata and controls
1302 lines (1289 loc) · 80.4 KB
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 */
00C140713D9C0AACF3C6FB9D30194A72 /* NSURLSession+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 38A811945BBABB1E763732230355CC22 /* NSURLSession+AnyPromise.m */; };
01B8BD5CBB8B53B4A143BB0B2EF2871F /* Deprecations.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0B4DF6DA31DB84AE2BDB95F1F582711 /* Deprecations.swift */; };
09D50669E7425C84A6BE7F092F913C8F /* NSTask+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB86AC94D4752E91897EB6A4FEBC37F /* NSTask+AnyPromise.m */; };
0CD5A29095238AB2070A85C44299D20A /* AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = C2BA4FE9F301A2DE595EF18D1981B50B /* AnyPromise.m */; };
11ADFBDDEE220C4328E9A3E842A5116D /* Beer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 235CDDE72E10F151E3D0A7E0D897AF32 /* Beer.swift */; };
15A5359638A18D80E8764A6DF4BF4ACA /* when.m in Sources */ = {isa = PBXBuildFile; fileRef = 677B32DCD10AE6B27BA7A8958ECCFE6B /* when.m */; };
1621F984BD3620821682107F63375E22 /* Pods-PunkAPI_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2CFBF055ABC3DD615A27D3EB6164BC /* Pods-PunkAPI_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
18EAACD97A90F69000C850F734A5BF6A /* StringParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 076E7A8560DFAFB8A647B2A35293CEA6 /* StringParameter.swift */; };
1971D0121A71658B811B2AD79E980107 /* UIViewPropertyAnimator+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = F392962B6F3607C58FB96B4ED4181C6C /* UIViewPropertyAnimator+Promise.swift */; };
1F38633D74B0FDC6B0FB1E3E44E538CA /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 565026BBCD0842AC151CAB4A4149F014 /* Box.swift */; };
2ED986F10A9967952B29001537D4B34B /* NSTask+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F8305A005FF8D955208A6640FDF172D /* NSTask+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
333AACFC8BEB680B098CC19F6E7845C7 /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CE2307CC8C3B42DAF98663EAE5D2E60 /* Promise.swift */; };
385C241549AFD7255F45D03BA8472B84 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C0594717ADD69799757B0DBC9684473 /* Error.swift */; };
389D4EA725DB61A4C9073B89F87C28A4 /* DateParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E54C3B4757574A2789C011617B7FD0B /* DateParameter.swift */; };
3B6FA98134D084A68598587809E12B6F /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5DFD26D02C1B0EABEC684B311BF2B85 /* Configuration.swift */; };
3DA420D0E31AC2A4EE88C4467167107B /* CustomStringConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86BD929429E4AA00D0A211BF1B963E12 /* CustomStringConvertible.swift */; };
3F4BA0C8D5129CC4882AFDB2AC03D265 /* BeerRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC8FC799CC8A849928D542136BA52B28 /* BeerRequest.swift */; };
47488AFA332286202C15C0F9E60A5507 /* LogEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2B50E13C964E3FC009487D10DE094B1 /* LogEvent.swift */; };
4BA3FB5719701A525145DAEAC916C422 /* hang.m in Sources */ = {isa = PBXBuildFile; fileRef = A8F2335B7E6754B286937C3C27490DF2 /* hang.m */; };
4DD4DC51B32E02D21613D4C5888C7CFF /* PunkAPI-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A7513D4F5F6646CB48F6D152E1D4E3 /* PunkAPI-dummy.m */; };
4FA447B6C7C42F9107D162B70F0AE56B /* Guarantee.swift in Sources */ = {isa = PBXBuildFile; fileRef = F08541CAD70C0B900CE83FDA138EAC4B /* Guarantee.swift */; };
50F5803F6F5EB889904FBC6EA278BED7 /* hang.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2120672BD2058FF6575163EA0F7B3818 /* hang.swift */; };
5510C0AE582D7D6C7746FFFA7B8ED819 /* PromiseKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 078EBD73602479363ABE31E9BC800B48 /* PromiseKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
55228DD3971473915292760EFF5C3C6F /* BeersRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61FB36431E6474118755205B3C0E187A /* BeersRequest.swift */; };
5597C4DB5997EFB71A2C491B4E4588CA /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE2546BABABB257E67FE8C811936C3CD /* Errors.swift */; };
57F33E3A3BD21639C3FD3BE08D9B00EB /* dispatch_promise.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FEA634E92083372CE4E08BAA27E4F76 /* dispatch_promise.m */; };
5E9A6176DDB6E0178BE9CF9346686F84 /* Quantity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D0F952029ECA36B4317D1E06AD895B7 /* Quantity.swift */; };
66DD9EA1B3E82F7BB5BA096FAE9612CC /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 614FC48633A339E6EA39B294CD2DFCD2 /* Request.swift */; };
697107BDDB402824E2D21B5768D3216E /* PunkAPI+PromiseKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 378CEA390F5529910D24540233568731 /* PunkAPI+PromiseKit.swift */; };
697454802092796CA44AA06FF6C46F49 /* NSObject+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 237FFFF513D6B6152F5BBE55535C050B /* NSObject+Promise.swift */; };
6BC916C6B5309FFE6C7275F8FEBFE89F /* UIViewController+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = B5EB76B74D4EC87ACF9BADA102F058DB /* UIViewController+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
6D5AAEE946B85611FFC0B251356E745C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9491269C5B4C4CA7443038187BE1C610 /* Foundation.framework */; };
701FC241CFF51869B91B346062887E32 /* Method.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D1C004DA096F2A600E3D2A36057F395 /* Method.swift */; };
7606A03461D15DB204432A3D85F5ED87 /* race.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1B121A0F93C02A2151ACBB55A399427 /* race.swift */; };
78AF119DC02076D72703311D536FE3E8 /* after.m in Sources */ = {isa = PBXBuildFile; fileRef = E1F45CD12DCE2131A44A779FB0F02DC1 /* after.m */; };
796A4E4CEC481E8255C9E2AA5C57C289 /* race.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E0FBE7A3301204F5CBFC55E9A151DE6 /* race.m */; };
7B54E2A00FF50710CA4DB5BD400C67BB /* UIView+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = C12CBDAF9B9EEBBAB0C93F9D4DE78475 /* UIView+Promise.swift */; };
7CD32A524072C96EE2121368B6A76382 /* FloatParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFB729F34DE1CF9480CEEBBDDE121E3A /* FloatParameter.swift */; };
80145FCF83AC60C7CC2FAD7ECD2572A9 /* when.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45ACF4EE7A80EAF623401056759B0643 /* when.swift */; };
80BF3C3A64468B8FCB84A6C9969C4E16 /* Pods-PunkAPI_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C3A62AFA2C122C041A80B22940E3626D /* Pods-PunkAPI_Example-dummy.m */; };
83C3614DBAE541EFC0C2102CAF490080 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9491269C5B4C4CA7443038187BE1C610 /* Foundation.framework */; };
84135EA37918E693559EDDAFA3147D34 /* PunkApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8204A953A9538763A16D9B79C507F5AC /* PunkApi.swift */; };
847190E57BEC5349630CD2F55B771C6A /* Recipe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BBD20C5C98555AD3DEBC278C92AFB9D /* Recipe.swift */; };
8B31A8CF2094F256952245D153F2888B /* fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AAEF848AEF1FD8EB69818FC90B81C19 /* fwd.h */; settings = {ATTRIBUTES = (Public, ); }; };
8BF30DCC855B2B897DE4BB5362C21130 /* PromiseKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D4D635088F341AA67F850A827C14172 /* PromiseKit-dummy.m */; };
9326C6F7D75572401DC64F6A0AEF6C76 /* PunkAPI-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D4EC8E0C874B59F6EFAA75436DD8EE /* PunkAPI-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
9329B448B133C0B1ACFD0F3808753687 /* afterlife.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D2E175BA4502C8C3A63685F2BC5BEB4 /* afterlife.swift */; };
933BE73433F302EA3D817D05E0531F69 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9491269C5B4C4CA7443038187BE1C610 /* Foundation.framework */; };
945140FB45AF1038D7793CB753D9BDC4 /* RandomBeerRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99FC0AD1CFE83D8A826E605A902D38CC /* RandomBeerRequest.swift */; };
96F2D275F3AD23CCAB77EC3EFEEC4999 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C989BFEA07921F145C09BB75B093301 /* Configuration.swift */; };
9EAA7DF9752ABD6D63E7DDB33864A438 /* join.m in Sources */ = {isa = PBXBuildFile; fileRef = 31FADD9E89070EFF5AD05064E22BB174 /* join.m */; };
A4B50CCAB4C8BB5706E0FBE288C251C4 /* Catchable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ABB73199E53934E0C0CD23389DA0C40 /* Catchable.swift */; };
A5882A8373B9D4DE00EBC9012B7EC523 /* AnyPromise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27BA6F748BCD7CAD6990886F990A9944 /* AnyPromise.swift */; };
A67AEEF188FBF21743F34B9821389CF9 /* Resolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CACE16203D14FE45C1F8E2185D05146 /* Resolver.swift */; };
A6B3A58E0967E29C2B20BB39C5CB060A /* NSURLSession+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F7B0C20380D62C91FD47BC67F92495 /* NSURLSession+Promise.swift */; };
ADDC41D745BC607B7794F5010E37F6E7 /* UIView+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D80573501D21DC8AD8775039F8ABB67 /* UIView+AnyPromise.m */; };
B0FF0C2624F5F19F8A2053BE50A1CE85 /* Pods-PunkAPI_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF065D35CB5368079A7E9E0D8F47459E /* Pods-PunkAPI_Tests-dummy.m */; };
B6AFF7117295AC8DA08F067C00F303FA /* UIView+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B46BB89F51E6CC599F63C2A87250412 /* UIView+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
B6D85417FF87F510392EBAE20C317FC3 /* NSNotificationCenter+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F51383849898E614BA85FBE7FFC767A /* NSNotificationCenter+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
C1C383FB324DD1CB2B23AC7B2C10535A /* URLBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = CADB7267500265B1DF9A0EF15DF2854F /* URLBuilder.swift */; };
C2583BED1C75ECD24AFB415F5642D467 /* PMKUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A7088B208A517D5AE8E753A38D5942 /* PMKUIKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
C39A5EF075727D59602DA5E2F58AB93B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9491269C5B4C4CA7443038187BE1C610 /* Foundation.framework */; };
C5474F57844AD4D85C2ECBE2D84D8AA8 /* NSURLSession+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6A18C6C4C067F916CFFD5789ECE5C2 /* NSURLSession+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
C940A01B5FB2CB38A430A2A3793A7934 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D4D46C36A92041022DC1CB20261809E /* UIKit.framework */; };
CC7E06FC42D8E42C282044187BECE342 /* NSNotificationCenter+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9036DC0CAE0C329C78DDFA1D1785D9F8 /* NSNotificationCenter+Promise.swift */; };
CD2B9CFA4718EAA9DF70D85BAE32FE82 /* NSNotificationCenter+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 67620D931F3EEB90E4299B6A5528C8C8 /* NSNotificationCenter+AnyPromise.m */; };
D223FBFF9EFDD422204998F0F215DBC1 /* Process+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = D13FF0EB29FE9D7FDB6E90FED312AAE8 /* Process+Promise.swift */; };
D9DCC7474D54CAFAEEB88B0B72E7DD01 /* Thenable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BE4D8E011D8C811F064D8A59C7EFF91 /* Thenable.swift */; };
DD1C7854E7A5F0A4D9FB78DD52F1C853 /* PromiseKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 515F2628FA09232B0F3D69285A9E1896 /* PromiseKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
E8A0ED0249C0AADFEA21DE6596328B2C /* RequestParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A86C76820F1A55B4F5369A92E5A9000C /* RequestParameter.swift */; };
E98E48BEDFB912B827F2F21DBC9C829D /* UIViewController+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = BFD655636927E2E87E54CE4E8A1C2FA2 /* UIViewController+AnyPromise.m */; };
EE64A8272B83B54F24B350F5903664CA /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 327FE12A9711CFE52497A368A29FA007 /* PromiseKit.framework */; };
F06A537BF4CA126D80534913950AA29D /* PMKFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = B0A46DE7946CDBA0798AB212B99F45D4 /* PMKFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; };
F48FADFAE59233CA756E696B33E4F665 /* BeersRequestParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0474D8297FB220A5DD9F03E6C412A6C1 /* BeersRequestParameter.swift */; };
F597AE4CB01EA62064FE535B3D633121 /* after.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45C4AEA6C2062827A0B345F2FF668743 /* after.swift */; };
F8E7320F928CE706C446D5E5BC158C15 /* firstly.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE9C8C7BBC3CD3677A3934AC819F5BAC /* firstly.swift */; };
F94D67A36F5720262B2326200763054E /* Pods-PunkAPI_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 594D21CEC983E3E3F09EEC86DBFCBA18 /* Pods-PunkAPI_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
FE8A72EF6B725359ACB9E1E40966C308 /* AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DF6F331F32D552DC9AB2DCA1386F1A /* AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
0B53718E2DC71E71A697C9DF3F7E207B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 493D285BF034109B7DC84A2005EE0BD7;
remoteInfo = PromiseKit;
};
BFB2026893111273E520A6D2B4BD18BE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 10C6D6C4BDA0420053FC0ED6537EDB1D;
remoteInfo = PunkAPI;
};
CA93BBEE35D26407151839A9A9AADD89 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C33063760F1337FECBDC02B6DC337792;
remoteInfo = "Pods-PunkAPI_Example";
};
E31306E11C97ACEC015FFB0D406A6332 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 493D285BF034109B7DC84A2005EE0BD7;
remoteInfo = PromiseKit;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0474D8297FB220A5DD9F03E6C412A6C1 /* BeersRequestParameter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BeersRequestParameter.swift; sourceTree = "<group>"; };
076E7A8560DFAFB8A647B2A35293CEA6 /* StringParameter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = StringParameter.swift; sourceTree = "<group>"; };
078EBD73602479363ABE31E9BC800B48 /* PromiseKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PromiseKit.h; path = Sources/PromiseKit.h; sourceTree = "<group>"; };
0A01CD17746DE331FDFB2AF62D55A3EB /* Pods-PunkAPI_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PunkAPI_Example.debug.xcconfig"; sourceTree = "<group>"; };
0FEA634E92083372CE4E08BAA27E4F76 /* dispatch_promise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dispatch_promise.m; path = Sources/dispatch_promise.m; sourceTree = "<group>"; };
18F7B0C20380D62C91FD47BC67F92495 /* NSURLSession+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSURLSession+Promise.swift"; path = "Extensions/Foundation/Sources/NSURLSession+Promise.swift"; sourceTree = "<group>"; };
1C989BFEA07921F145C09BB75B093301 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = PunkAPI/Classes/Configuration.swift; sourceTree = "<group>"; };
1CACE16203D14FE45C1F8E2185D05146 /* Resolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resolver.swift; path = Sources/Resolver.swift; sourceTree = "<group>"; };
1E0FBE7A3301204F5CBFC55E9A151DE6 /* race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = race.m; path = Sources/race.m; sourceTree = "<group>"; };
2120672BD2058FF6575163EA0F7B3818 /* hang.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = hang.swift; path = Sources/hang.swift; sourceTree = "<group>"; };
2266D75B3DC3AFB0BDEAD9676E49203E /* Pods-PunkAPI_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PunkAPI_Tests.debug.xcconfig"; sourceTree = "<group>"; };
235CDDE72E10F151E3D0A7E0D897AF32 /* Beer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Beer.swift; sourceTree = "<group>"; };
237FFFF513D6B6152F5BBE55535C050B /* NSObject+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Promise.swift"; path = "Extensions/Foundation/Sources/NSObject+Promise.swift"; sourceTree = "<group>"; };
27BA6F748BCD7CAD6990886F990A9944 /* AnyPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyPromise.swift; path = Sources/AnyPromise.swift; sourceTree = "<group>"; };
285EBFC3C45AE16695FC5D95D04472C5 /* Pods_PunkAPI_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PunkAPI_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2D0F952029ECA36B4317D1E06AD895B7 /* Quantity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Quantity.swift; sourceTree = "<group>"; };
2D478F471257F63E67738623DCBE1869 /* PromiseKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PromiseKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2D4D635088F341AA67F850A827C14172 /* PromiseKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromiseKit-dummy.m"; sourceTree = "<group>"; };
31FADD9E89070EFF5AD05064E22BB174 /* join.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = join.m; path = Sources/join.m; sourceTree = "<group>"; };
327FE12A9711CFE52497A368A29FA007 /* PromiseKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PromiseKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
378CEA390F5529910D24540233568731 /* PunkAPI+PromiseKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PunkAPI+PromiseKit.swift"; path = "PunkAPI/PromiseKit/Classes/PunkAPI+PromiseKit.swift"; sourceTree = "<group>"; };
38A811945BBABB1E763732230355CC22 /* NSURLSession+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSURLSession+AnyPromise.m"; sourceTree = "<group>"; };
45ACF4EE7A80EAF623401056759B0643 /* when.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = when.swift; path = Sources/when.swift; sourceTree = "<group>"; };
45C4AEA6C2062827A0B345F2FF668743 /* after.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = after.swift; path = Sources/after.swift; sourceTree = "<group>"; };
4BBD20C5C98555AD3DEBC278C92AFB9D /* Recipe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Recipe.swift; sourceTree = "<group>"; };
4C0594717ADD69799757B0DBC9684473 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = Sources/Error.swift; sourceTree = "<group>"; };
4D4D46C36A92041022DC1CB20261809E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
4F8305A005FF8D955208A6640FDF172D /* NSTask+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSTask+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSTask+AnyPromise.h"; sourceTree = "<group>"; };
515F2628FA09232B0F3D69285A9E1896 /* PromiseKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromiseKit-umbrella.h"; sourceTree = "<group>"; };
565026BBCD0842AC151CAB4A4149F014 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Box.swift; sourceTree = "<group>"; };
594D21CEC983E3E3F09EEC86DBFCBA18 /* Pods-PunkAPI_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PunkAPI_Tests-umbrella.h"; sourceTree = "<group>"; };
5AAEF848AEF1FD8EB69818FC90B81C19 /* fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fwd.h; path = Sources/fwd.h; sourceTree = "<group>"; };
5ABB73199E53934E0C0CD23389DA0C40 /* Catchable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catchable.swift; path = Sources/Catchable.swift; sourceTree = "<group>"; };
5C6A18C6C4C067F916CFFD5789ECE5C2 /* NSURLSession+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSURLSession+AnyPromise.h"; sourceTree = "<group>"; };
5D9AA418B9F53608ECC98D7BF432F172 /* PromiseKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromiseKit.xcconfig; sourceTree = "<group>"; };
5F2CFBF055ABC3DD615A27D3EB6164BC /* Pods-PunkAPI_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-PunkAPI_Example-umbrella.h"; sourceTree = "<group>"; };
614FC48633A339E6EA39B294CD2DFCD2 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Request.swift; sourceTree = "<group>"; };
61FB36431E6474118755205B3C0E187A /* BeersRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BeersRequest.swift; sourceTree = "<group>"; };
67620D931F3EEB90E4299B6A5528C8C8 /* NSNotificationCenter+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSNotificationCenter+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.m"; sourceTree = "<group>"; };
677B32DCD10AE6B27BA7A8958ECCFE6B /* when.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = when.m; path = Sources/when.m; sourceTree = "<group>"; };
69DF6F331F32D552DC9AB2DCA1386F1A /* AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AnyPromise.h; path = Sources/AnyPromise.h; sourceTree = "<group>"; };
6B46BB89F51E6CC599F63C2A87250412 /* UIView+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+AnyPromise.h"; path = "Extensions/UIKit/Sources/UIView+AnyPromise.h"; sourceTree = "<group>"; };
6D2E175BA4502C8C3A63685F2BC5BEB4 /* afterlife.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = afterlife.swift; path = Extensions/Foundation/Sources/afterlife.swift; sourceTree = "<group>"; };
6E54C3B4757574A2789C011617B7FD0B /* DateParameter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DateParameter.swift; sourceTree = "<group>"; };
6E5ED19FFDFF12C0654D327D7CEF2355 /* Pods-PunkAPI_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PunkAPI_Tests.release.xcconfig"; sourceTree = "<group>"; };
726DB2D3AE60F7B752A9EAF133DF5CC9 /* Pods-PunkAPI_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PunkAPI_Example-frameworks.sh"; sourceTree = "<group>"; };
77A7088B208A517D5AE8E753A38D5942 /* PMKUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PMKUIKit.h; path = Extensions/UIKit/Sources/PMKUIKit.h; sourceTree = "<group>"; };
7A5671808AD7DAA6A2FDF47A80849293 /* Pods-PunkAPI_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PunkAPI_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
7CE2307CC8C3B42DAF98663EAE5D2E60 /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Sources/Promise.swift; sourceTree = "<group>"; };
7D80573501D21DC8AD8775039F8ABB67 /* UIView+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+AnyPromise.m"; path = "Extensions/UIKit/Sources/UIView+AnyPromise.m"; sourceTree = "<group>"; };
805B87BE5EF6F0F575A3D02792A38369 /* Pods-PunkAPI_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PunkAPI_Example.modulemap"; sourceTree = "<group>"; };
8204A953A9538763A16D9B79C507F5AC /* PunkApi.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PunkApi.swift; path = PunkAPI/Classes/PunkApi.swift; sourceTree = "<group>"; };
86BD929429E4AA00D0A211BF1B963E12 /* CustomStringConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomStringConvertible.swift; path = Sources/CustomStringConvertible.swift; sourceTree = "<group>"; };
8EB86AC94D4752E91897EB6A4FEBC37F /* NSTask+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSTask+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSTask+AnyPromise.m"; sourceTree = "<group>"; };
9036DC0CAE0C329C78DDFA1D1785D9F8 /* NSNotificationCenter+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSNotificationCenter+Promise.swift"; path = "Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift"; sourceTree = "<group>"; };
9271861619B31A3F3194E31B66985DAB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9491269C5B4C4CA7443038187BE1C610 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
96FBB284550A6F019E34F20F7CE598B7 /* PunkAPI-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PunkAPI-Info.plist"; sourceTree = "<group>"; };
9994C08E803F428D47901365D835E414 /* Pods_PunkAPI_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PunkAPI_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
99FC0AD1CFE83D8A826E605A902D38CC /* RandomBeerRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = RandomBeerRequest.swift; sourceTree = "<group>"; };
9BE4D8E011D8C811F064D8A59C7EFF91 /* Thenable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Thenable.swift; path = Sources/Thenable.swift; sourceTree = "<group>"; };
9D1C004DA096F2A600E3D2A36057F395 /* Method.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Method.swift; sourceTree = "<group>"; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9F51383849898E614BA85FBE7FFC767A /* NSNotificationCenter+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNotificationCenter+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h"; sourceTree = "<group>"; };
A86C76820F1A55B4F5369A92E5A9000C /* RequestParameter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = RequestParameter.swift; sourceTree = "<group>"; };
A8F2335B7E6754B286937C3C27490DF2 /* hang.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = hang.m; path = Sources/hang.m; sourceTree = "<group>"; };
AE2546BABABB257E67FE8C811936C3CD /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Errors.swift; sourceTree = "<group>"; };
AF065D35CB5368079A7E9E0D8F47459E /* Pods-PunkAPI_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PunkAPI_Tests-dummy.m"; sourceTree = "<group>"; };
B0A46DE7946CDBA0798AB212B99F45D4 /* PMKFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PMKFoundation.h; path = Extensions/Foundation/Sources/PMKFoundation.h; sourceTree = "<group>"; };
B0D4EC8E0C874B59F6EFAA75436DD8EE /* PunkAPI-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PunkAPI-umbrella.h"; sourceTree = "<group>"; };
B2B50E13C964E3FC009487D10DE094B1 /* LogEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LogEvent.swift; path = Sources/LogEvent.swift; sourceTree = "<group>"; };
B2EC3B53C37030A18C4916E0CA3A74E0 /* PunkAPI-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PunkAPI-prefix.pch"; sourceTree = "<group>"; };
B5EB76B74D4EC87ACF9BADA102F058DB /* UIViewController+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+AnyPromise.h"; path = "Extensions/UIKit/Sources/UIViewController+AnyPromise.h"; sourceTree = "<group>"; };
B62066A57781E4739E0E924B6AA2B075 /* Pods-PunkAPI_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PunkAPI_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
BFD655636927E2E87E54CE4E8A1C2FA2 /* UIViewController+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+AnyPromise.m"; path = "Extensions/UIKit/Sources/UIViewController+AnyPromise.m"; sourceTree = "<group>"; };
C12CBDAF9B9EEBBAB0C93F9D4DE78475 /* UIView+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Promise.swift"; path = "Extensions/UIKit/Sources/UIView+Promise.swift"; sourceTree = "<group>"; };
C1B121A0F93C02A2151ACBB55A399427 /* race.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = race.swift; path = Sources/race.swift; sourceTree = "<group>"; };
C2BA4FE9F301A2DE595EF18D1981B50B /* AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AnyPromise.m; path = Sources/AnyPromise.m; sourceTree = "<group>"; };
C3A62AFA2C122C041A80B22940E3626D /* Pods-PunkAPI_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PunkAPI_Example-dummy.m"; sourceTree = "<group>"; };
C444C149881566C5B6565FF76E6EB5A3 /* PunkAPI.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PunkAPI.xcconfig; sourceTree = "<group>"; };
C711613FB88B05B2A712B87FBA3F010F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
C74EC1810B5874538A2FD34A3DA70986 /* PunkAPI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PunkAPI.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CADB7267500265B1DF9A0EF15DF2854F /* URLBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = URLBuilder.swift; sourceTree = "<group>"; };
CBD630693AD71C67F7BF82907D7DF286 /* Pods-PunkAPI_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PunkAPI_Example.release.xcconfig"; sourceTree = "<group>"; };
CC8FC799CC8A849928D542136BA52B28 /* BeerRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BeerRequest.swift; sourceTree = "<group>"; };
D13FF0EB29FE9D7FDB6E90FED312AAE8 /* Process+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Process+Promise.swift"; path = "Extensions/Foundation/Sources/Process+Promise.swift"; sourceTree = "<group>"; };
D5DFD26D02C1B0EABEC684B311BF2B85 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Configuration.swift; sourceTree = "<group>"; };
DCE72815BE64A5E5F370457F5D3C1697 /* Pods-PunkAPI_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PunkAPI_Tests.modulemap"; sourceTree = "<group>"; };
DE9C8C7BBC3CD3677A3934AC819F5BAC /* firstly.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = firstly.swift; path = Sources/firstly.swift; sourceTree = "<group>"; };
E0B4DF6DA31DB84AE2BDB95F1F582711 /* Deprecations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deprecations.swift; path = Sources/Deprecations.swift; sourceTree = "<group>"; };
E1F45CD12DCE2131A44A779FB0F02DC1 /* after.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = after.m; path = Sources/after.m; sourceTree = "<group>"; };
E2A3DC0D2FFF6FC1D18EC60E5BC51819 /* Pods-PunkAPI_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PunkAPI_Example-acknowledgements.plist"; sourceTree = "<group>"; };
E36123EFE7E5CFA49D235979FDB47B5B /* Pods-PunkAPI_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PunkAPI_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
EEC83C5374C596AB1A3B545405E87A54 /* PromiseKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromiseKit-Info.plist"; sourceTree = "<group>"; };
EFB729F34DE1CF9480CEEBBDDE121E3A /* FloatParameter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FloatParameter.swift; sourceTree = "<group>"; };
F08541CAD70C0B900CE83FDA138EAC4B /* Guarantee.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Guarantee.swift; path = Sources/Guarantee.swift; sourceTree = "<group>"; };
F0A7513D4F5F6646CB48F6D152E1D4E3 /* PunkAPI-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PunkAPI-dummy.m"; sourceTree = "<group>"; };
F392962B6F3607C58FB96B4ED4181C6C /* UIViewPropertyAnimator+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewPropertyAnimator+Promise.swift"; path = "Extensions/UIKit/Sources/UIViewPropertyAnimator+Promise.swift"; sourceTree = "<group>"; };
F461DB5C996CED28C0BF7B546ED173BA /* Pods-PunkAPI_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PunkAPI_Tests-Info.plist"; sourceTree = "<group>"; };
F9301413E6D5C8066952F792B44806CE /* PunkAPI.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = PunkAPI.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
FA0C150B648260A1B3A53EEDE1575083 /* Pods-PunkAPI_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PunkAPI_Example-Info.plist"; sourceTree = "<group>"; };
FCB5388CF300CAB8E9F0D8BF4B871A5C /* PunkAPI.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PunkAPI.modulemap; sourceTree = "<group>"; };
FD97E72D6587F144A9BA9A0991F02FF2 /* PromiseKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromiseKit.modulemap; sourceTree = "<group>"; };
FFD00044954B6A06B6970742DB59B83B /* PromiseKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromiseKit-prefix.pch"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
08FF9830345E1B2D94238DFF4A02BD8C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
933BE73433F302EA3D817D05E0531F69 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5AFD10260C3C9B18037E6418B31636C0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6D5AAEE946B85611FFC0B251356E745C /* Foundation.framework in Frameworks */,
C940A01B5FB2CB38A430A2A3793A7934 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6D37D65795EA240D8FA171372A8B245E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C39A5EF075727D59602DA5E2F58AB93B /* Foundation.framework in Frameworks */,
EE64A8272B83B54F24B350F5903664CA /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
BA2C0CEC16C82E7AD21A6497176B5486 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
83C3614DBAE541EFC0C2102CAF490080 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
127ACA3283A67C6DA0F9257B35E1F2CB /* PromiseKit */ = {
isa = PBXGroup;
children = (
378CEA390F5529910D24540233568731 /* PunkAPI+PromiseKit.swift */,
);
name = PromiseKit;
sourceTree = "<group>";
};
1D120296FC3F0829618A0226E821D165 /* CorePromise */ = {
isa = PBXGroup;
children = (
E1F45CD12DCE2131A44A779FB0F02DC1 /* after.m */,
45C4AEA6C2062827A0B345F2FF668743 /* after.swift */,
69DF6F331F32D552DC9AB2DCA1386F1A /* AnyPromise.h */,
C2BA4FE9F301A2DE595EF18D1981B50B /* AnyPromise.m */,
27BA6F748BCD7CAD6990886F990A9944 /* AnyPromise.swift */,
565026BBCD0842AC151CAB4A4149F014 /* Box.swift */,
5ABB73199E53934E0C0CD23389DA0C40 /* Catchable.swift */,
D5DFD26D02C1B0EABEC684B311BF2B85 /* Configuration.swift */,
86BD929429E4AA00D0A211BF1B963E12 /* CustomStringConvertible.swift */,
E0B4DF6DA31DB84AE2BDB95F1F582711 /* Deprecations.swift */,
0FEA634E92083372CE4E08BAA27E4F76 /* dispatch_promise.m */,
4C0594717ADD69799757B0DBC9684473 /* Error.swift */,
DE9C8C7BBC3CD3677A3934AC819F5BAC /* firstly.swift */,
5AAEF848AEF1FD8EB69818FC90B81C19 /* fwd.h */,
F08541CAD70C0B900CE83FDA138EAC4B /* Guarantee.swift */,
A8F2335B7E6754B286937C3C27490DF2 /* hang.m */,
2120672BD2058FF6575163EA0F7B3818 /* hang.swift */,
31FADD9E89070EFF5AD05064E22BB174 /* join.m */,
B2B50E13C964E3FC009487D10DE094B1 /* LogEvent.swift */,
7CE2307CC8C3B42DAF98663EAE5D2E60 /* Promise.swift */,
078EBD73602479363ABE31E9BC800B48 /* PromiseKit.h */,
1E0FBE7A3301204F5CBFC55E9A151DE6 /* race.m */,
C1B121A0F93C02A2151ACBB55A399427 /* race.swift */,
1CACE16203D14FE45C1F8E2185D05146 /* Resolver.swift */,
9BE4D8E011D8C811F064D8A59C7EFF91 /* Thenable.swift */,
677B32DCD10AE6B27BA7A8958ECCFE6B /* when.m */,
45ACF4EE7A80EAF623401056759B0643 /* when.swift */,
);
name = CorePromise;
sourceTree = "<group>";
};
260AB2077D6F3D40343714E1C25D6804 /* Results */ = {
isa = PBXGroup;
children = (
AE2546BABABB257E67FE8C811936C3CD /* Errors.swift */,
);
name = Results;
path = PunkAPI/Classes/Results;
sourceTree = "<group>";
};
3A8A5931A5CC0B971B92D27FE3900294 /* Request */ = {
isa = PBXGroup;
children = (
CC8FC799CC8A849928D542136BA52B28 /* BeerRequest.swift */,
61FB36431E6474118755205B3C0E187A /* BeersRequest.swift */,
99FC0AD1CFE83D8A826E605A902D38CC /* RandomBeerRequest.swift */,
614FC48633A339E6EA39B294CD2DFCD2 /* Request.swift */,
CADB7267500265B1DF9A0EF15DF2854F /* URLBuilder.swift */,
52A471D8992F6BE67EEEA2A16F8044C9 /* Parameter */,
);
name = Request;
path = PunkAPI/Classes/Request;
sourceTree = "<group>";
};
3B0911651EE5C613D4461D9A5C11643A /* API */ = {
isa = PBXGroup;
children = (
1C989BFEA07921F145C09BB75B093301 /* Configuration.swift */,
8204A953A9538763A16D9B79C507F5AC /* PunkApi.swift */,
96671C622A3DD3259EFDADF9F820BD1F /* Content */,
3A8A5931A5CC0B971B92D27FE3900294 /* Request */,
260AB2077D6F3D40343714E1C25D6804 /* Results */,
);
name = API;
sourceTree = "<group>";
};
410E208DE788306E36B7419B74D5D129 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
C7A2AB9C3A29FFF3CADB2D1692D026C8 /* Pods-PunkAPI_Example */,
A17740B0CE0368A87873BAA7C37C48D1 /* Pods-PunkAPI_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
457025482EE6D1C31DEC6B5E2775219F /* Pod */ = {
isa = PBXGroup;
children = (
9271861619B31A3F3194E31B66985DAB /* LICENSE */,
F9301413E6D5C8066952F792B44806CE /* PunkAPI.podspec */,
C711613FB88B05B2A712B87FBA3F010F /* README.md */,
);
name = Pod;
sourceTree = "<group>";
};
52A471D8992F6BE67EEEA2A16F8044C9 /* Parameter */ = {
isa = PBXGroup;
children = (
0474D8297FB220A5DD9F03E6C412A6C1 /* BeersRequestParameter.swift */,
6E54C3B4757574A2789C011617B7FD0B /* DateParameter.swift */,
EFB729F34DE1CF9480CEEBBDDE121E3A /* FloatParameter.swift */,
A86C76820F1A55B4F5369A92E5A9000C /* RequestParameter.swift */,
076E7A8560DFAFB8A647B2A35293CEA6 /* StringParameter.swift */,
);
path = Parameter;
sourceTree = "<group>";
};
6244FD98BEC6BFE26A365DC8179A6911 /* Support Files */ = {
isa = PBXGroup;
children = (
FD97E72D6587F144A9BA9A0991F02FF2 /* PromiseKit.modulemap */,
5D9AA418B9F53608ECC98D7BF432F172 /* PromiseKit.xcconfig */,
2D4D635088F341AA67F850A827C14172 /* PromiseKit-dummy.m */,
EEC83C5374C596AB1A3B545405E87A54 /* PromiseKit-Info.plist */,
FFD00044954B6A06B6970742DB59B83B /* PromiseKit-prefix.pch */,
515F2628FA09232B0F3D69285A9E1896 /* PromiseKit-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/PromiseKit";
sourceTree = "<group>";
};
75270A4BBAAEB57ED37D28838F367C67 /* iOS */ = {
isa = PBXGroup;
children = (
9491269C5B4C4CA7443038187BE1C610 /* Foundation.framework */,
4D4D46C36A92041022DC1CB20261809E /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
79277882C4E7D69A9CB0644C24E4845D /* Support Files */ = {
isa = PBXGroup;
children = (
FCB5388CF300CAB8E9F0D8BF4B871A5C /* PunkAPI.modulemap */,
C444C149881566C5B6565FF76E6EB5A3 /* PunkAPI.xcconfig */,
F0A7513D4F5F6646CB48F6D152E1D4E3 /* PunkAPI-dummy.m */,
96FBB284550A6F019E34F20F7CE598B7 /* PunkAPI-Info.plist */,
B2EC3B53C37030A18C4916E0CA3A74E0 /* PunkAPI-prefix.pch */,
B0D4EC8E0C874B59F6EFAA75436DD8EE /* PunkAPI-umbrella.h */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/PunkAPI";
sourceTree = "<group>";
};
81D476D3EC0392CBB3BE027B895ED295 /* PunkAPI */ = {
isa = PBXGroup;
children = (
3B0911651EE5C613D4461D9A5C11643A /* API */,
457025482EE6D1C31DEC6B5E2775219F /* Pod */,
127ACA3283A67C6DA0F9257B35E1F2CB /* PromiseKit */,
79277882C4E7D69A9CB0644C24E4845D /* Support Files */,
);
name = PunkAPI;
path = ../..;
sourceTree = "<group>";
};
82FE3C18B52F86227DB7105B7FD644BE /* Pods */ = {
isa = PBXGroup;
children = (
D9A56758E309F17E1152B989D653A6DF /* PromiseKit */,
);
name = Pods;
sourceTree = "<group>";
};
96671C622A3DD3259EFDADF9F820BD1F /* Content */ = {
isa = PBXGroup;
children = (
235CDDE72E10F151E3D0A7E0D897AF32 /* Beer.swift */,
9D1C004DA096F2A600E3D2A36057F395 /* Method.swift */,
2D0F952029ECA36B4317D1E06AD895B7 /* Quantity.swift */,
4BBD20C5C98555AD3DEBC278C92AFB9D /* Recipe.swift */,
);
name = Content;
path = PunkAPI/Classes/Content;
sourceTree = "<group>";
};
9D3D1DCE80244467A7C65C9EA2371E60 /* Foundation */ = {
isa = PBXGroup;
children = (
6D2E175BA4502C8C3A63685F2BC5BEB4 /* afterlife.swift */,
9F51383849898E614BA85FBE7FFC767A /* NSNotificationCenter+AnyPromise.h */,
67620D931F3EEB90E4299B6A5528C8C8 /* NSNotificationCenter+AnyPromise.m */,
9036DC0CAE0C329C78DDFA1D1785D9F8 /* NSNotificationCenter+Promise.swift */,
237FFFF513D6B6152F5BBE55535C050B /* NSObject+Promise.swift */,
4F8305A005FF8D955208A6640FDF172D /* NSTask+AnyPromise.h */,
8EB86AC94D4752E91897EB6A4FEBC37F /* NSTask+AnyPromise.m */,
5C6A18C6C4C067F916CFFD5789ECE5C2 /* NSURLSession+AnyPromise.h */,
38A811945BBABB1E763732230355CC22 /* NSURLSession+AnyPromise.m */,
18F7B0C20380D62C91FD47BC67F92495 /* NSURLSession+Promise.swift */,
B0A46DE7946CDBA0798AB212B99F45D4 /* PMKFoundation.h */,
D13FF0EB29FE9D7FDB6E90FED312AAE8 /* Process+Promise.swift */,
);
name = Foundation;
sourceTree = "<group>";
};
A17740B0CE0368A87873BAA7C37C48D1 /* Pods-PunkAPI_Tests */ = {
isa = PBXGroup;
children = (
DCE72815BE64A5E5F370457F5D3C1697 /* Pods-PunkAPI_Tests.modulemap */,
E36123EFE7E5CFA49D235979FDB47B5B /* Pods-PunkAPI_Tests-acknowledgements.markdown */,
7A5671808AD7DAA6A2FDF47A80849293 /* Pods-PunkAPI_Tests-acknowledgements.plist */,
AF065D35CB5368079A7E9E0D8F47459E /* Pods-PunkAPI_Tests-dummy.m */,
F461DB5C996CED28C0BF7B546ED173BA /* Pods-PunkAPI_Tests-Info.plist */,
594D21CEC983E3E3F09EEC86DBFCBA18 /* Pods-PunkAPI_Tests-umbrella.h */,
2266D75B3DC3AFB0BDEAD9676E49203E /* Pods-PunkAPI_Tests.debug.xcconfig */,
6E5ED19FFDFF12C0654D327D7CEF2355 /* Pods-PunkAPI_Tests.release.xcconfig */,
);
name = "Pods-PunkAPI_Tests";
path = "Target Support Files/Pods-PunkAPI_Tests";
sourceTree = "<group>";
};
C7A2AB9C3A29FFF3CADB2D1692D026C8 /* Pods-PunkAPI_Example */ = {
isa = PBXGroup;
children = (
805B87BE5EF6F0F575A3D02792A38369 /* Pods-PunkAPI_Example.modulemap */,
B62066A57781E4739E0E924B6AA2B075 /* Pods-PunkAPI_Example-acknowledgements.markdown */,
E2A3DC0D2FFF6FC1D18EC60E5BC51819 /* Pods-PunkAPI_Example-acknowledgements.plist */,
C3A62AFA2C122C041A80B22940E3626D /* Pods-PunkAPI_Example-dummy.m */,
726DB2D3AE60F7B752A9EAF133DF5CC9 /* Pods-PunkAPI_Example-frameworks.sh */,
FA0C150B648260A1B3A53EEDE1575083 /* Pods-PunkAPI_Example-Info.plist */,
5F2CFBF055ABC3DD615A27D3EB6164BC /* Pods-PunkAPI_Example-umbrella.h */,
0A01CD17746DE331FDFB2AF62D55A3EB /* Pods-PunkAPI_Example.debug.xcconfig */,
CBD630693AD71C67F7BF82907D7DF286 /* Pods-PunkAPI_Example.release.xcconfig */,
);
name = "Pods-PunkAPI_Example";
path = "Target Support Files/Pods-PunkAPI_Example";
sourceTree = "<group>";
};
C8E9EB0D4E69E69D6479278E3D3599F4 /* UIKit */ = {
isa = PBXGroup;
children = (
77A7088B208A517D5AE8E753A38D5942 /* PMKUIKit.h */,
6B46BB89F51E6CC599F63C2A87250412 /* UIView+AnyPromise.h */,
7D80573501D21DC8AD8775039F8ABB67 /* UIView+AnyPromise.m */,
C12CBDAF9B9EEBBAB0C93F9D4DE78475 /* UIView+Promise.swift */,
B5EB76B74D4EC87ACF9BADA102F058DB /* UIViewController+AnyPromise.h */,
BFD655636927E2E87E54CE4E8A1C2FA2 /* UIViewController+AnyPromise.m */,
F392962B6F3607C58FB96B4ED4181C6C /* UIViewPropertyAnimator+Promise.swift */,
);
name = UIKit;
sourceTree = "<group>";
};
CE950DC2BD7FD1A7AE44513511B64E2A /* Development Pods */ = {
isa = PBXGroup;
children = (
81D476D3EC0392CBB3BE027B895ED295 /* PunkAPI */,
);
name = "Development Pods";
sourceTree = "<group>";
};
CF1408CF629C7361332E53B88F7BD30C = {
isa = PBXGroup;
children = (
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
CE950DC2BD7FD1A7AE44513511B64E2A /* Development Pods */,
FDF6557E2DF6033F239601930D7CDF1D /* Frameworks */,
82FE3C18B52F86227DB7105B7FD644BE /* Pods */,
E2C1A8B823A4126C42BC230F4BBC8716 /* Products */,
410E208DE788306E36B7419B74D5D129 /* Targets Support Files */,
);
sourceTree = "<group>";
};
D9A56758E309F17E1152B989D653A6DF /* PromiseKit */ = {
isa = PBXGroup;
children = (
1D120296FC3F0829618A0226E821D165 /* CorePromise */,
9D3D1DCE80244467A7C65C9EA2371E60 /* Foundation */,
6244FD98BEC6BFE26A365DC8179A6911 /* Support Files */,
C8E9EB0D4E69E69D6479278E3D3599F4 /* UIKit */,
);
path = PromiseKit;
sourceTree = "<group>";
};
E2C1A8B823A4126C42BC230F4BBC8716 /* Products */ = {
isa = PBXGroup;
children = (
9994C08E803F428D47901365D835E414 /* Pods_PunkAPI_Example.framework */,
285EBFC3C45AE16695FC5D95D04472C5 /* Pods_PunkAPI_Tests.framework */,
2D478F471257F63E67738623DCBE1869 /* PromiseKit.framework */,
C74EC1810B5874538A2FD34A3DA70986 /* PunkAPI.framework */,
);
name = Products;
sourceTree = "<group>";
};
FDF6557E2DF6033F239601930D7CDF1D /* Frameworks */ = {
isa = PBXGroup;
children = (
327FE12A9711CFE52497A368A29FA007 /* PromiseKit.framework */,
75270A4BBAAEB57ED37D28838F367C67 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
1F4088112C532E8A592961EF4C3E3E97 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9326C6F7D75572401DC64F6A0AEF6C76 /* PunkAPI-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
20525CD55B2B3D9C5A5D43A38DFDA628 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
FE8A72EF6B725359ACB9E1E40966C308 /* AnyPromise.h in Headers */,
8B31A8CF2094F256952245D153F2888B /* fwd.h in Headers */,
B6D85417FF87F510392EBAE20C317FC3 /* NSNotificationCenter+AnyPromise.h in Headers */,
2ED986F10A9967952B29001537D4B34B /* NSTask+AnyPromise.h in Headers */,
C5474F57844AD4D85C2ECBE2D84D8AA8 /* NSURLSession+AnyPromise.h in Headers */,
F06A537BF4CA126D80534913950AA29D /* PMKFoundation.h in Headers */,
C2583BED1C75ECD24AFB415F5642D467 /* PMKUIKit.h in Headers */,
DD1C7854E7A5F0A4D9FB78DD52F1C853 /* PromiseKit-umbrella.h in Headers */,
5510C0AE582D7D6C7746FFFA7B8ED819 /* PromiseKit.h in Headers */,
B6AFF7117295AC8DA08F067C00F303FA /* UIView+AnyPromise.h in Headers */,
6BC916C6B5309FFE6C7275F8FEBFE89F /* UIViewController+AnyPromise.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
55A24DF44CFB274F4E805D655B1EEBDD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
F94D67A36F5720262B2326200763054E /* Pods-PunkAPI_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7CA01CC7B341F25E0F7DE0BF0126FDF4 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
1621F984BD3620821682107F63375E22 /* Pods-PunkAPI_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
10C6D6C4BDA0420053FC0ED6537EDB1D /* PunkAPI */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0335ADB68849DAAAF1DE0AB2AAC3F344 /* Build configuration list for PBXNativeTarget "PunkAPI" */;
buildPhases = (
1F4088112C532E8A592961EF4C3E3E97 /* Headers */,
45E5B3545509DDA92EAB5D3FF861B959 /* Sources */,
6D37D65795EA240D8FA171372A8B245E /* Frameworks */,
6B1BBFA38012CF956B42C6A37A4EC02B /* Resources */,
);
buildRules = (
);
dependencies = (
7789D8E7D04C2EB0200B59481983FFF5 /* PBXTargetDependency */,
);
name = PunkAPI;
productName = PunkAPI;
productReference = C74EC1810B5874538A2FD34A3DA70986 /* PunkAPI.framework */;
productType = "com.apple.product-type.framework";
};
493D285BF034109B7DC84A2005EE0BD7 /* PromiseKit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 67FB30A3E57322852E8BD09E41DBAC5E /* Build configuration list for PBXNativeTarget "PromiseKit" */;
buildPhases = (
20525CD55B2B3D9C5A5D43A38DFDA628 /* Headers */,
42E8D5B2A29432F130FAAD7A3A3FB730 /* Sources */,
5AFD10260C3C9B18037E6418B31636C0 /* Frameworks */,
871AE43C2ED7CDEF0AC0B7C6204A03CD /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = PromiseKit;
productName = PromiseKit;
productReference = 2D478F471257F63E67738623DCBE1869 /* PromiseKit.framework */;
productType = "com.apple.product-type.framework";
};
A1774F3AF0519D2F433EAE1AD44A62BA /* Pods-PunkAPI_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = D13FE8B448BC34D450FFDAEDE10F0C99 /* Build configuration list for PBXNativeTarget "Pods-PunkAPI_Tests" */;
buildPhases = (
55A24DF44CFB274F4E805D655B1EEBDD /* Headers */,
3D96722AB4F629307E1A58FED22C863B /* Sources */,
BA2C0CEC16C82E7AD21A6497176B5486 /* Frameworks */,
1C301FBB0D9805A01EC99EB897C17710 /* Resources */,
);
buildRules = (
);
dependencies = (
45FC1BCA5F61F91F9A901FF2E6D01A6B /* PBXTargetDependency */,
);
name = "Pods-PunkAPI_Tests";
productName = "Pods-PunkAPI_Tests";
productReference = 285EBFC3C45AE16695FC5D95D04472C5 /* Pods_PunkAPI_Tests.framework */;
productType = "com.apple.product-type.framework";
};
C33063760F1337FECBDC02B6DC337792 /* Pods-PunkAPI_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97992AFE37B658BE25C179E644D0D3FC /* Build configuration list for PBXNativeTarget "Pods-PunkAPI_Example" */;
buildPhases = (
7CA01CC7B341F25E0F7DE0BF0126FDF4 /* Headers */,
486AFE136F2396E9D404FA689DEF2B61 /* Sources */,
08FF9830345E1B2D94238DFF4A02BD8C /* Frameworks */,
0E417D5A3F3BFA4B84B0B12F054E2369 /* Resources */,
);
buildRules = (
);
dependencies = (
72F10CA99E2C1EF28E6AB11E07CFA027 /* PBXTargetDependency */,
157B213B47C69F1747F9BB1CAE1B5379 /* PBXTargetDependency */,
);
name = "Pods-PunkAPI_Example";
productName = "Pods-PunkAPI_Example";
productReference = 9994C08E803F428D47901365D835E414 /* Pods_PunkAPI_Example.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0930;
LastUpgradeCheck = 0930;
};
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
);
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
productRefGroup = E2C1A8B823A4126C42BC230F4BBC8716 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
C33063760F1337FECBDC02B6DC337792 /* Pods-PunkAPI_Example */,
A1774F3AF0519D2F433EAE1AD44A62BA /* Pods-PunkAPI_Tests */,
493D285BF034109B7DC84A2005EE0BD7 /* PromiseKit */,
10C6D6C4BDA0420053FC0ED6537EDB1D /* PunkAPI */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
0E417D5A3F3BFA4B84B0B12F054E2369 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
1C301FBB0D9805A01EC99EB897C17710 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
6B1BBFA38012CF956B42C6A37A4EC02B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
871AE43C2ED7CDEF0AC0B7C6204A03CD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
3D96722AB4F629307E1A58FED22C863B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B0FF0C2624F5F19F8A2053BE50A1CE85 /* Pods-PunkAPI_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
42E8D5B2A29432F130FAAD7A3A3FB730 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
78AF119DC02076D72703311D536FE3E8 /* after.m in Sources */,
F597AE4CB01EA62064FE535B3D633121 /* after.swift in Sources */,
9329B448B133C0B1ACFD0F3808753687 /* afterlife.swift in Sources */,
0CD5A29095238AB2070A85C44299D20A /* AnyPromise.m in Sources */,
A5882A8373B9D4DE00EBC9012B7EC523 /* AnyPromise.swift in Sources */,
1F38633D74B0FDC6B0FB1E3E44E538CA /* Box.swift in Sources */,
A4B50CCAB4C8BB5706E0FBE288C251C4 /* Catchable.swift in Sources */,
3B6FA98134D084A68598587809E12B6F /* Configuration.swift in Sources */,
3DA420D0E31AC2A4EE88C4467167107B /* CustomStringConvertible.swift in Sources */,
01B8BD5CBB8B53B4A143BB0B2EF2871F /* Deprecations.swift in Sources */,
57F33E3A3BD21639C3FD3BE08D9B00EB /* dispatch_promise.m in Sources */,
385C241549AFD7255F45D03BA8472B84 /* Error.swift in Sources */,
F8E7320F928CE706C446D5E5BC158C15 /* firstly.swift in Sources */,
4FA447B6C7C42F9107D162B70F0AE56B /* Guarantee.swift in Sources */,
4BA3FB5719701A525145DAEAC916C422 /* hang.m in Sources */,
50F5803F6F5EB889904FBC6EA278BED7 /* hang.swift in Sources */,
9EAA7DF9752ABD6D63E7DDB33864A438 /* join.m in Sources */,
47488AFA332286202C15C0F9E60A5507 /* LogEvent.swift in Sources */,
CD2B9CFA4718EAA9DF70D85BAE32FE82 /* NSNotificationCenter+AnyPromise.m in Sources */,
CC7E06FC42D8E42C282044187BECE342 /* NSNotificationCenter+Promise.swift in Sources */,
697454802092796CA44AA06FF6C46F49 /* NSObject+Promise.swift in Sources */,
09D50669E7425C84A6BE7F092F913C8F /* NSTask+AnyPromise.m in Sources */,
00C140713D9C0AACF3C6FB9D30194A72 /* NSURLSession+AnyPromise.m in Sources */,
A6B3A58E0967E29C2B20BB39C5CB060A /* NSURLSession+Promise.swift in Sources */,
D223FBFF9EFDD422204998F0F215DBC1 /* Process+Promise.swift in Sources */,
333AACFC8BEB680B098CC19F6E7845C7 /* Promise.swift in Sources */,
8BF30DCC855B2B897DE4BB5362C21130 /* PromiseKit-dummy.m in Sources */,
796A4E4CEC481E8255C9E2AA5C57C289 /* race.m in Sources */,
7606A03461D15DB204432A3D85F5ED87 /* race.swift in Sources */,
A67AEEF188FBF21743F34B9821389CF9 /* Resolver.swift in Sources */,
D9DCC7474D54CAFAEEB88B0B72E7DD01 /* Thenable.swift in Sources */,
ADDC41D745BC607B7794F5010E37F6E7 /* UIView+AnyPromise.m in Sources */,
7B54E2A00FF50710CA4DB5BD400C67BB /* UIView+Promise.swift in Sources */,
E98E48BEDFB912B827F2F21DBC9C829D /* UIViewController+AnyPromise.m in Sources */,
1971D0121A71658B811B2AD79E980107 /* UIViewPropertyAnimator+Promise.swift in Sources */,
15A5359638A18D80E8764A6DF4BF4ACA /* when.m in Sources */,
80145FCF83AC60C7CC2FAD7ECD2572A9 /* when.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
45E5B3545509DDA92EAB5D3FF861B959 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
11ADFBDDEE220C4328E9A3E842A5116D /* Beer.swift in Sources */,
3F4BA0C8D5129CC4882AFDB2AC03D265 /* BeerRequest.swift in Sources */,
55228DD3971473915292760EFF5C3C6F /* BeersRequest.swift in Sources */,
F48FADFAE59233CA756E696B33E4F665 /* BeersRequestParameter.swift in Sources */,
96F2D275F3AD23CCAB77EC3EFEEC4999 /* Configuration.swift in Sources */,
389D4EA725DB61A4C9073B89F87C28A4 /* DateParameter.swift in Sources */,
5597C4DB5997EFB71A2C491B4E4588CA /* Errors.swift in Sources */,
7CD32A524072C96EE2121368B6A76382 /* FloatParameter.swift in Sources */,
701FC241CFF51869B91B346062887E32 /* Method.swift in Sources */,
697107BDDB402824E2D21B5768D3216E /* PunkAPI+PromiseKit.swift in Sources */,
4DD4DC51B32E02D21613D4C5888C7CFF /* PunkAPI-dummy.m in Sources */,
84135EA37918E693559EDDAFA3147D34 /* PunkApi.swift in Sources */,
5E9A6176DDB6E0178BE9CF9346686F84 /* Quantity.swift in Sources */,
945140FB45AF1038D7793CB753D9BDC4 /* RandomBeerRequest.swift in Sources */,
847190E57BEC5349630CD2F55B771C6A /* Recipe.swift in Sources */,
66DD9EA1B3E82F7BB5BA096FAE9612CC /* Request.swift in Sources */,
E8A0ED0249C0AADFEA21DE6596328B2C /* RequestParameter.swift in Sources */,
18EAACD97A90F69000C850F734A5BF6A /* StringParameter.swift in Sources */,
C1C383FB324DD1CB2B23AC7B2C10535A /* URLBuilder.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
486AFE136F2396E9D404FA689DEF2B61 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
80BF3C3A64468B8FCB84A6C9969C4E16 /* Pods-PunkAPI_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
157B213B47C69F1747F9BB1CAE1B5379 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PunkAPI;
target = 10C6D6C4BDA0420053FC0ED6537EDB1D /* PunkAPI */;
targetProxy = BFB2026893111273E520A6D2B4BD18BE /* PBXContainerItemProxy */;
};
45FC1BCA5F61F91F9A901FF2E6D01A6B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Pods-PunkAPI_Example";
target = C33063760F1337FECBDC02B6DC337792 /* Pods-PunkAPI_Example */;
targetProxy = CA93BBEE35D26407151839A9A9AADD89 /* PBXContainerItemProxy */;
};
72F10CA99E2C1EF28E6AB11E07CFA027 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PromiseKit;
target = 493D285BF034109B7DC84A2005EE0BD7 /* PromiseKit */;
targetProxy = 0B53718E2DC71E71A697C9DF3F7E207B /* PBXContainerItemProxy */;
};
7789D8E7D04C2EB0200B59481983FFF5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PromiseKit;
target = 493D285BF034109B7DC84A2005EE0BD7 /* PromiseKit */;
targetProxy = E31306E11C97ACEC015FFB0D406A6332 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
06FCC6187F36812945FC76B24D387F00 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 2266D75B3DC3AFB0BDEAD9676E49203E /* Pods-PunkAPI_Tests.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
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-PunkAPI_Tests/Pods-PunkAPI_Tests-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-PunkAPI_Tests/Pods-PunkAPI_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";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
2F7B6BE01D06B0792D0FA47AAD1E0F6D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C444C149881566C5B6565FF76E6EB5A3 /* PunkAPI.xcconfig */;
buildSettings = {
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";
GCC_PREFIX_HEADER = "Target Support Files/PunkAPI/PunkAPI-prefix.pch";
INFOPLIST_FILE = "Target Support Files/PunkAPI/PunkAPI-Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/PunkAPI/PunkAPI.modulemap";
PRODUCT_MODULE_NAME = PunkAPI;
PRODUCT_NAME = PunkAPI;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
3048B0C5C704DFFF688DA57F5380ED58 /* 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 = 10.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 4.2;
SYMROOT = "${SRCROOT}/../build";
};
name = Release;
};
4F4DCE18C0778638D55C3EC45AFD0B4D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 0A01CD17746DE331FDFB2AF62D55A3EB /* Pods-PunkAPI_Example.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
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;