forked from mike4aday/SwiftlySalesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.pbxproj
1238 lines (1226 loc) · 83.5 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 */
004D9393991645F7D0DA37327CD39047 /* ObjectMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F69B3BD58D36BF47FE1AE28865E5B55 /* ObjectMetadata.swift */; };
03826D16E71A7B7D716DE2D90CF16C4C /* Zalgo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E0B0795D4CC1B35FA39436D5052DCFB /* Zalgo.swift */; };
068211EDB78F9EA81710C143E4643B5C /* LoginDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F693D3AB8FF05B12E4C9A5D109FD6B6 /* LoginDelegate.swift */; };
07035C4A4773BDAB98A78C31CC2D195F /* NSURLSession+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = D9B468F428AC55896FEC0D8C3A1181AC /* NSURLSession+AnyPromise.m */; };
0908068C6BC34B030B6DD6A8C3C7AE6C /* PromiseKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 41BE05D1B6D9DB09085F5D597DF8FCF4 /* PromiseKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0974B9858A7323328C86D6B466BF7507 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FD841937CDE1B47BE56B0B77A73AD71 /* Foundation.framework */; };
12DCF5A46DD991305EA275485A50B55B /* GlobalState.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DBBCF038A033FBF591B05C0FA593946 /* GlobalState.m */; };
178A7F4B8A034E1A7E18032138A3E53D /* race.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95DEEF09AD31315EC2776080269E92B7 /* race.swift */; };
178B8A8BCA125EC7E18AFB5DB815C7DD /* NSObject+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8EEC210981A388DDF8ECCEF8433904 /* NSObject+Promise.swift */; };
19BE41FC08A9487C3617E6B763808866 /* NSTask+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E33654BE09E7109A0FEEE76E49BF8E0 /* NSTask+AnyPromise.m */; };
1B5D9AEA9B70EC40DEA9CAE1EAEAF2E9 /* AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FE4B605FCF6F5D282413F2C6FEDFD4 /* AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
1E15BF86746CA5CDFEEB3678CE21EA84 /* join.m in Sources */ = {isa = PBXBuildFile; fileRef = 97A9B7857BB154507F020FDFC1EBB31C /* join.m */; };
1E76B9240C00AF3EFAEA647384577B9E /* Limit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 756A950D7B46C7255AD774467E8CF449 /* Limit.swift */; };
1F6A87C85BA9918ECE527C27DCC9BDC4 /* Pods-SwiftlySalesforce_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A9573AF375E3182D12971ABD2EE6DD3A /* Pods-SwiftlySalesforce_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
26A45E19C76736F9FE0AEB77C18748AD /* PicklistItemMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C33DE2489F33F9FE2631C66A4B695A /* PicklistItemMetadata.swift */; };
28B8404603FC01A86B362C5569FE15D7 /* Record.swift in Sources */ = {isa = PBXBuildFile; fileRef = C483AA844F377C878ADDEE640F258CCE /* Record.swift */; };
28C6910433C74B40344C73B111E38AA8 /* Organization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BFEEA2655D457CD372ADE73420464B7 /* Organization.swift */; };
2C2DF6CEC6D35366F545AFB52F0F87F2 /* PromiseKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDD911A7C16FAA09302EE0DF2F0B0DA9 /* PromiseKit-dummy.m */; };
2C4C992A96DDEB79CDF7CE6768BF7A15 /* join.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9A5586A6499C102D0BCC9DC96EF7F49 /* join.swift */; };
2D5A811D3FCA0FA54C185D2FA2C55AFE /* UIView+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7307E7A48A7523AE477711BA4DF908C9 /* UIView+Promise.swift */; };
3689519A0B1792AE0AF48852F76C0E12 /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B7B97DBEF2B7618554E6D9AB143DFAA /* Promise.swift */; };
3707B8C76C66A05721E65F0AC96BB916 /* Promise+Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6179271256B847F0ECC0222967A3CAA1 /* Promise+Properties.swift */; };
37DE760989307958C5C1AD300CADED96 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FD841937CDE1B47BE56B0B77A73AD71 /* Foundation.framework */; };
3A0C9F17670659A7531599975E17D074 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A9F82E67A30841B8EA38FFE9317D477D /* UIKit.framework */; };
3BB5A16FD186BC02F73E823BAA17D87A /* Pods-SwiftlySalesforce_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 87842A8D4029BA63F7E53FAF02C95DEC /* Pods-SwiftlySalesforce_Example-dummy.m */; };
413B165B2D123CAA5F8D118DFB7E7098 /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7AD16F573EF2C536F2A0B55787FE6F2 /* Keychain.swift */; };
42A1E2FF7C59E63595E7491F08019DB0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FD841937CDE1B47BE56B0B77A73AD71 /* Foundation.framework */; };
468344D48B2BDE155159FD9AB61AB0A7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10B1EE3F89FE7038D223ECD94586286A /* Error.swift */; };
473110C35D959FE4CF35E60F2E8E8649 /* dispatch_promise.m in Sources */ = {isa = PBXBuildFile; fileRef = F3AF2875741DFD0921E7E1FF67859289 /* dispatch_promise.m */; };
48B22DC7F1C96ACB9CCCB11C30BF264F /* UIViewController+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FAE3B541056E3495362EF0C5DDB405B /* UIViewController+Promise.swift */; };
532C81F867A3A9FC8A2CA5A89B7A16E1 /* URLDataPromise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D8C2DDC09A2F5FF7FC82E8881A3996B /* URLDataPromise.swift */; };
59A0F77FA367583DA52F89CF58C95CA2 /* Requestor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E4C91B7A8094419B62827815C18F6CD /* Requestor.swift */; };
6097F9D309C746CBF8E9D835FCF181A1 /* AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CCDD0F4DEC7B45ED67BDA259AA0495C /* AnyPromise.m */; };
633238B93DC394FD49EF5A4F5CBC4476 /* SwiftlySalesforce-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7CBB199268ECD486A5581F432401AB3 /* SwiftlySalesforce-dummy.m */; };
6385CD73C4E7C34B8144FBB6AF0706E0 /* OAuth2ResultStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAC134A0EE2C5779B3CFE3285948682 /* OAuth2ResultStore.swift */; };
645FFC638C95C471B073EC2F5CF5DB95 /* Salesforce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 643BD4B58C3CA1D7646BE8722E792EE6 /* Salesforce.swift */; };
6688051181372A9D6828AE777E56B8B4 /* PMKQuartzCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E1D36DCB7BF8A7DEB230733B158119 /* PMKQuartzCore.h */; settings = {ATTRIBUTES = (Public, ); }; };
69CD6E97F68A9616C1FB1BE7446DA234 /* Globals.swift in Sources */ = {isa = PBXBuildFile; fileRef = 386966432BF6E5420D59BFDB62E7336F /* Globals.swift */; };
6C720348CA5031AE1B3F4C5959D7D36D /* hang.m in Sources */ = {isa = PBXBuildFile; fileRef = 647132F3F2E8752B2E96A1DC7747B992 /* hang.m */; };
6F961E7D8AF0CAF489815965A42D1F5E /* NSNotificationCenter+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 638FC877C26AE2698B03F57C63A5C636 /* NSNotificationCenter+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
70DECBB3C1EC9235DA0CC7D30E05BBAC /* UIViewController+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1EC75F3F631688BE467D62877D90CD /* UIViewController+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
727AB7DFC7B0D26AD1F58EEBA090CA59 /* wrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C6823BF3BB1566E1F8C86FABE5F23DA /* wrap.swift */; };
73377E16767DF71AE498158506831C23 /* Process+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E43CFF6D7A6E68F617343E7F43D0A70 /* Process+Promise.swift */; };
751B60CAA6E758C0AE7912AA3B8BEA2E /* Pods-SwiftlySalesforce_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FBB66AF919CD6FC604DE59A52A6C0A84 /* Pods-SwiftlySalesforce_Tests-dummy.m */; };
771824DEA14CCC8EDFE998F864A5DB86 /* QueryResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54C39BADD02D2D468DEAF123E98BC977 /* QueryResult.swift */; };
818CADFEC220B9644F97ED3375C23021 /* NSURLSession+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 337F0663F2253CE5F69CA018CA7C90D8 /* NSURLSession+Promise.swift */; };
862BD3A08EEC617E88E3F34F04EF55C8 /* Address.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21101430B4B9E8355E61DB626C74BE67 /* Address.swift */; };
8C7006425DC89CFD19ABF19D66F1D6AA /* NSNotificationCenter+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 294026AB8B28C610FC57DF2A26EB7FC9 /* NSNotificationCenter+Promise.swift */; };
8E50638C8D049100D46B8AF5A51A2D49 /* ConnectedApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5940879EC2ED3D4C4A4ED5D69BBA7E4D /* ConnectedApp.swift */; };
91CB6E5BD052605152C2997A9F918766 /* PMKAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFFA858C2DB288BB308A48DC5193E6F1 /* PMKAlertController.swift */; };
92C0A175577EA57091559E02FCAA22C5 /* UIViewController+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = E7480BAB29A5573D40EBF6E02381C1E2 /* UIViewController+AnyPromise.m */; };
93F0BC61E842B039B782A8ABCCE2D113 /* AnyPromise.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD987AB706C5E3C09C4B93C7F9F25E23 /* AnyPromise.swift */; };
9758379CA3BEB6D9C03F9C46C3C4FD81 /* UIView+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2B3D19404B7C7A8014B95D5977B946 /* UIView+AnyPromise.m */; };
996844FEB750BBE97586B1BE4D19152E /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4212FBE5112A86EA090A636CE6EA59B6 /* Error.swift */; };
9DEEB51B2DF0F9CEF1C8E9C717509B13 /* NSTask+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = A781E6C7BA06DD8A0A80B0494DA26A4E /* NSTask+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
A1E7066450832C0CD8A5318B86FE9371 /* when.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D29D2F64D48281095C8274FEE6DACD0 /* when.swift */; };
A27AB05EC18401FCD5AACBB71A4BA06F /* NSURLSession+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 9696FB863D0DE618F5B3684606228A4A /* NSURLSession+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
A6AA29B8323298578F85675BC4D9983C /* when.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D38D8F361C611EFCFF57DC13B115F3A /* when.m */; };
A8537B42A00F1737004858A284D07760 /* PMKUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 95632F4C8D15D6CF8EE867952FA69262 /* PMKUIKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
ABC3AF31FE9D050913F7F77EA3138BEB /* PromiseKit.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1F16648A7B55D15BED16EC48C06644 /* PromiseKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
AD8F244BF97CDEC57E912EDF67794C0B /* State.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE9A7EF9C115E41D052ADAEF5E87EFD1 /* State.swift */; };
B5A3CBD004B0C9D05A26028EE79413BD /* CALayer+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 37D86DBB6A7B7F77D79F889CEBC3755E /* CALayer+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
BADD121124019E6013903CFE781BC52F /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D8F25817235857AE113B60CE73F1492 /* PromiseKit.framework */; };
BEF1A423FF25B7B01A8C60179000D5C9 /* UIView+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 765DEE6E8D8C524E9695A1C7726AB582 /* UIView+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
C0B0C68EA9132075801FAFBAFC15784A /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75DDA3B7802EC385DC6B66F933A29794 /* Resource.swift */; };
C1184C779D605EB503502D2A51E1FE5D /* after.m in Sources */ = {isa = PBXBuildFile; fileRef = C54315DA3A1A39E54691EB5C6921A90C /* after.m */; };
CC26A691E58D1C67506A5F3FE7F2FEA4 /* after.swift in Sources */ = {isa = PBXBuildFile; fileRef = B660E1F4E80FD3F4BF33455CD40AA754 /* after.swift */; };
D161458241B7E5CE49B8760B1455A717 /* SwiftlySalesforce-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F8E1A3E7CD003E0E426E6F234894319 /* SwiftlySalesforce-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
D1F588B0F22D41F83EC5904FD31B04A2 /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E59739BA1D2420165DD40F8FEAD47AE0 /* Extensions.swift */; };
D283BD069CD6E20143197BE453743708 /* FieldMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5411198DE5F6393F23FA9B8C64F87E3 /* FieldMetadata.swift */; };
DB746D36FFFEBBA15A9F56415AA2D11A /* Pods-SwiftlySalesforce_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57726273156A5128C5F0A0E73BED8670 /* Pods-SwiftlySalesforce_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
DC8B3CECE0EBBF7172B1756CB5BF4F7E /* DispatchQueue+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = F845E54F1F99FA83765AE21DEBBED993 /* DispatchQueue+Promise.swift */; };
DD55AA65DC66138994A7D73D1C58597C /* NSNotificationCenter+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = CB5F4A276E2678B6049F2F139147EC12 /* NSNotificationCenter+AnyPromise.m */; };
E59328BF5012DE3781037AEC7E72BBDD /* fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = F6300B2B83011D43128DA44649586D4A /* fwd.h */; settings = {ATTRIBUTES = (Public, ); }; };
EF9E06ECC1B1D6713A9573F0AD37EC53 /* Promise+AnyPromise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95739ECC732A6332E68750FE3F7489A4 /* Promise+AnyPromise.swift */; };
F15273C19DCACD981AEBB7585439E994 /* PMKFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D009A35EE64D77102391EC364147766 /* PMKFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; };
F1BDA51BCAE33859C41801698D43D620 /* Identity.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD3E0B0C7B18E5747ECDC5A8EF6F5F16 /* Identity.swift */; };
F45A3D52B2218DF9F5C47F35049ABD07 /* CALayer+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F48B3970DAE9346AD3FA54A3A613328 /* CALayer+AnyPromise.m */; };
F58CDFACE10E0D7AC0F73D7DB94572EF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 111CB544691468816DDF3F8D46424552 /* QuartzCore.framework */; };
F6BA37AA7B8C8B55C59B197710A300DE /* Info.plist in Sources */ = {isa = PBXBuildFile; fileRef = 39E4B04F4D27967A73EB968598FEC2E0 /* Info.plist */; };
F9A412C89999CAD9DE4B8A500E7BF458 /* OAuth2Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 730F214A5950A57CA43169E77B35FB3B /* OAuth2Result.swift */; };
FA2BB28231346DB79D1CD59CC7F21810 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FD841937CDE1B47BE56B0B77A73AD71 /* Foundation.framework */; };
FF1A0FF43629BDEED04E16E0F00D065D /* afterlife.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF52D452D72EF81C1A4A1B4DBDFC452A /* afterlife.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
0E992A4FCD21160789D61FBEAFFFC9DB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 92DA3506987AF13A373B11C678544EA4;
remoteInfo = PromiseKit;
};
1712D8397B6BE061B3EDB28A4FE7B945 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AAB1C768E86CAC635CECDF0F5274D77B;
remoteInfo = SwiftlySalesforce;
};
5C44869635CFA34682A99270A1349B7C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 92DA3506987AF13A373B11C678544EA4;
remoteInfo = PromiseKit;
};
656FF4AAD8926F707A92E29D3F220277 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AAB1C768E86CAC635CECDF0F5274D77B;
remoteInfo = SwiftlySalesforce;
};
EC7087D42DE278E5CCA4E76ABB8650DE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 92DA3506987AF13A373B11C678544EA4;
remoteInfo = PromiseKit;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
01FE4B605FCF6F5D282413F2C6FEDFD4 /* AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AnyPromise.h; path = Sources/AnyPromise.h; sourceTree = "<group>"; };
0D38D8F361C611EFCFF57DC13B115F3A /* when.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = when.m; path = Sources/when.m; sourceTree = "<group>"; };
0D8F25817235857AE113B60CE73F1492 /* PromiseKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PromiseKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
10B1EE3F89FE7038D223ECD94586286A /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = SwiftlySalesforce/Classes/Error.swift; sourceTree = "<group>"; };
111CB544691468816DDF3F8D46424552 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
132C0A411E28D952B6DD7C8805318C45 /* Pods-SwiftlySalesforce_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftlySalesforce_Tests-frameworks.sh"; sourceTree = "<group>"; };
1653E73710988AE5AAFFE3CFAEABF5CE /* Pods-SwiftlySalesforce_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftlySalesforce_Example-frameworks.sh"; sourceTree = "<group>"; };
1C97F79F78AA0533197902BDCE42DB61 /* Pods-SwiftlySalesforce_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftlySalesforce_Tests.release.xcconfig"; sourceTree = "<group>"; };
1DBBCF038A033FBF591B05C0FA593946 /* GlobalState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GlobalState.m; path = Sources/GlobalState.m; sourceTree = "<group>"; };
1E33654BE09E7109A0FEEE76E49BF8E0 /* NSTask+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSTask+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSTask+AnyPromise.m"; sourceTree = "<group>"; };
1E4C91B7A8094419B62827815C18F6CD /* Requestor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Requestor.swift; path = SwiftlySalesforce/Classes/Requestor.swift; sourceTree = "<group>"; };
1F8E1A3E7CD003E0E426E6F234894319 /* SwiftlySalesforce-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftlySalesforce-umbrella.h"; sourceTree = "<group>"; };
21101430B4B9E8355E61DB626C74BE67 /* Address.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Address.swift; path = SwiftlySalesforce/Classes/Address.swift; sourceTree = "<group>"; };
294026AB8B28C610FC57DF2A26EB7FC9 /* NSNotificationCenter+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSNotificationCenter+Promise.swift"; path = "Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift"; sourceTree = "<group>"; };
2C6823BF3BB1566E1F8C86FABE5F23DA /* wrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = wrap.swift; path = Sources/wrap.swift; sourceTree = "<group>"; };
2D49905E482CDBF56BA92B7D12750F1B /* Pods-SwiftlySalesforce_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftlySalesforce_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
2E9EA9DFC6713E32517DE556D7C6DDD5 /* SwiftlySalesforce.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = SwiftlySalesforce.modulemap; sourceTree = "<group>"; };
2EAC134A0EE2C5779B3CFE3285948682 /* OAuth2ResultStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2ResultStore.swift; path = SwiftlySalesforce/Classes/OAuth2ResultStore.swift; sourceTree = "<group>"; };
2F69B3BD58D36BF47FE1AE28865E5B55 /* ObjectMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectMetadata.swift; path = SwiftlySalesforce/Classes/ObjectMetadata.swift; sourceTree = "<group>"; };
337F0663F2253CE5F69CA018CA7C90D8 /* NSURLSession+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSURLSession+Promise.swift"; path = "Extensions/Foundation/Sources/NSURLSession+Promise.swift"; sourceTree = "<group>"; };
37D86DBB6A7B7F77D79F889CEBC3755E /* CALayer+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+AnyPromise.h"; path = "Extensions/QuartzCore/Sources/CALayer+AnyPromise.h"; sourceTree = "<group>"; };
386966432BF6E5420D59BFDB62E7336F /* Globals.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Globals.swift; path = SwiftlySalesforce/Classes/Globals.swift; sourceTree = "<group>"; };
39E4B04F4D27967A73EB968598FEC2E0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = SwiftlySalesforce/Classes/Info.plist; sourceTree = "<group>"; };
3D8C2DDC09A2F5FF7FC82E8881A3996B /* URLDataPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLDataPromise.swift; path = Extensions/Foundation/Sources/URLDataPromise.swift; sourceTree = "<group>"; };
41BE05D1B6D9DB09085F5D597DF8FCF4 /* PromiseKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromiseKit-umbrella.h"; sourceTree = "<group>"; };
4212FBE5112A86EA090A636CE6EA59B6 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = Sources/Error.swift; sourceTree = "<group>"; };
4313A271CAA435980D2E1ADAB3688D9A /* Pods_SwiftlySalesforce_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SwiftlySalesforce_Tests.framework; path = "Pods-SwiftlySalesforce_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
4612AC265754D49881097DC6123EB867 /* Pods-SwiftlySalesforce_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-SwiftlySalesforce_Example.modulemap"; sourceTree = "<group>"; };
4DA6E134C76529B40DFA2E3E35597CB7 /* Pods-SwiftlySalesforce_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftlySalesforce_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
4E0B0795D4CC1B35FA39436D5052DCFB /* Zalgo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zalgo.swift; path = Sources/Zalgo.swift; sourceTree = "<group>"; };
54C39BADD02D2D468DEAF123E98BC977 /* QueryResult.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QueryResult.swift; path = SwiftlySalesforce/Classes/QueryResult.swift; sourceTree = "<group>"; };
57726273156A5128C5F0A0E73BED8670 /* Pods-SwiftlySalesforce_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftlySalesforce_Tests-umbrella.h"; sourceTree = "<group>"; };
5940879EC2ED3D4C4A4ED5D69BBA7E4D /* ConnectedApp.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectedApp.swift; path = SwiftlySalesforce/Classes/ConnectedApp.swift; sourceTree = "<group>"; };
5A354D447018D0A387E1CBD6A2E8AFD3 /* Pods-SwiftlySalesforce_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-SwiftlySalesforce_Tests.modulemap"; sourceTree = "<group>"; };
5F693D3AB8FF05B12E4C9A5D109FD6B6 /* LoginDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoginDelegate.swift; path = SwiftlySalesforce/Classes/LoginDelegate.swift; sourceTree = "<group>"; };
5FD841937CDE1B47BE56B0B77A73AD71 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
6087A2D7E5B8BF74DFE5F84C2E2C53F4 /* Pods-SwiftlySalesforce_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftlySalesforce_Example.debug.xcconfig"; sourceTree = "<group>"; };
6179271256B847F0ECC0222967A3CAA1 /* Promise+Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Properties.swift"; path = "Sources/Promise+Properties.swift"; sourceTree = "<group>"; };
633F0B04323882A67E03C84384FC9203 /* PromiseKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromiseKit.xcconfig; sourceTree = "<group>"; };
638FC877C26AE2698B03F57C63A5C636 /* NSNotificationCenter+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNotificationCenter+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h"; sourceTree = "<group>"; };
643BD4B58C3CA1D7646BE8722E792EE6 /* Salesforce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Salesforce.swift; path = SwiftlySalesforce/Classes/Salesforce.swift; sourceTree = "<group>"; };
647132F3F2E8752B2E96A1DC7747B992 /* hang.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = hang.m; path = Sources/hang.m; sourceTree = "<group>"; };
67E1D36DCB7BF8A7DEB230733B158119 /* PMKQuartzCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PMKQuartzCore.h; path = Extensions/QuartzCore/Sources/PMKQuartzCore.h; sourceTree = "<group>"; };
6B0D47E5304C9936432177D46CCA0C64 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6B7B97DBEF2B7618554E6D9AB143DFAA /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Sources/Promise.swift; sourceTree = "<group>"; };
6BC12AFE99B77CB52D0B4DA4E2AF29A7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6BFEEA2655D457CD372ADE73420464B7 /* Organization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Organization.swift; path = SwiftlySalesforce/Classes/Organization.swift; sourceTree = "<group>"; };
6F48B3970DAE9346AD3FA54A3A613328 /* CALayer+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+AnyPromise.m"; path = "Extensions/QuartzCore/Sources/CALayer+AnyPromise.m"; sourceTree = "<group>"; };
7307E7A48A7523AE477711BA4DF908C9 /* UIView+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Promise.swift"; path = "Extensions/UIKit/Sources/UIView+Promise.swift"; sourceTree = "<group>"; };
730F214A5950A57CA43169E77B35FB3B /* OAuth2Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Result.swift; path = SwiftlySalesforce/Classes/OAuth2Result.swift; sourceTree = "<group>"; };
756A950D7B46C7255AD774467E8CF449 /* Limit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Limit.swift; path = SwiftlySalesforce/Classes/Limit.swift; sourceTree = "<group>"; };
75DDA3B7802EC385DC6B66F933A29794 /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = SwiftlySalesforce/Classes/Resource.swift; sourceTree = "<group>"; };
765DEE6E8D8C524E9695A1C7726AB582 /* UIView+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+AnyPromise.h"; path = "Extensions/UIKit/Sources/UIView+AnyPromise.h"; sourceTree = "<group>"; };
7A2B3D19404B7C7A8014B95D5977B946 /* UIView+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+AnyPromise.m"; path = "Extensions/UIKit/Sources/UIView+AnyPromise.m"; sourceTree = "<group>"; };
7B1EC75F3F631688BE467D62877D90CD /* UIViewController+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+AnyPromise.h"; path = "Extensions/UIKit/Sources/UIViewController+AnyPromise.h"; sourceTree = "<group>"; };
7CCDD0F4DEC7B45ED67BDA259AA0495C /* AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AnyPromise.m; path = Sources/AnyPromise.m; sourceTree = "<group>"; };
7D29D2F64D48281095C8274FEE6DACD0 /* when.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = when.swift; path = Sources/when.swift; sourceTree = "<group>"; };
7E43CFF6D7A6E68F617343E7F43D0A70 /* Process+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Process+Promise.swift"; path = "Extensions/Foundation/Sources/Process+Promise.swift"; sourceTree = "<group>"; };
7ECC37AD751B437BDA4073A962D780C4 /* PromiseKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromiseKit.framework; path = PromiseKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7FAE3B541056E3495362EF0C5DDB405B /* UIViewController+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+Promise.swift"; path = "Extensions/UIKit/Sources/UIViewController+Promise.swift"; sourceTree = "<group>"; };
87842A8D4029BA63F7E53FAF02C95DEC /* Pods-SwiftlySalesforce_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftlySalesforce_Example-dummy.m"; sourceTree = "<group>"; };
8B466B05472EB0622B614100335137E4 /* Pods-SwiftlySalesforce_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftlySalesforce_Tests-resources.sh"; sourceTree = "<group>"; };
9110B36ABB3163CA6094B6D5107AC1C0 /* Pods-SwiftlySalesforce_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftlySalesforce_Tests.debug.xcconfig"; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
93A597FF115BC464AE019725893D4033 /* Pods-SwiftlySalesforce_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftlySalesforce_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
95632F4C8D15D6CF8EE867952FA69262 /* PMKUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PMKUIKit.h; path = Extensions/UIKit/Sources/PMKUIKit.h; sourceTree = "<group>"; };
95739ECC732A6332E68750FE3F7489A4 /* Promise+AnyPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+AnyPromise.swift"; path = "Sources/Promise+AnyPromise.swift"; sourceTree = "<group>"; };
95DEEF09AD31315EC2776080269E92B7 /* race.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = race.swift; path = Sources/race.swift; sourceTree = "<group>"; };
9696FB863D0DE618F5B3684606228A4A /* NSURLSession+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSURLSession+AnyPromise.h"; sourceTree = "<group>"; };
97A9B7857BB154507F020FDFC1EBB31C /* join.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = join.m; path = Sources/join.m; sourceTree = "<group>"; };
9D009A35EE64D77102391EC364147766 /* PMKFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PMKFoundation.h; path = Extensions/Foundation/Sources/PMKFoundation.h; sourceTree = "<group>"; };
9F2FDED14CB3DD99816A620273C03F1D /* SwiftlySalesforce-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftlySalesforce-prefix.pch"; sourceTree = "<group>"; };
A781E6C7BA06DD8A0A80B0494DA26A4E /* NSTask+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSTask+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSTask+AnyPromise.h"; sourceTree = "<group>"; };
A9573AF375E3182D12971ABD2EE6DD3A /* Pods-SwiftlySalesforce_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftlySalesforce_Example-umbrella.h"; sourceTree = "<group>"; };
A9F82E67A30841B8EA38FFE9317D477D /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
B660E1F4E80FD3F4BF33455CD40AA754 /* after.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = after.swift; path = Sources/after.swift; sourceTree = "<group>"; };
B7AD16F573EF2C536F2A0B55787FE6F2 /* Keychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keychain.swift; path = SwiftlySalesforce/Classes/Keychain.swift; sourceTree = "<group>"; };
B8C33DE2489F33F9FE2631C66A4B695A /* PicklistItemMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PicklistItemMetadata.swift; path = SwiftlySalesforce/Classes/PicklistItemMetadata.swift; sourceTree = "<group>"; };
BBE50D467C49DFDB1B622121D9CA22E9 /* Pods-SwiftlySalesforce_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftlySalesforce_Example-resources.sh"; sourceTree = "<group>"; };
BD8EEC210981A388DDF8ECCEF8433904 /* NSObject+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Promise.swift"; path = "Extensions/Foundation/Sources/NSObject+Promise.swift"; sourceTree = "<group>"; };
BFFA858C2DB288BB308A48DC5193E6F1 /* PMKAlertController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PMKAlertController.swift; path = Extensions/UIKit/Sources/PMKAlertController.swift; sourceTree = "<group>"; };
C483AA844F377C878ADDEE640F258CCE /* Record.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Record.swift; path = SwiftlySalesforce/Classes/Record.swift; sourceTree = "<group>"; };
C54315DA3A1A39E54691EB5C6921A90C /* after.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = after.m; path = Sources/after.m; sourceTree = "<group>"; };
C75F5106CF2E74A67689DE4BE2044812 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C7CBB199268ECD486A5581F432401AB3 /* SwiftlySalesforce-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftlySalesforce-dummy.m"; sourceTree = "<group>"; };
C8F00C84885846D7FA9A83F7C73400FC /* SwiftlySalesforce.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftlySalesforce.xcconfig; sourceTree = "<group>"; };
CB5F4A276E2678B6049F2F139147EC12 /* NSNotificationCenter+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSNotificationCenter+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.m"; sourceTree = "<group>"; };
CD3E0B0C7B18E5747ECDC5A8EF6F5F16 /* Identity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Identity.swift; path = SwiftlySalesforce/Classes/Identity.swift; sourceTree = "<group>"; };
D5411198DE5F6393F23FA9B8C64F87E3 /* FieldMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FieldMetadata.swift; path = SwiftlySalesforce/Classes/FieldMetadata.swift; sourceTree = "<group>"; };
D64224D037D7DA354E196E34EE6EF080 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
D9B468F428AC55896FEC0D8C3A1181AC /* NSURLSession+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSURLSession+AnyPromise.m"; sourceTree = "<group>"; };
DB6F691A801D32620ED501B0C3559FA9 /* PromiseKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = PromiseKit.modulemap; sourceTree = "<group>"; };
DDD911A7C16FAA09302EE0DF2F0B0DA9 /* PromiseKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromiseKit-dummy.m"; sourceTree = "<group>"; };
DE1F16648A7B55D15BED16EC48C06644 /* PromiseKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PromiseKit.h; path = Sources/PromiseKit.h; sourceTree = "<group>"; };
DF52D452D72EF81C1A4A1B4DBDFC452A /* afterlife.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = afterlife.swift; path = Extensions/Foundation/Sources/afterlife.swift; sourceTree = "<group>"; };
E59739BA1D2420165DD40F8FEAD47AE0 /* Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Extensions.swift; path = SwiftlySalesforce/Classes/Extensions.swift; sourceTree = "<group>"; };
E7480BAB29A5573D40EBF6E02381C1E2 /* UIViewController+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+AnyPromise.m"; path = "Extensions/UIKit/Sources/UIViewController+AnyPromise.m"; sourceTree = "<group>"; };
E9A5586A6499C102D0BCC9DC96EF7F49 /* join.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = join.swift; path = Sources/join.swift; sourceTree = "<group>"; };
EBA0823419954654E89B5C0D270F4FD2 /* SwiftlySalesforce.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwiftlySalesforce.framework; path = SwiftlySalesforce.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EE45835539718AE1F15F89B7FC69541F /* Pods_SwiftlySalesforce_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SwiftlySalesforce_Example.framework; path = "Pods-SwiftlySalesforce_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
EE9A7EF9C115E41D052ADAEF5E87EFD1 /* State.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = State.swift; path = Sources/State.swift; sourceTree = "<group>"; };
F3AF2875741DFD0921E7E1FF67859289 /* dispatch_promise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dispatch_promise.m; path = Sources/dispatch_promise.m; sourceTree = "<group>"; };
F4CF4078C61D5915909A37150326F225 /* Pods-SwiftlySalesforce_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftlySalesforce_Example.release.xcconfig"; sourceTree = "<group>"; };
F6300B2B83011D43128DA44649586D4A /* fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fwd.h; path = Sources/fwd.h; sourceTree = "<group>"; };
F7F70C8A8907CB1B38DF4EA918BDA8CE /* Pods-SwiftlySalesforce_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftlySalesforce_Example-acknowledgements.plist"; sourceTree = "<group>"; };
F845E54F1F99FA83765AE21DEBBED993 /* DispatchQueue+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Promise.swift"; path = "Sources/DispatchQueue+Promise.swift"; sourceTree = "<group>"; };
FB5E85CCDC82593A54E6A9AA5AD8482E /* PromiseKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromiseKit-prefix.pch"; sourceTree = "<group>"; };
FBB66AF919CD6FC604DE59A52A6C0A84 /* Pods-SwiftlySalesforce_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftlySalesforce_Tests-dummy.m"; sourceTree = "<group>"; };
FD987AB706C5E3C09C4B93C7F9F25E23 /* AnyPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyPromise.swift; path = Sources/AnyPromise.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8EE86A9EC356DE93805867ED6A29E52F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
42A1E2FF7C59E63595E7491F08019DB0 /* Foundation.framework in Frameworks */,
BADD121124019E6013903CFE781BC52F /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
AD0944BE824D19232880C573F7C81A2D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FA2BB28231346DB79D1CD59CC7F21810 /* Foundation.framework in Frameworks */,
F58CDFACE10E0D7AC0F73D7DB94572EF /* QuartzCore.framework in Frameworks */,
3A0C9F17670659A7531599975E17D074 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C7D7417F31986C17C9EC8EC4A08780F1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
37DE760989307958C5C1AD300CADED96 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
EA3F8E343C087F4B5482D57D0CEB25E2 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0974B9858A7323328C86D6B466BF7507 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0235FC82EAE8FA51427A0CE45403285B /* Targets Support Files */ = {
isa = PBXGroup;
children = (
51EC4068CFD783375D40BE89564A5D8D /* Pods-SwiftlySalesforce_Example */,
1AE8B77C97F2BF83326FFFD446FF1483 /* Pods-SwiftlySalesforce_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
1AE8B77C97F2BF83326FFFD446FF1483 /* Pods-SwiftlySalesforce_Tests */ = {
isa = PBXGroup;
children = (
6BC12AFE99B77CB52D0B4DA4E2AF29A7 /* Info.plist */,
5A354D447018D0A387E1CBD6A2E8AFD3 /* Pods-SwiftlySalesforce_Tests.modulemap */,
4DA6E134C76529B40DFA2E3E35597CB7 /* Pods-SwiftlySalesforce_Tests-acknowledgements.markdown */,
2D49905E482CDBF56BA92B7D12750F1B /* Pods-SwiftlySalesforce_Tests-acknowledgements.plist */,
FBB66AF919CD6FC604DE59A52A6C0A84 /* Pods-SwiftlySalesforce_Tests-dummy.m */,
132C0A411E28D952B6DD7C8805318C45 /* Pods-SwiftlySalesforce_Tests-frameworks.sh */,
8B466B05472EB0622B614100335137E4 /* Pods-SwiftlySalesforce_Tests-resources.sh */,
57726273156A5128C5F0A0E73BED8670 /* Pods-SwiftlySalesforce_Tests-umbrella.h */,
9110B36ABB3163CA6094B6D5107AC1C0 /* Pods-SwiftlySalesforce_Tests.debug.xcconfig */,
1C97F79F78AA0533197902BDCE42DB61 /* Pods-SwiftlySalesforce_Tests.release.xcconfig */,
);
name = "Pods-SwiftlySalesforce_Tests";
path = "Target Support Files/Pods-SwiftlySalesforce_Tests";
sourceTree = "<group>";
};
38908CA03A120B329909CCDB1910CD05 /* PromiseKit */ = {
isa = PBXGroup;
children = (
BEC810B523A4354244D3ECE1495125F2 /* CorePromise */,
6D148CD65D2A2774D613EDC0E3F45F27 /* Foundation */,
D731C6A1D43A1A4020D48CE568AB19B9 /* QuartzCore */,
BC3601AD5BED07DF695ECC52C0E11BB1 /* Support Files */,
F9C1C38E536FD710388B234B7D8FA163 /* UIKit */,
);
name = PromiseKit;
path = PromiseKit;
sourceTree = "<group>";
};
51EC4068CFD783375D40BE89564A5D8D /* Pods-SwiftlySalesforce_Example */ = {
isa = PBXGroup;
children = (
6B0D47E5304C9936432177D46CCA0C64 /* Info.plist */,
4612AC265754D49881097DC6123EB867 /* Pods-SwiftlySalesforce_Example.modulemap */,
93A597FF115BC464AE019725893D4033 /* Pods-SwiftlySalesforce_Example-acknowledgements.markdown */,
F7F70C8A8907CB1B38DF4EA918BDA8CE /* Pods-SwiftlySalesforce_Example-acknowledgements.plist */,
87842A8D4029BA63F7E53FAF02C95DEC /* Pods-SwiftlySalesforce_Example-dummy.m */,
1653E73710988AE5AAFFE3CFAEABF5CE /* Pods-SwiftlySalesforce_Example-frameworks.sh */,
BBE50D467C49DFDB1B622121D9CA22E9 /* Pods-SwiftlySalesforce_Example-resources.sh */,
A9573AF375E3182D12971ABD2EE6DD3A /* Pods-SwiftlySalesforce_Example-umbrella.h */,
6087A2D7E5B8BF74DFE5F84C2E2C53F4 /* Pods-SwiftlySalesforce_Example.debug.xcconfig */,
F4CF4078C61D5915909A37150326F225 /* Pods-SwiftlySalesforce_Example.release.xcconfig */,
);
name = "Pods-SwiftlySalesforce_Example";
path = "Target Support Files/Pods-SwiftlySalesforce_Example";
sourceTree = "<group>";
};
6B30F79F4B6F7FB55CF1D65853767CAA /* Support Files */ = {
isa = PBXGroup;
children = (
D64224D037D7DA354E196E34EE6EF080 /* Info.plist */,
2E9EA9DFC6713E32517DE556D7C6DDD5 /* SwiftlySalesforce.modulemap */,
C8F00C84885846D7FA9A83F7C73400FC /* SwiftlySalesforce.xcconfig */,
C7CBB199268ECD486A5581F432401AB3 /* SwiftlySalesforce-dummy.m */,
9F2FDED14CB3DD99816A620273C03F1D /* SwiftlySalesforce-prefix.pch */,
1F8E1A3E7CD003E0E426E6F234894319 /* SwiftlySalesforce-umbrella.h */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/SwiftlySalesforce";
sourceTree = "<group>";
};
6D148CD65D2A2774D613EDC0E3F45F27 /* Foundation */ = {
isa = PBXGroup;
children = (
DF52D452D72EF81C1A4A1B4DBDFC452A /* afterlife.swift */,
638FC877C26AE2698B03F57C63A5C636 /* NSNotificationCenter+AnyPromise.h */,
CB5F4A276E2678B6049F2F139147EC12 /* NSNotificationCenter+AnyPromise.m */,
294026AB8B28C610FC57DF2A26EB7FC9 /* NSNotificationCenter+Promise.swift */,
BD8EEC210981A388DDF8ECCEF8433904 /* NSObject+Promise.swift */,
A781E6C7BA06DD8A0A80B0494DA26A4E /* NSTask+AnyPromise.h */,
1E33654BE09E7109A0FEEE76E49BF8E0 /* NSTask+AnyPromise.m */,
9696FB863D0DE618F5B3684606228A4A /* NSURLSession+AnyPromise.h */,
D9B468F428AC55896FEC0D8C3A1181AC /* NSURLSession+AnyPromise.m */,
337F0663F2253CE5F69CA018CA7C90D8 /* NSURLSession+Promise.swift */,
9D009A35EE64D77102391EC364147766 /* PMKFoundation.h */,
7E43CFF6D7A6E68F617343E7F43D0A70 /* Process+Promise.swift */,
3D8C2DDC09A2F5FF7FC82E8881A3996B /* URLDataPromise.swift */,
);
name = Foundation;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
8BD5914E9AEDB0FFD828134F78E30D29 /* Development Pods */,
88C6DB8A0F66453A47EC75CAF7D03594 /* Frameworks */,
9BC2F6B1CCEF88766C020D4B57771407 /* Pods */,
A834EF8B50CE6513264ECFD8560EB500 /* Products */,
0235FC82EAE8FA51427A0CE45403285B /* Targets Support Files */,
);
sourceTree = "<group>";
};
83D059F352DAB3399DB4BFAC983FB109 /* iOS */ = {
isa = PBXGroup;
children = (
5FD841937CDE1B47BE56B0B77A73AD71 /* Foundation.framework */,
111CB544691468816DDF3F8D46424552 /* QuartzCore.framework */,
A9F82E67A30841B8EA38FFE9317D477D /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
88C6DB8A0F66453A47EC75CAF7D03594 /* Frameworks */ = {
isa = PBXGroup;
children = (
0D8F25817235857AE113B60CE73F1492 /* PromiseKit.framework */,
83D059F352DAB3399DB4BFAC983FB109 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
8BD5914E9AEDB0FFD828134F78E30D29 /* Development Pods */ = {
isa = PBXGroup;
children = (
A94E0F7D5CF4D65A239342D4175F27D9 /* SwiftlySalesforce */,
);
name = "Development Pods";
sourceTree = "<group>";
};
9BC2F6B1CCEF88766C020D4B57771407 /* Pods */ = {
isa = PBXGroup;
children = (
38908CA03A120B329909CCDB1910CD05 /* PromiseKit */,
);
name = Pods;
sourceTree = "<group>";
};
A834EF8B50CE6513264ECFD8560EB500 /* Products */ = {
isa = PBXGroup;
children = (
EE45835539718AE1F15F89B7FC69541F /* Pods_SwiftlySalesforce_Example.framework */,
4313A271CAA435980D2E1ADAB3688D9A /* Pods_SwiftlySalesforce_Tests.framework */,
7ECC37AD751B437BDA4073A962D780C4 /* PromiseKit.framework */,
EBA0823419954654E89B5C0D270F4FD2 /* SwiftlySalesforce.framework */,
);
name = Products;
sourceTree = "<group>";
};
A94E0F7D5CF4D65A239342D4175F27D9 /* SwiftlySalesforce */ = {
isa = PBXGroup;
children = (
21101430B4B9E8355E61DB626C74BE67 /* Address.swift */,
5940879EC2ED3D4C4A4ED5D69BBA7E4D /* ConnectedApp.swift */,
10B1EE3F89FE7038D223ECD94586286A /* Error.swift */,
E59739BA1D2420165DD40F8FEAD47AE0 /* Extensions.swift */,
D5411198DE5F6393F23FA9B8C64F87E3 /* FieldMetadata.swift */,
386966432BF6E5420D59BFDB62E7336F /* Globals.swift */,
CD3E0B0C7B18E5747ECDC5A8EF6F5F16 /* Identity.swift */,
39E4B04F4D27967A73EB968598FEC2E0 /* Info.plist */,
B7AD16F573EF2C536F2A0B55787FE6F2 /* Keychain.swift */,
756A950D7B46C7255AD774467E8CF449 /* Limit.swift */,
5F693D3AB8FF05B12E4C9A5D109FD6B6 /* LoginDelegate.swift */,
730F214A5950A57CA43169E77B35FB3B /* OAuth2Result.swift */,
2EAC134A0EE2C5779B3CFE3285948682 /* OAuth2ResultStore.swift */,
2F69B3BD58D36BF47FE1AE28865E5B55 /* ObjectMetadata.swift */,
6BFEEA2655D457CD372ADE73420464B7 /* Organization.swift */,
B8C33DE2489F33F9FE2631C66A4B695A /* PicklistItemMetadata.swift */,
54C39BADD02D2D468DEAF123E98BC977 /* QueryResult.swift */,
C483AA844F377C878ADDEE640F258CCE /* Record.swift */,
1E4C91B7A8094419B62827815C18F6CD /* Requestor.swift */,
75DDA3B7802EC385DC6B66F933A29794 /* Resource.swift */,
643BD4B58C3CA1D7646BE8722E792EE6 /* Salesforce.swift */,
6B30F79F4B6F7FB55CF1D65853767CAA /* Support Files */,
);
name = SwiftlySalesforce;
path = ../..;
sourceTree = "<group>";
};
BC3601AD5BED07DF695ECC52C0E11BB1 /* Support Files */ = {
isa = PBXGroup;
children = (
C75F5106CF2E74A67689DE4BE2044812 /* Info.plist */,
DB6F691A801D32620ED501B0C3559FA9 /* PromiseKit.modulemap */,
633F0B04323882A67E03C84384FC9203 /* PromiseKit.xcconfig */,
DDD911A7C16FAA09302EE0DF2F0B0DA9 /* PromiseKit-dummy.m */,
FB5E85CCDC82593A54E6A9AA5AD8482E /* PromiseKit-prefix.pch */,
41BE05D1B6D9DB09085F5D597DF8FCF4 /* PromiseKit-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/PromiseKit";
sourceTree = "<group>";
};
BEC810B523A4354244D3ECE1495125F2 /* CorePromise */ = {
isa = PBXGroup;
children = (
C54315DA3A1A39E54691EB5C6921A90C /* after.m */,
B660E1F4E80FD3F4BF33455CD40AA754 /* after.swift */,
01FE4B605FCF6F5D282413F2C6FEDFD4 /* AnyPromise.h */,
7CCDD0F4DEC7B45ED67BDA259AA0495C /* AnyPromise.m */,
FD987AB706C5E3C09C4B93C7F9F25E23 /* AnyPromise.swift */,
F3AF2875741DFD0921E7E1FF67859289 /* dispatch_promise.m */,
F845E54F1F99FA83765AE21DEBBED993 /* DispatchQueue+Promise.swift */,
4212FBE5112A86EA090A636CE6EA59B6 /* Error.swift */,
F6300B2B83011D43128DA44649586D4A /* fwd.h */,
1DBBCF038A033FBF591B05C0FA593946 /* GlobalState.m */,
647132F3F2E8752B2E96A1DC7747B992 /* hang.m */,
97A9B7857BB154507F020FDFC1EBB31C /* join.m */,
E9A5586A6499C102D0BCC9DC96EF7F49 /* join.swift */,
6B7B97DBEF2B7618554E6D9AB143DFAA /* Promise.swift */,
95739ECC732A6332E68750FE3F7489A4 /* Promise+AnyPromise.swift */,
6179271256B847F0ECC0222967A3CAA1 /* Promise+Properties.swift */,
DE1F16648A7B55D15BED16EC48C06644 /* PromiseKit.h */,
95DEEF09AD31315EC2776080269E92B7 /* race.swift */,
EE9A7EF9C115E41D052ADAEF5E87EFD1 /* State.swift */,
0D38D8F361C611EFCFF57DC13B115F3A /* when.m */,
7D29D2F64D48281095C8274FEE6DACD0 /* when.swift */,
2C6823BF3BB1566E1F8C86FABE5F23DA /* wrap.swift */,
4E0B0795D4CC1B35FA39436D5052DCFB /* Zalgo.swift */,
);
name = CorePromise;
sourceTree = "<group>";
};
D731C6A1D43A1A4020D48CE568AB19B9 /* QuartzCore */ = {
isa = PBXGroup;
children = (
37D86DBB6A7B7F77D79F889CEBC3755E /* CALayer+AnyPromise.h */,
6F48B3970DAE9346AD3FA54A3A613328 /* CALayer+AnyPromise.m */,
67E1D36DCB7BF8A7DEB230733B158119 /* PMKQuartzCore.h */,
);
name = QuartzCore;
sourceTree = "<group>";
};
F9C1C38E536FD710388B234B7D8FA163 /* UIKit */ = {
isa = PBXGroup;
children = (
BFFA858C2DB288BB308A48DC5193E6F1 /* PMKAlertController.swift */,
95632F4C8D15D6CF8EE867952FA69262 /* PMKUIKit.h */,
765DEE6E8D8C524E9695A1C7726AB582 /* UIView+AnyPromise.h */,
7A2B3D19404B7C7A8014B95D5977B946 /* UIView+AnyPromise.m */,
7307E7A48A7523AE477711BA4DF908C9 /* UIView+Promise.swift */,
7B1EC75F3F631688BE467D62877D90CD /* UIViewController+AnyPromise.h */,
E7480BAB29A5573D40EBF6E02381C1E2 /* UIViewController+AnyPromise.m */,
7FAE3B541056E3495362EF0C5DDB405B /* UIViewController+Promise.swift */,
);
name = UIKit;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
160BC36444663F1A98AB4DE979EB7F2C /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
1F6A87C85BA9918ECE527C27DCC9BDC4 /* Pods-SwiftlySalesforce_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2B93E8E7CF95A8B61B945130B9B54A7E /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
DB746D36FFFEBBA15A9F56415AA2D11A /* Pods-SwiftlySalesforce_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A3C579C7CD81A7E45DBDBBF69D969C96 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
D161458241B7E5CE49B8760B1455A717 /* SwiftlySalesforce-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D465703DD43DDA741298A6EFF69DD8CC /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
1B5D9AEA9B70EC40DEA9CAE1EAEAF2E9 /* AnyPromise.h in Headers */,
B5A3CBD004B0C9D05A26028EE79413BD /* CALayer+AnyPromise.h in Headers */,
E59328BF5012DE3781037AEC7E72BBDD /* fwd.h in Headers */,
6F961E7D8AF0CAF489815965A42D1F5E /* NSNotificationCenter+AnyPromise.h in Headers */,
9DEEB51B2DF0F9CEF1C8E9C717509B13 /* NSTask+AnyPromise.h in Headers */,
A27AB05EC18401FCD5AACBB71A4BA06F /* NSURLSession+AnyPromise.h in Headers */,
F15273C19DCACD981AEBB7585439E994 /* PMKFoundation.h in Headers */,
6688051181372A9D6828AE777E56B8B4 /* PMKQuartzCore.h in Headers */,
A8537B42A00F1737004858A284D07760 /* PMKUIKit.h in Headers */,
0908068C6BC34B030B6DD6A8C3C7AE6C /* PromiseKit-umbrella.h in Headers */,
ABC3AF31FE9D050913F7F77EA3138BEB /* PromiseKit.h in Headers */,
BEF1A423FF25B7B01A8C60179000D5C9 /* UIView+AnyPromise.h in Headers */,
70DECBB3C1EC9235DA0CC7D30E05BBAC /* UIViewController+AnyPromise.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
32D0E846DC09130CB1CB7B43D48C7364 /* Pods-SwiftlySalesforce_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1EF6C3A8E9CADBDCBB0288ED824EC115 /* Build configuration list for PBXNativeTarget "Pods-SwiftlySalesforce_Tests" */;
buildPhases = (
69ED86444903969D59C28060E226846D /* Sources */,
C7D7417F31986C17C9EC8EC4A08780F1 /* Frameworks */,
2B93E8E7CF95A8B61B945130B9B54A7E /* Headers */,
);
buildRules = (
);
dependencies = (
816858B40416C3C25B49B9C7805AEF6F /* PBXTargetDependency */,
61FB3BC57EDF5F817AFB21F078927952 /* PBXTargetDependency */,
);
name = "Pods-SwiftlySalesforce_Tests";
productName = "Pods-SwiftlySalesforce_Tests";
productReference = 4313A271CAA435980D2E1ADAB3688D9A /* Pods_SwiftlySalesforce_Tests.framework */;
productType = "com.apple.product-type.framework";
};
5011EC6B9EFD9EB03135021E11AA34F6 /* Pods-SwiftlySalesforce_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 378266EF6E62D0495B6B2026D4517E0F /* Build configuration list for PBXNativeTarget "Pods-SwiftlySalesforce_Example" */;
buildPhases = (
B3DE28BA4A602B7F437D81E8C5130CD6 /* Sources */,
EA3F8E343C087F4B5482D57D0CEB25E2 /* Frameworks */,
160BC36444663F1A98AB4DE979EB7F2C /* Headers */,
);
buildRules = (
);
dependencies = (
995C543D035D35C9AF64B08B2832DB4C /* PBXTargetDependency */,
417702BE9B9C7BC5830269B7C70E6CEE /* PBXTargetDependency */,
);
name = "Pods-SwiftlySalesforce_Example";
productName = "Pods-SwiftlySalesforce_Example";
productReference = EE45835539718AE1F15F89B7FC69541F /* Pods_SwiftlySalesforce_Example.framework */;
productType = "com.apple.product-type.framework";
};
92DA3506987AF13A373B11C678544EA4 /* PromiseKit */ = {
isa = PBXNativeTarget;
buildConfigurationList = 7171ADFD2866E351FBF98C228433D58B /* Build configuration list for PBXNativeTarget "PromiseKit" */;
buildPhases = (
E0E670C0F80B0842FB8BBC526AE281BA /* Sources */,
AD0944BE824D19232880C573F7C81A2D /* Frameworks */,
D465703DD43DDA741298A6EFF69DD8CC /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = PromiseKit;
productName = PromiseKit;
productReference = 7ECC37AD751B437BDA4073A962D780C4 /* PromiseKit.framework */;
productType = "com.apple.product-type.framework";
};
AAB1C768E86CAC635CECDF0F5274D77B /* SwiftlySalesforce */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0B434F43C48F8528E92A1F6BCFDDA73E /* Build configuration list for PBXNativeTarget "SwiftlySalesforce" */;
buildPhases = (
43B6CD779FE025CB7DED4F72F0AD0C7A /* Sources */,
8EE86A9EC356DE93805867ED6A29E52F /* Frameworks */,
A3C579C7CD81A7E45DBDBBF69D969C96 /* Headers */,
);
buildRules = (
);
dependencies = (
8C5ED6973CBF4900B214372C29433A35 /* PBXTargetDependency */,
);
name = SwiftlySalesforce;
productName = SwiftlySalesforce;
productReference = EBA0823419954654E89B5C0D270F4FD2 /* SwiftlySalesforce.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0830;
LastUpgradeCheck = 0700;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = A834EF8B50CE6513264ECFD8560EB500 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
5011EC6B9EFD9EB03135021E11AA34F6 /* Pods-SwiftlySalesforce_Example */,
32D0E846DC09130CB1CB7B43D48C7364 /* Pods-SwiftlySalesforce_Tests */,
92DA3506987AF13A373B11C678544EA4 /* PromiseKit */,
AAB1C768E86CAC635CECDF0F5274D77B /* SwiftlySalesforce */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
43B6CD779FE025CB7DED4F72F0AD0C7A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
862BD3A08EEC617E88E3F34F04EF55C8 /* Address.swift in Sources */,
8E50638C8D049100D46B8AF5A51A2D49 /* ConnectedApp.swift in Sources */,
468344D48B2BDE155159FD9AB61AB0A7 /* Error.swift in Sources */,
D1F588B0F22D41F83EC5904FD31B04A2 /* Extensions.swift in Sources */,
D283BD069CD6E20143197BE453743708 /* FieldMetadata.swift in Sources */,
69CD6E97F68A9616C1FB1BE7446DA234 /* Globals.swift in Sources */,
F1BDA51BCAE33859C41801698D43D620 /* Identity.swift in Sources */,
F6BA37AA7B8C8B55C59B197710A300DE /* Info.plist in Sources */,
413B165B2D123CAA5F8D118DFB7E7098 /* Keychain.swift in Sources */,
1E76B9240C00AF3EFAEA647384577B9E /* Limit.swift in Sources */,
068211EDB78F9EA81710C143E4643B5C /* LoginDelegate.swift in Sources */,
F9A412C89999CAD9DE4B8A500E7BF458 /* OAuth2Result.swift in Sources */,
6385CD73C4E7C34B8144FBB6AF0706E0 /* OAuth2ResultStore.swift in Sources */,
004D9393991645F7D0DA37327CD39047 /* ObjectMetadata.swift in Sources */,
28C6910433C74B40344C73B111E38AA8 /* Organization.swift in Sources */,
26A45E19C76736F9FE0AEB77C18748AD /* PicklistItemMetadata.swift in Sources */,
771824DEA14CCC8EDFE998F864A5DB86 /* QueryResult.swift in Sources */,
28B8404603FC01A86B362C5569FE15D7 /* Record.swift in Sources */,
59A0F77FA367583DA52F89CF58C95CA2 /* Requestor.swift in Sources */,
C0B0C68EA9132075801FAFBAFC15784A /* Resource.swift in Sources */,
645FFC638C95C471B073EC2F5CF5DB95 /* Salesforce.swift in Sources */,
633238B93DC394FD49EF5A4F5CBC4476 /* SwiftlySalesforce-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
69ED86444903969D59C28060E226846D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
751B60CAA6E758C0AE7912AA3B8BEA2E /* Pods-SwiftlySalesforce_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B3DE28BA4A602B7F437D81E8C5130CD6 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
3BB5A16FD186BC02F73E823BAA17D87A /* Pods-SwiftlySalesforce_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E0E670C0F80B0842FB8BBC526AE281BA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C1184C779D605EB503502D2A51E1FE5D /* after.m in Sources */,
CC26A691E58D1C67506A5F3FE7F2FEA4 /* after.swift in Sources */,
FF1A0FF43629BDEED04E16E0F00D065D /* afterlife.swift in Sources */,
6097F9D309C746CBF8E9D835FCF181A1 /* AnyPromise.m in Sources */,
93F0BC61E842B039B782A8ABCCE2D113 /* AnyPromise.swift in Sources */,
F45A3D52B2218DF9F5C47F35049ABD07 /* CALayer+AnyPromise.m in Sources */,
473110C35D959FE4CF35E60F2E8E8649 /* dispatch_promise.m in Sources */,
DC8B3CECE0EBBF7172B1756CB5BF4F7E /* DispatchQueue+Promise.swift in Sources */,
996844FEB750BBE97586B1BE4D19152E /* Error.swift in Sources */,
12DCF5A46DD991305EA275485A50B55B /* GlobalState.m in Sources */,
6C720348CA5031AE1B3F4C5959D7D36D /* hang.m in Sources */,
1E15BF86746CA5CDFEEB3678CE21EA84 /* join.m in Sources */,
2C4C992A96DDEB79CDF7CE6768BF7A15 /* join.swift in Sources */,
DD55AA65DC66138994A7D73D1C58597C /* NSNotificationCenter+AnyPromise.m in Sources */,
8C7006425DC89CFD19ABF19D66F1D6AA /* NSNotificationCenter+Promise.swift in Sources */,
178B8A8BCA125EC7E18AFB5DB815C7DD /* NSObject+Promise.swift in Sources */,
19BE41FC08A9487C3617E6B763808866 /* NSTask+AnyPromise.m in Sources */,
07035C4A4773BDAB98A78C31CC2D195F /* NSURLSession+AnyPromise.m in Sources */,
818CADFEC220B9644F97ED3375C23021 /* NSURLSession+Promise.swift in Sources */,
91CB6E5BD052605152C2997A9F918766 /* PMKAlertController.swift in Sources */,
73377E16767DF71AE498158506831C23 /* Process+Promise.swift in Sources */,
EF9E06ECC1B1D6713A9573F0AD37EC53 /* Promise+AnyPromise.swift in Sources */,
3707B8C76C66A05721E65F0AC96BB916 /* Promise+Properties.swift in Sources */,
3689519A0B1792AE0AF48852F76C0E12 /* Promise.swift in Sources */,
2C2DF6CEC6D35366F545AFB52F0F87F2 /* PromiseKit-dummy.m in Sources */,
178A7F4B8A034E1A7E18032138A3E53D /* race.swift in Sources */,
AD8F244BF97CDEC57E912EDF67794C0B /* State.swift in Sources */,
9758379CA3BEB6D9C03F9C46C3C4FD81 /* UIView+AnyPromise.m in Sources */,
2D5A811D3FCA0FA54C185D2FA2C55AFE /* UIView+Promise.swift in Sources */,
92C0A175577EA57091559E02FCAA22C5 /* UIViewController+AnyPromise.m in Sources */,
48B22DC7F1C96ACB9CCCB11C30BF264F /* UIViewController+Promise.swift in Sources */,
532C81F867A3A9FC8A2CA5A89B7A16E1 /* URLDataPromise.swift in Sources */,
A6AA29B8323298578F85675BC4D9983C /* when.m in Sources */,
A1E7066450832C0CD8A5318B86FE9371 /* when.swift in Sources */,
727AB7DFC7B0D26AD1F58EEBA090CA59 /* wrap.swift in Sources */,
03826D16E71A7B7D716DE2D90CF16C4C /* Zalgo.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
417702BE9B9C7BC5830269B7C70E6CEE /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = SwiftlySalesforce;
target = AAB1C768E86CAC635CECDF0F5274D77B /* SwiftlySalesforce */;
targetProxy = 656FF4AAD8926F707A92E29D3F220277 /* PBXContainerItemProxy */;
};
61FB3BC57EDF5F817AFB21F078927952 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = SwiftlySalesforce;
target = AAB1C768E86CAC635CECDF0F5274D77B /* SwiftlySalesforce */;
targetProxy = 1712D8397B6BE061B3EDB28A4FE7B945 /* PBXContainerItemProxy */;
};
816858B40416C3C25B49B9C7805AEF6F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PromiseKit;
target = 92DA3506987AF13A373B11C678544EA4 /* PromiseKit */;
targetProxy = 5C44869635CFA34682A99270A1349B7C /* PBXContainerItemProxy */;
};
8C5ED6973CBF4900B214372C29433A35 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PromiseKit;
target = 92DA3506987AF13A373B11C678544EA4 /* PromiseKit */;
targetProxy = 0E992A4FCD21160789D61FBEAFFFC9DB /* PBXContainerItemProxy */;
};
995C543D035D35C9AF64B08B2832DB4C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = PromiseKit;
target = 92DA3506987AF13A373B11C678544EA4 /* PromiseKit */;
targetProxy = EC7087D42DE278E5CCA4E76ABB8650DE /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
06F878DF5F4036B45E2637D1F8F1E315 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 633F0B04323882A67E03C84384FC9203 /* PromiseKit.xcconfig */;
buildSettings = {
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/PromiseKit/PromiseKit-prefix.pch";
INFOPLIST_FILE = "Target Support Files/PromiseKit/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/PromiseKit/PromiseKit.modulemap";
PRODUCT_NAME = PromiseKit;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
0F050980EC81A8850E0050E35D6EFFA7 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 1C97F79F78AA0533197902BDCE42DB61 /* Pods-SwiftlySalesforce_Tests.release.xcconfig */;
buildSettings = {
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-SwiftlySalesforce_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-SwiftlySalesforce_Tests/Pods-SwiftlySalesforce_Tests.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_SwiftlySalesforce_Tests;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
12CF18EF780D53FF450988A0E547E5D6 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = F4CF4078C61D5915909A37150326F225 /* Pods-SwiftlySalesforce_Example.release.xcconfig */;
buildSettings = {
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-SwiftlySalesforce_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-SwiftlySalesforce_Example/Pods-SwiftlySalesforce_Example.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_SwiftlySalesforce_Example;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
19F848E66F9978EC1905577DF1A25F5A /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C8F00C84885846D7FA9A83F7C73400FC /* SwiftlySalesforce.xcconfig */;
buildSettings = {
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/SwiftlySalesforce/SwiftlySalesforce-prefix.pch";
INFOPLIST_FILE = "Target Support Files/SwiftlySalesforce/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/SwiftlySalesforce/SwiftlySalesforce.modulemap";
PRODUCT_NAME = SwiftlySalesforce;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
621AB785940626574F07364CB14760E1 /* 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_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = 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_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;
CODE_SIGNING_REQUIRED = NO;
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.3;
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/;
STRIP_INSTALLED_PRODUCT = NO;
SYMROOT = "${SRCROOT}/../build";
};
name = Release;
};
691559C320FCA8F3A0C5821ABC37E742 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 6087A2D7E5B8BF74DFE5F84C2E2C53F4 /* Pods-SwiftlySalesforce_Example.debug.xcconfig */;
buildSettings = {
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";