project.pbxproj
73.6 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00B5FE91BE9DE9E2BACFA5C72517182F /* Pods-CNLivePublishContent_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A98533A4379497FD4E0C285CA2F7B56E /* Pods-CNLivePublishContent_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
00E2C1092D2255BB25E45DF004D3E7E5 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E79F20FA67EF326AC8DE380E6118EBF4 /* UIWebView+AFNetworking.m */; };
00ED59EE2784CE922358E57E241A6C75 /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 940F9DBBD5FB7E51683C5858A06D1B91 /* UIRefreshControl+AFNetworking.m */; };
0D58399A6DC61099900309A4449F7891 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 72C208217BB6EAB64559C0AC437E799C /* AFURLSessionManager.m */; };
11EAB2A17E2712DB04831AD0FFD6A5DB /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A821F310F9CBCED06C1D6DEC3103B24 /* AFURLResponseSerialization.m */; };
137A6E8841A2429C00CBFA701695197E /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB3C1AE13FE37CFF6F471AF2B1E701D /* AFNetworkReachabilityManager.m */; };
146B923ABED8ABBAE25A960876698AF7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B234B3D6CCF479B936C41E947A49AA62 /* Foundation.framework */; };
15304B6383EF69EC4E3DE45F8613BE2E /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = C90CE9B626C1720C9ADB8FF999E47D68 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
15F1AB626337FECD0B9CFAAD90FAC342 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 443C446A800F6280C03E64AF14170EC0 /* AFNetworkActivityIndicatorManager.m */; };
1C7CB086EBAC66BA416E2E1AC7CF197F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 695564614B55CEEC9BCFB223C0781E46 /* UIKit.framework */; };
1DED0CC29970F878261799A26EF463BB /* CNLivePublishContent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79081AD8422817466BE162D409861670 /* CNLivePublishContent-dummy.m */; };
23331C9D43DE08E12CB7750F9781D84C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B234B3D6CCF479B936C41E947A49AA62 /* Foundation.framework */; };
24C902F46B1A630D344D4FA287DA05C7 /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 040C09B94F19533FBD391278CB20185D /* AFNetworking.framework */; };
2C06A2EDBAE6B3C9DF4302E17A9A72C0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B234B3D6CCF479B936C41E947A49AA62 /* Foundation.framework */; };
2E68973739E2AE713059A22F94238C60 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = CFB2918FE96D6AE88B6CA1AB13D6E730 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
328CCD10C2469209E1D2DD55268E154D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C97BFEE825E260FD2CB926EB42CF21CE /* SystemConfiguration.framework */; };
3CC1558D8899A2E13A968D4C403CD793 /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C8AE42D5A69E862E48EC78FF350078 /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
402EB64C59857FE252DC98844643C420 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E5CE85E1EB18AE94164507FF5D433CE6 /* UIButton+AFNetworking.m */; };
41FD4D0D6101210E26DDDCDD17FBB7C3 /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A23D5B238032195CA6F925D556B9F96 /* UIImageView+AFNetworking.m */; };
437D16EC401C087F549FA709C91CF786 /* CNLivePublishContent-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FE190B1BDA96365D405860A48D8C8C86 /* CNLivePublishContent-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
5A4C39ACCE4CE7B6C69C736F48087759 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC88013A13A80BA08140FC1D0FC17CAD /* AFHTTPSessionManager.m */; };
5BD586FD5A79C8F85C9B6F20E9D90D90 /* Pods-CNLivePublishContent_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E2861D05CFE6B3A84C7044909EE26035 /* Pods-CNLivePublishContent_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
616166BD57B8707EC940068BF5E1AA0A /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = CC18ED6BD8558D5E0970879CD6A9291E /* AFImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
63A7B518E880C7AACABCD20AFA247C8C /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 559947ACFC2291BE83F8DEC005B7101D /* AFSecurityPolicy.m */; };
6499BE821A569363EA3F09B2EA06882A /* YQJTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 84795C057289AA4ADF694D7E2C0A7844 /* YQJTest.h */; settings = {ATTRIBUTES = (Public, ); }; };
66340E06FB146280E83112B966E563C3 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 353BE42A5F94DADECC35B1DBDA6A1231 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
6A5E05D187005E863177B45D58905C71 /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2658E99DDD8EA7B96318F002C7B157B0 /* AFImageDownloader.m */; };
6C7C6C542448137FC3B6CEA04386780C /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09BDA8426E671B3F1385057205E67201 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
78F5D40D5B8E9FC40FB257953EA945BA /* UIImage+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = AB81F5B5A19D6F63D51E00BB9E746058 /* UIImage+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
7964C4CDB394B0C4DCFEC7D92E14D71A /* Pods-CNLivePublishContent_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B56CFCC9EAF366F03AC9CFE348D9D58 /* Pods-CNLivePublishContent_Tests-dummy.m */; };
839FA294A4A7A2C23B0149D5F947BAB3 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F6839DA55EA6731EB2DFFA59518EE4A7 /* Security.framework */; };
8826A0887EEE1A618FA3BA34989E05B5 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B111A72E572F236A399CC7F2E7D3E85 /* AFNetworking-dummy.m */; };
88A52F2DE87FAAEF79B420CC9B6BDE80 /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BF1D89BEED3766388A77B2FCB9912393 /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8AD9F8FE36978CB4348E402207950883 /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6361979267EDE0860632095FC6EA4D87 /* AFAutoPurgingImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
901790CB7729E8871AE5DE99E486792B /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = BB00ADDE9C30E36EB99FA89E831E4590 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; };
9486D80CC092F8ACB2355D5C94A155E3 /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1174ABA877619CC640989D6AC9A07DF1 /* AFAutoPurgingImageCache.m */; };
9D380619079479C622272E2C77FCD289 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 0929494D86649284B6A56EAB3F91B303 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
A39E1924915C53C49E7220F72AD96BBB /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = F1423F692F2541CFE55253BC467F0025 /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
A6788BD629798B6F13289D01BD549782 /* YQJTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 255176BDE664FDC3EEF3EE888A26EB86 /* YQJTest.m */; };
AA24F65AF676F6428D3F2B0D3A03B816 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B744E8CFDCDC5D9B41CC93E86AF702B1 /* CoreGraphics.framework */; };
B27AB9936E094171E3A6371570FDD397 /* Pods-CNLivePublishContent_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 806B7A4A2134DC7EEB9C2F58642ECD7F /* Pods-CNLivePublishContent_Example-dummy.m */; };
BEE7FD5C1C06AF3670E0FB75F996DDF7 /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1C251DFB2D3B0E60259BE56A85C5BA /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
C8D816A742203B5D50B79348DFDDE4BD /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 443AC79FE304CEF4E800C982B445221E /* MobileCoreServices.framework */; };
CB3028664CA23A1480C18C7A86CFDAF4 /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = BE62D258251F0E3CC57836C93584D335 /* UIActivityIndicatorView+AFNetworking.m */; };
CB3CA20E3732A095F5515E0621D8719C /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = FAF9AB0D2DE5398A86009837A2760BAD /* AFURLRequestSerialization.m */; };
CB633AF10D27AD0971F3E34470B0BB01 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB33A30129B406EB1BD224B6B630B80 /* UIWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
D014A5430789C5F0FFCF490D53B22897 /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF376080E12057AC937F6E1F0D7CB5D /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
D491FD44351A11016A957CA81ABE0EC5 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BFBAF94DDF04E8BDBF6323835FB9BC /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
DF74915F8F367134FA4277BE9A2F52DB /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EF0F7569C1C4BFC3EF2C9DA3D50CC0B /* UIProgressView+AFNetworking.m */; };
E72F2473AF602610ACD6608E0C4C0100 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B234B3D6CCF479B936C41E947A49AA62 /* Foundation.framework */; };
F2D2FE3B9DB1610D8EFAB393A3412DB7 /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 17FCADC02A41266A8F7ECA471386ABB3 /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
FCB209DFAFF4721A4AA51197AB2D7016 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AD7A9F5902061F94EEC77455DF6D75F /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
FE66EF8D47514D23E7551E2C95C765D8 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F00E33B5224A2ABFD1744688638A40 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
FF12B4BE37652AC565ED618C106CFE10 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D82029FB8774862A89BC6CD31A855F2 /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
10BE38FA9FD4A66416A251C2E70DB3D9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = EAE60BD2ADA8DCB217E116ADB628185C;
remoteInfo = AFNetworking;
};
638D96951986081978219D0D28C4CB95 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = EAE60BD2ADA8DCB217E116ADB628185C;
remoteInfo = AFNetworking;
};
74EE7622974628230979B1E2FAC31F70 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = EAE60BD2ADA8DCB217E116ADB628185C;
remoteInfo = AFNetworking;
};
A8E7BDA73E29AD4E427F3B81E733E91F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 55576F17EDFA6D5770450CB4A5A1512F;
remoteInfo = "Pods-CNLivePublishContent_Example";
};
BC29346D1257CE0E429385393E7F4830 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0129596E3166712D604DAF3AF140E4C2;
remoteInfo = CNLivePublishContent;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
00E5835696EFE5662E1E5E3B6FCB51C0 /* Pods_CNLivePublishContent_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLivePublishContent_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
040C09B94F19533FBD391278CB20185D /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
05BFBAF94DDF04E8BDBF6323835FB9BC /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = "<group>"; };
07944192B1ACCE474532D4AC5B213C83 /* Pods-CNLivePublishContent_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLivePublishContent_Tests.modulemap"; sourceTree = "<group>"; };
0929494D86649284B6A56EAB3F91B303 /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = "<group>"; };
09BDA8426E671B3F1385057205E67201 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = "<group>"; };
0AF376080E12057AC937F6E1F0D7CB5D /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = "<group>"; };
0EF0F7569C1C4BFC3EF2C9DA3D50CC0B /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = "<group>"; };
1174ABA877619CC640989D6AC9A07DF1 /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFAutoPurgingImageCache.m; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.m"; sourceTree = "<group>"; };
11EF7B4D96108B0737E2DE3314E4E078 /* Pods-CNLivePublishContent_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLivePublishContent_Example.release.xcconfig"; sourceTree = "<group>"; };
14D08F7F28CEDCEF2AFC8BBDB71F26FB /* AFNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.xcconfig; sourceTree = "<group>"; };
17FCADC02A41266A8F7ECA471386ABB3 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = "<group>"; };
1AB3C1AE13FE37CFF6F471AF2B1E701D /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
1C9335BE61B442F6D1AB0A3CC50BABEF /* Pods-CNLivePublishContent_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLivePublishContent_Tests.release.xcconfig"; sourceTree = "<group>"; };
1D70C948F3D659D5A708EECA7E406277 /* Pods_CNLivePublishContent_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CNLivePublishContent_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1DAF2307943F6D77C96929BE990D624A /* Pods-CNLivePublishContent_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLivePublishContent_Tests.debug.xcconfig"; sourceTree = "<group>"; };
1F2873F36BF0A613CE91EB42AF4E5212 /* Pods-CNLivePublishContent_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLivePublishContent_Example-frameworks.sh"; sourceTree = "<group>"; };
255176BDE664FDC3EEF3EE888A26EB86 /* YQJTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YQJTest.m; path = CNLivePublishContent/Classes/YQJTest.m; sourceTree = "<group>"; };
2658E99DDD8EA7B96318F002C7B157B0 /* AFImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFImageDownloader.m; path = "UIKit+AFNetworking/AFImageDownloader.m"; sourceTree = "<group>"; };
26F72D9395C2536C85B50ACF6A2D8143 /* Pods-CNLivePublishContent_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLivePublishContent_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
2A23D5B238032195CA6F925D556B9F96 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = "<group>"; };
2A3E6348FEBA5380341707C178C0FB7B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2A821F310F9CBCED06C1D6DEC3103B24 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = "<group>"; };
353BE42A5F94DADECC35B1DBDA6A1231 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
399878391EC8C0D048B77CE955F3DC79 /* CNLivePublishContent.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = CNLivePublishContent.modulemap; sourceTree = "<group>"; };
3B56CFCC9EAF366F03AC9CFE348D9D58 /* Pods-CNLivePublishContent_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLivePublishContent_Tests-dummy.m"; sourceTree = "<group>"; };
3EC14C57AFB7CED3F535897B0B293DB6 /* Pods-CNLivePublishContent_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLivePublishContent_Tests-resources.sh"; sourceTree = "<group>"; };
443AC79FE304CEF4E800C982B445221E /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; };
443C446A800F6280C03E64AF14170EC0 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = "<group>"; };
4E13FB5BD4DCDFC7D26ABF44FE960295 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
559947ACFC2291BE83F8DEC005B7101D /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = "<group>"; };
5B63784F7C53EE287DA2961A49BEDC17 /* AFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5D1C251DFB2D3B0E60259BE56A85C5BA /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = "<group>"; };
5E5745F4D848C4830D92C516D14C03A3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
6361979267EDE0860632095FC6EA4D87 /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFAutoPurgingImageCache.h; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.h"; sourceTree = "<group>"; };
695564614B55CEEC9BCFB223C0781E46 /* 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; };
696C7A16EB627EF2713A1F1BDA249196 /* Pods-CNLivePublishContent_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLivePublishContent_Example-acknowledgements.plist"; sourceTree = "<group>"; };
6F93218F251C55BC9FB3371044124253 /* CNLivePublishContent.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = CNLivePublishContent.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
712E674D09C6841F3EFBE929303414E4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
72C208217BB6EAB64559C0AC437E799C /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = "<group>"; };
73DB2FF987F90BF5D4852EAF943F08A5 /* CNLivePublishContent.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CNLivePublishContent.framework; sourceTree = BUILT_PRODUCTS_DIR; };
79081AD8422817466BE162D409861670 /* CNLivePublishContent-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CNLivePublishContent-dummy.m"; sourceTree = "<group>"; };
7AD7A9F5902061F94EEC77455DF6D75F /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = "<group>"; };
7CC642218BC299E377916CB18576223B /* Pods-CNLivePublishContent_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CNLivePublishContent_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
806B7A4A2134DC7EEB9C2F58642ECD7F /* Pods-CNLivePublishContent_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CNLivePublishContent_Example-dummy.m"; sourceTree = "<group>"; };
84795C057289AA4ADF694D7E2C0A7844 /* YQJTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YQJTest.h; path = CNLivePublishContent/Classes/YQJTest.h; sourceTree = "<group>"; };
8B111A72E572F236A399CC7F2E7D3E85 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = "<group>"; };
8FF4421A63C121EA527105F89696F126 /* Pods-CNLivePublishContent_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLivePublishContent_Example-resources.sh"; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
940F9DBBD5FB7E51683C5858A06D1B91 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = "<group>"; };
9AD4F3EAC9A590DA10A0DDE1BEEC85A6 /* Pods-CNLivePublishContent_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CNLivePublishContent_Tests-frameworks.sh"; sourceTree = "<group>"; };
9D2C5EF7DC3534CD5503A820E58D39F7 /* CNLivePublishContent-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLivePublishContent-prefix.pch"; sourceTree = "<group>"; };
9D82029FB8774862A89BC6CD31A855F2 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = "<group>"; };
9FB33A30129B406EB1BD224B6B630B80 /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+AFNetworking.h"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.h"; sourceTree = "<group>"; };
A98533A4379497FD4E0C285CA2F7B56E /* Pods-CNLivePublishContent_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLivePublishContent_Example-umbrella.h"; sourceTree = "<group>"; };
A9D8CE8A5B7231642B4C0869AB97B2AC /* CNLivePublishContent.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CNLivePublishContent.xcconfig; sourceTree = "<group>"; };
AB81F5B5A19D6F63D51E00BB9E746058 /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+AFNetworking.h"; path = "UIKit+AFNetworking/UIImage+AFNetworking.h"; sourceTree = "<group>"; };
ACFA5C092B8DD591CA30AA394993ABEE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
B234B3D6CCF479B936C41E947A49AA62 /* 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; };
B744E8CFDCDC5D9B41CC93E86AF702B1 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; };
B7AECF0C7AF013ED6080E205CA11B046 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
BB00ADDE9C30E36EB99FA89E831E4590 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = "<group>"; };
BE62D258251F0E3CC57836C93584D335 /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = "<group>"; };
BF1D89BEED3766388A77B2FCB9912393 /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = "<group>"; };
C68C10F080BCB4BB67EFF63349322381 /* Pods-CNLivePublishContent_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CNLivePublishContent_Example.debug.xcconfig"; sourceTree = "<group>"; };
C90CE9B626C1720C9ADB8FF999E47D68 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = "<group>"; };
C97BFEE825E260FD2CB926EB42CF21CE /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; };
C981116C7B3C73AA73246E5DDFC7D154 /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = "<group>"; };
CC18ED6BD8558D5E0970879CD6A9291E /* AFImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFImageDownloader.h; path = "UIKit+AFNetworking/AFImageDownloader.h"; sourceTree = "<group>"; };
CC88013A13A80BA08140FC1D0FC17CAD /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = "<group>"; };
CFB2918FE96D6AE88B6CA1AB13D6E730 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = "<group>"; };
D0D2AB6F36097F75D3E210BCEB86DB36 /* Pods-CNLivePublishContent_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CNLivePublishContent_Example.modulemap"; sourceTree = "<group>"; };
D2F00E33B5224A2ABFD1744688638A40 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = "<group>"; };
D5E9CBCE5E4D8713E454C38B818B6765 /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = "<group>"; };
E1C8AE42D5A69E862E48EC78FF350078 /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = "<group>"; };
E2383FF4887CBAF2ED8265B6142BB128 /* Pods-CNLivePublishContent_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CNLivePublishContent_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
E2861D05CFE6B3A84C7044909EE26035 /* Pods-CNLivePublishContent_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CNLivePublishContent_Tests-umbrella.h"; sourceTree = "<group>"; };
E5CE85E1EB18AE94164507FF5D433CE6 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = "<group>"; };
E79F20FA67EF326AC8DE380E6118EBF4 /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+AFNetworking.m"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.m"; sourceTree = "<group>"; };
F1423F692F2541CFE55253BC467F0025 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = "<group>"; };
F6839DA55EA6731EB2DFFA59518EE4A7 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
FAF9AB0D2DE5398A86009837A2760BAD /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = "<group>"; };
FE190B1BDA96365D405860A48D8C8C86 /* CNLivePublishContent-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CNLivePublishContent-umbrella.h"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
122F5A6B6466238A3BB663FC58A217E6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2C06A2EDBAE6B3C9DF4302E17A9A72C0 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
201C4131525D709A2C0FE414167327DC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
AA24F65AF676F6428D3F2B0D3A03B816 /* CoreGraphics.framework in Frameworks */,
146B923ABED8ABBAE25A960876698AF7 /* Foundation.framework in Frameworks */,
C8D816A742203B5D50B79348DFDDE4BD /* MobileCoreServices.framework in Frameworks */,
839FA294A4A7A2C23B0149D5F947BAB3 /* Security.framework in Frameworks */,
328CCD10C2469209E1D2DD55268E154D /* SystemConfiguration.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
75ED884444C020D2FFDE451161BE6FC8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
23331C9D43DE08E12CB7750F9781D84C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8059771A9E49BAE310D15CFAD01F6862 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
24C902F46B1A630D344D4FA287DA05C7 /* AFNetworking.framework in Frameworks */,
E72F2473AF602610ACD6608E0C4C0100 /* Foundation.framework in Frameworks */,
1C7CB086EBAC66BA416E2E1AC7CF197F /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0A60ECF3F4E8D3031BA678BF90A20EEA /* UIKit */ = {
isa = PBXGroup;
children = (
6361979267EDE0860632095FC6EA4D87 /* AFAutoPurgingImageCache.h */,
1174ABA877619CC640989D6AC9A07DF1 /* AFAutoPurgingImageCache.m */,
CC18ED6BD8558D5E0970879CD6A9291E /* AFImageDownloader.h */,
2658E99DDD8EA7B96318F002C7B157B0 /* AFImageDownloader.m */,
9D82029FB8774862A89BC6CD31A855F2 /* AFNetworkActivityIndicatorManager.h */,
443C446A800F6280C03E64AF14170EC0 /* AFNetworkActivityIndicatorManager.m */,
0AF376080E12057AC937F6E1F0D7CB5D /* UIActivityIndicatorView+AFNetworking.h */,
BE62D258251F0E3CC57836C93584D335 /* UIActivityIndicatorView+AFNetworking.m */,
5D1C251DFB2D3B0E60259BE56A85C5BA /* UIButton+AFNetworking.h */,
E5CE85E1EB18AE94164507FF5D433CE6 /* UIButton+AFNetworking.m */,
AB81F5B5A19D6F63D51E00BB9E746058 /* UIImage+AFNetworking.h */,
17FCADC02A41266A8F7ECA471386ABB3 /* UIImageView+AFNetworking.h */,
2A23D5B238032195CA6F925D556B9F96 /* UIImageView+AFNetworking.m */,
F1423F692F2541CFE55253BC467F0025 /* UIKit+AFNetworking.h */,
7AD7A9F5902061F94EEC77455DF6D75F /* UIProgressView+AFNetworking.h */,
0EF0F7569C1C4BFC3EF2C9DA3D50CC0B /* UIProgressView+AFNetworking.m */,
C90CE9B626C1720C9ADB8FF999E47D68 /* UIRefreshControl+AFNetworking.h */,
940F9DBBD5FB7E51683C5858A06D1B91 /* UIRefreshControl+AFNetworking.m */,
9FB33A30129B406EB1BD224B6B630B80 /* UIWebView+AFNetworking.h */,
E79F20FA67EF326AC8DE380E6118EBF4 /* UIWebView+AFNetworking.m */,
);
name = UIKit;
sourceTree = "<group>";
};
13965F8687FD7A91F311216D63A437A5 /* Reachability */ = {
isa = PBXGroup;
children = (
353BE42A5F94DADECC35B1DBDA6A1231 /* AFNetworkReachabilityManager.h */,
1AB3C1AE13FE37CFF6F471AF2B1E701D /* AFNetworkReachabilityManager.m */,
);
name = Reachability;
sourceTree = "<group>";
};
297CA8023A4FD0BD9EE1CA68BE9526F7 /* Support Files */ = {
isa = PBXGroup;
children = (
C981116C7B3C73AA73246E5DDFC7D154 /* AFNetworking.modulemap */,
14D08F7F28CEDCEF2AFC8BBDB71F26FB /* AFNetworking.xcconfig */,
8B111A72E572F236A399CC7F2E7D3E85 /* AFNetworking-dummy.m */,
D5E9CBCE5E4D8713E454C38B818B6765 /* AFNetworking-prefix.pch */,
BF1D89BEED3766388A77B2FCB9912393 /* AFNetworking-umbrella.h */,
ACFA5C092B8DD591CA30AA394993ABEE /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AFNetworking";
sourceTree = "<group>";
};
4A55D54F916A2EED638B0C709CAD6A75 /* Development Pods */ = {
isa = PBXGroup;
children = (
F9CB4C3091AE675484E3F226BC3A3A74 /* CNLivePublishContent */,
);
name = "Development Pods";
sourceTree = "<group>";
};
56E9713EBFB9E4DBD2688FAA96865897 /* Pod */ = {
isa = PBXGroup;
children = (
6F93218F251C55BC9FB3371044124253 /* CNLivePublishContent.podspec */,
5E5745F4D848C4830D92C516D14C03A3 /* LICENSE */,
712E674D09C6841F3EFBE929303414E4 /* README.md */,
);
name = Pod;
sourceTree = "<group>";
};
641BDD347DE7B8BB81D6CA5727C6EC5A /* Pods */ = {
isa = PBXGroup;
children = (
F0BFE09BCA49DD2E63F4E0637DD7991D /* AFNetworking */,
);
name = Pods;
sourceTree = "<group>";
};
67798BE6655A71228C504A1EE4CC9F59 /* iOS */ = {
isa = PBXGroup;
children = (
B744E8CFDCDC5D9B41CC93E86AF702B1 /* CoreGraphics.framework */,
B234B3D6CCF479B936C41E947A49AA62 /* Foundation.framework */,
443AC79FE304CEF4E800C982B445221E /* MobileCoreServices.framework */,
F6839DA55EA6731EB2DFFA59518EE4A7 /* Security.framework */,
C97BFEE825E260FD2CB926EB42CF21CE /* SystemConfiguration.framework */,
695564614B55CEEC9BCFB223C0781E46 /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
6952B7954D6AB15E46D4E68FD16AD504 /* Support Files */ = {
isa = PBXGroup;
children = (
399878391EC8C0D048B77CE955F3DC79 /* CNLivePublishContent.modulemap */,
A9D8CE8A5B7231642B4C0869AB97B2AC /* CNLivePublishContent.xcconfig */,
79081AD8422817466BE162D409861670 /* CNLivePublishContent-dummy.m */,
9D2C5EF7DC3534CD5503A820E58D39F7 /* CNLivePublishContent-prefix.pch */,
FE190B1BDA96365D405860A48D8C8C86 /* CNLivePublishContent-umbrella.h */,
4E13FB5BD4DCDFC7D26ABF44FE960295 /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/CNLivePublishContent";
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
4A55D54F916A2EED638B0C709CAD6A75 /* Development Pods */,
AD37EE3CE22F2D6A660B5BD65007E786 /* Frameworks */,
641BDD347DE7B8BB81D6CA5727C6EC5A /* Pods */,
F6EA74295556F5787F271FD6A0522EDB /* Products */,
E240CF00AEDFDF15B1F66579E55755C9 /* Targets Support Files */,
);
sourceTree = "<group>";
};
86CCD87478E929509958BE9B86F7685E /* Serialization */ = {
isa = PBXGroup;
children = (
05BFBAF94DDF04E8BDBF6323835FB9BC /* AFURLRequestSerialization.h */,
FAF9AB0D2DE5398A86009837A2760BAD /* AFURLRequestSerialization.m */,
CFB2918FE96D6AE88B6CA1AB13D6E730 /* AFURLResponseSerialization.h */,
2A821F310F9CBCED06C1D6DEC3103B24 /* AFURLResponseSerialization.m */,
);
name = Serialization;
sourceTree = "<group>";
};
9BE3A70CF1BA82CAA948FD98D92A8EE1 /* Pods-CNLivePublishContent_Example */ = {
isa = PBXGroup;
children = (
2A3E6348FEBA5380341707C178C0FB7B /* Info.plist */,
D0D2AB6F36097F75D3E210BCEB86DB36 /* Pods-CNLivePublishContent_Example.modulemap */,
7CC642218BC299E377916CB18576223B /* Pods-CNLivePublishContent_Example-acknowledgements.markdown */,
696C7A16EB627EF2713A1F1BDA249196 /* Pods-CNLivePublishContent_Example-acknowledgements.plist */,
806B7A4A2134DC7EEB9C2F58642ECD7F /* Pods-CNLivePublishContent_Example-dummy.m */,
1F2873F36BF0A613CE91EB42AF4E5212 /* Pods-CNLivePublishContent_Example-frameworks.sh */,
8FF4421A63C121EA527105F89696F126 /* Pods-CNLivePublishContent_Example-resources.sh */,
A98533A4379497FD4E0C285CA2F7B56E /* Pods-CNLivePublishContent_Example-umbrella.h */,
C68C10F080BCB4BB67EFF63349322381 /* Pods-CNLivePublishContent_Example.debug.xcconfig */,
11EF7B4D96108B0737E2DE3314E4E078 /* Pods-CNLivePublishContent_Example.release.xcconfig */,
);
name = "Pods-CNLivePublishContent_Example";
path = "Target Support Files/Pods-CNLivePublishContent_Example";
sourceTree = "<group>";
};
AD37EE3CE22F2D6A660B5BD65007E786 /* Frameworks */ = {
isa = PBXGroup;
children = (
040C09B94F19533FBD391278CB20185D /* AFNetworking.framework */,
67798BE6655A71228C504A1EE4CC9F59 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
BAA7C8FD05AEAB93C732F63AC9D55B84 /* NSURLSession */ = {
isa = PBXGroup;
children = (
E1C8AE42D5A69E862E48EC78FF350078 /* AFCompatibilityMacros.h */,
09BDA8426E671B3F1385057205E67201 /* AFHTTPSessionManager.h */,
CC88013A13A80BA08140FC1D0FC17CAD /* AFHTTPSessionManager.m */,
D2F00E33B5224A2ABFD1744688638A40 /* AFURLSessionManager.h */,
72C208217BB6EAB64559C0AC437E799C /* AFURLSessionManager.m */,
);
name = NSURLSession;
sourceTree = "<group>";
};
D1C4B32027AB17C57458990E512EB3B3 /* Pods-CNLivePublishContent_Tests */ = {
isa = PBXGroup;
children = (
B7AECF0C7AF013ED6080E205CA11B046 /* Info.plist */,
07944192B1ACCE474532D4AC5B213C83 /* Pods-CNLivePublishContent_Tests.modulemap */,
26F72D9395C2536C85B50ACF6A2D8143 /* Pods-CNLivePublishContent_Tests-acknowledgements.markdown */,
E2383FF4887CBAF2ED8265B6142BB128 /* Pods-CNLivePublishContent_Tests-acknowledgements.plist */,
3B56CFCC9EAF366F03AC9CFE348D9D58 /* Pods-CNLivePublishContent_Tests-dummy.m */,
9AD4F3EAC9A590DA10A0DDE1BEEC85A6 /* Pods-CNLivePublishContent_Tests-frameworks.sh */,
3EC14C57AFB7CED3F535897B0B293DB6 /* Pods-CNLivePublishContent_Tests-resources.sh */,
E2861D05CFE6B3A84C7044909EE26035 /* Pods-CNLivePublishContent_Tests-umbrella.h */,
1DAF2307943F6D77C96929BE990D624A /* Pods-CNLivePublishContent_Tests.debug.xcconfig */,
1C9335BE61B442F6D1AB0A3CC50BABEF /* Pods-CNLivePublishContent_Tests.release.xcconfig */,
);
name = "Pods-CNLivePublishContent_Tests";
path = "Target Support Files/Pods-CNLivePublishContent_Tests";
sourceTree = "<group>";
};
E240CF00AEDFDF15B1F66579E55755C9 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
9BE3A70CF1BA82CAA948FD98D92A8EE1 /* Pods-CNLivePublishContent_Example */,
D1C4B32027AB17C57458990E512EB3B3 /* Pods-CNLivePublishContent_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
F0BFE09BCA49DD2E63F4E0637DD7991D /* AFNetworking */ = {
isa = PBXGroup;
children = (
0929494D86649284B6A56EAB3F91B303 /* AFNetworking.h */,
BAA7C8FD05AEAB93C732F63AC9D55B84 /* NSURLSession */,
13965F8687FD7A91F311216D63A437A5 /* Reachability */,
FDD76C32F8844B0A4F72AD3FC063818F /* Security */,
86CCD87478E929509958BE9B86F7685E /* Serialization */,
297CA8023A4FD0BD9EE1CA68BE9526F7 /* Support Files */,
0A60ECF3F4E8D3031BA678BF90A20EEA /* UIKit */,
);
path = AFNetworking;
sourceTree = "<group>";
};
F6EA74295556F5787F271FD6A0522EDB /* Products */ = {
isa = PBXGroup;
children = (
5B63784F7C53EE287DA2961A49BEDC17 /* AFNetworking.framework */,
73DB2FF987F90BF5D4852EAF943F08A5 /* CNLivePublishContent.framework */,
1D70C948F3D659D5A708EECA7E406277 /* Pods_CNLivePublishContent_Example.framework */,
00E5835696EFE5662E1E5E3B6FCB51C0 /* Pods_CNLivePublishContent_Tests.framework */,
);
name = Products;
sourceTree = "<group>";
};
F9CB4C3091AE675484E3F226BC3A3A74 /* CNLivePublishContent */ = {
isa = PBXGroup;
children = (
84795C057289AA4ADF694D7E2C0A7844 /* YQJTest.h */,
255176BDE664FDC3EEF3EE888A26EB86 /* YQJTest.m */,
56E9713EBFB9E4DBD2688FAA96865897 /* Pod */,
6952B7954D6AB15E46D4E68FD16AD504 /* Support Files */,
);
name = CNLivePublishContent;
path = ../..;
sourceTree = "<group>";
};
FDD76C32F8844B0A4F72AD3FC063818F /* Security */ = {
isa = PBXGroup;
children = (
BB00ADDE9C30E36EB99FA89E831E4590 /* AFSecurityPolicy.h */,
559947ACFC2291BE83F8DEC005B7101D /* AFSecurityPolicy.m */,
);
name = Security;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
0E8E0B7E5BB08884CC80B2FB2B86818C /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
00B5FE91BE9DE9E2BACFA5C72517182F /* Pods-CNLivePublishContent_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
11176E8CC0F33E647945707BCCF194F2 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
5BD586FD5A79C8F85C9B6F20E9D90D90 /* Pods-CNLivePublishContent_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
20D65A402D1AE33BBDD983CADA49F8C9 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
437D16EC401C087F549FA709C91CF786 /* CNLivePublishContent-umbrella.h in Headers */,
6499BE821A569363EA3F09B2EA06882A /* YQJTest.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B5E140C985F3196798D57F2A7DB76ECD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
8AD9F8FE36978CB4348E402207950883 /* AFAutoPurgingImageCache.h in Headers */,
3CC1558D8899A2E13A968D4C403CD793 /* AFCompatibilityMacros.h in Headers */,
6C7C6C542448137FC3B6CEA04386780C /* AFHTTPSessionManager.h in Headers */,
616166BD57B8707EC940068BF5E1AA0A /* AFImageDownloader.h in Headers */,
FF12B4BE37652AC565ED618C106CFE10 /* AFNetworkActivityIndicatorManager.h in Headers */,
88A52F2DE87FAAEF79B420CC9B6BDE80 /* AFNetworking-umbrella.h in Headers */,
9D380619079479C622272E2C77FCD289 /* AFNetworking.h in Headers */,
66340E06FB146280E83112B966E563C3 /* AFNetworkReachabilityManager.h in Headers */,
901790CB7729E8871AE5DE99E486792B /* AFSecurityPolicy.h in Headers */,
D491FD44351A11016A957CA81ABE0EC5 /* AFURLRequestSerialization.h in Headers */,
2E68973739E2AE713059A22F94238C60 /* AFURLResponseSerialization.h in Headers */,
FE66EF8D47514D23E7551E2C95C765D8 /* AFURLSessionManager.h in Headers */,
D014A5430789C5F0FFCF490D53B22897 /* UIActivityIndicatorView+AFNetworking.h in Headers */,
BEE7FD5C1C06AF3670E0FB75F996DDF7 /* UIButton+AFNetworking.h in Headers */,
78F5D40D5B8E9FC40FB257953EA945BA /* UIImage+AFNetworking.h in Headers */,
F2D2FE3B9DB1610D8EFAB393A3412DB7 /* UIImageView+AFNetworking.h in Headers */,
A39E1924915C53C49E7220F72AD96BBB /* UIKit+AFNetworking.h in Headers */,
FCB209DFAFF4721A4AA51197AB2D7016 /* UIProgressView+AFNetworking.h in Headers */,
15304B6383EF69EC4E3DE45F8613BE2E /* UIRefreshControl+AFNetworking.h in Headers */,
CB633AF10D27AD0971F3E34470B0BB01 /* UIWebView+AFNetworking.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
0129596E3166712D604DAF3AF140E4C2 /* CNLivePublishContent */ = {
isa = PBXNativeTarget;
buildConfigurationList = 565610290BC02A1EA9383D220B6A742B /* Build configuration list for PBXNativeTarget "CNLivePublishContent" */;
buildPhases = (
20D65A402D1AE33BBDD983CADA49F8C9 /* Headers */,
067CBEC0AF0D0AC193B2E646F22F4DBC /* Sources */,
8059771A9E49BAE310D15CFAD01F6862 /* Frameworks */,
F5C79AEC70006E957E77A43554A9ABBC /* Resources */,
);
buildRules = (
);
dependencies = (
D3F4E7B90AA6567DF2D82F63373C9B4C /* PBXTargetDependency */,
);
name = CNLivePublishContent;
productName = CNLivePublishContent;
productReference = 73DB2FF987F90BF5D4852EAF943F08A5 /* CNLivePublishContent.framework */;
productType = "com.apple.product-type.framework";
};
372412E1F5E11671595F2FCAE8C052BD /* Pods-CNLivePublishContent_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = E0F3EA5CE7DFAD07D828D8C5A8A718E7 /* Build configuration list for PBXNativeTarget "Pods-CNLivePublishContent_Tests" */;
buildPhases = (
11176E8CC0F33E647945707BCCF194F2 /* Headers */,
7BD60E7F276F99C3E9C00078C4087F26 /* Sources */,
75ED884444C020D2FFDE451161BE6FC8 /* Frameworks */,
6B39BD9235A2B80414EF985EC5D165DB /* Resources */,
);
buildRules = (
);
dependencies = (
6E3CB6A8150CDB6E3255319CFBC8A413 /* PBXTargetDependency */,
C9F616E89D4FF64E6D7E30B9F67AF945 /* PBXTargetDependency */,
);
name = "Pods-CNLivePublishContent_Tests";
productName = "Pods-CNLivePublishContent_Tests";
productReference = 00E5835696EFE5662E1E5E3B6FCB51C0 /* Pods_CNLivePublishContent_Tests.framework */;
productType = "com.apple.product-type.framework";
};
55576F17EDFA6D5770450CB4A5A1512F /* Pods-CNLivePublishContent_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 31C66CE74F19C7D8A8F842B6B902D672 /* Build configuration list for PBXNativeTarget "Pods-CNLivePublishContent_Example" */;
buildPhases = (
0E8E0B7E5BB08884CC80B2FB2B86818C /* Headers */,
B7B9C97376D5966EF20F6AD1D71AEB96 /* Sources */,
122F5A6B6466238A3BB663FC58A217E6 /* Frameworks */,
386EF2FE75B42E45032AB298237D3921 /* Resources */,
);
buildRules = (
);
dependencies = (
C8AD328705C1AB5C8B29138FF6EBFD33 /* PBXTargetDependency */,
99E407B6E999010E520C5BA84EB76C63 /* PBXTargetDependency */,
);
name = "Pods-CNLivePublishContent_Example";
productName = "Pods-CNLivePublishContent_Example";
productReference = 1D70C948F3D659D5A708EECA7E406277 /* Pods_CNLivePublishContent_Example.framework */;
productType = "com.apple.product-type.framework";
};
EAE60BD2ADA8DCB217E116ADB628185C /* AFNetworking */ = {
isa = PBXNativeTarget;
buildConfigurationList = 8289B039CF0D8B5A385C13089893A356 /* Build configuration list for PBXNativeTarget "AFNetworking" */;
buildPhases = (
B5E140C985F3196798D57F2A7DB76ECD /* Headers */,
07C7A3674C96B85AD8EA6C6D71BC549B /* Sources */,
201C4131525D709A2C0FE414167327DC /* Frameworks */,
8F134AE083847A523C4AE149B84307BF /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = AFNetworking;
productName = AFNetworking;
productReference = 5B63784F7C53EE287DA2961A49BEDC17 /* AFNetworking.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0930;
LastUpgradeCheck = 0930;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = F6EA74295556F5787F271FD6A0522EDB /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
EAE60BD2ADA8DCB217E116ADB628185C /* AFNetworking */,
0129596E3166712D604DAF3AF140E4C2 /* CNLivePublishContent */,
55576F17EDFA6D5770450CB4A5A1512F /* Pods-CNLivePublishContent_Example */,
372412E1F5E11671595F2FCAE8C052BD /* Pods-CNLivePublishContent_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
386EF2FE75B42E45032AB298237D3921 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
6B39BD9235A2B80414EF985EC5D165DB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
8F134AE083847A523C4AE149B84307BF /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
F5C79AEC70006E957E77A43554A9ABBC /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
067CBEC0AF0D0AC193B2E646F22F4DBC /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
1DED0CC29970F878261799A26EF463BB /* CNLivePublishContent-dummy.m in Sources */,
A6788BD629798B6F13289D01BD549782 /* YQJTest.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
07C7A3674C96B85AD8EA6C6D71BC549B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
9486D80CC092F8ACB2355D5C94A155E3 /* AFAutoPurgingImageCache.m in Sources */,
5A4C39ACCE4CE7B6C69C736F48087759 /* AFHTTPSessionManager.m in Sources */,
6A5E05D187005E863177B45D58905C71 /* AFImageDownloader.m in Sources */,
15F1AB626337FECD0B9CFAAD90FAC342 /* AFNetworkActivityIndicatorManager.m in Sources */,
8826A0887EEE1A618FA3BA34989E05B5 /* AFNetworking-dummy.m in Sources */,
137A6E8841A2429C00CBFA701695197E /* AFNetworkReachabilityManager.m in Sources */,
63A7B518E880C7AACABCD20AFA247C8C /* AFSecurityPolicy.m in Sources */,
CB3CA20E3732A095F5515E0621D8719C /* AFURLRequestSerialization.m in Sources */,
11EAB2A17E2712DB04831AD0FFD6A5DB /* AFURLResponseSerialization.m in Sources */,
0D58399A6DC61099900309A4449F7891 /* AFURLSessionManager.m in Sources */,
CB3028664CA23A1480C18C7A86CFDAF4 /* UIActivityIndicatorView+AFNetworking.m in Sources */,
402EB64C59857FE252DC98844643C420 /* UIButton+AFNetworking.m in Sources */,
41FD4D0D6101210E26DDDCDD17FBB7C3 /* UIImageView+AFNetworking.m in Sources */,
DF74915F8F367134FA4277BE9A2F52DB /* UIProgressView+AFNetworking.m in Sources */,
00ED59EE2784CE922358E57E241A6C75 /* UIRefreshControl+AFNetworking.m in Sources */,
00E2C1092D2255BB25E45DF004D3E7E5 /* UIWebView+AFNetworking.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7BD60E7F276F99C3E9C00078C4087F26 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
7964C4CDB394B0C4DCFEC7D92E14D71A /* Pods-CNLivePublishContent_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B7B9C97376D5966EF20F6AD1D71AEB96 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B27AB9936E094171E3A6371570FDD397 /* Pods-CNLivePublishContent_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
6E3CB6A8150CDB6E3255319CFBC8A413 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = AFNetworking;
target = EAE60BD2ADA8DCB217E116ADB628185C /* AFNetworking */;
targetProxy = 10BE38FA9FD4A66416A251C2E70DB3D9 /* PBXContainerItemProxy */;
};
99E407B6E999010E520C5BA84EB76C63 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = CNLivePublishContent;
target = 0129596E3166712D604DAF3AF140E4C2 /* CNLivePublishContent */;
targetProxy = BC29346D1257CE0E429385393E7F4830 /* PBXContainerItemProxy */;
};
C8AD328705C1AB5C8B29138FF6EBFD33 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = AFNetworking;
target = EAE60BD2ADA8DCB217E116ADB628185C /* AFNetworking */;
targetProxy = 638D96951986081978219D0D28C4CB95 /* PBXContainerItemProxy */;
};
C9F616E89D4FF64E6D7E30B9F67AF945 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Pods-CNLivePublishContent_Example";
target = 55576F17EDFA6D5770450CB4A5A1512F /* Pods-CNLivePublishContent_Example */;
targetProxy = A8E7BDA73E29AD4E427F3B81E733E91F /* PBXContainerItemProxy */;
};
D3F4E7B90AA6567DF2D82F63373C9B4C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = AFNetworking;
target = EAE60BD2ADA8DCB217E116ADB628185C /* AFNetworking */;
targetProxy = 74EE7622974628230979B1E2FAC31F70 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
1843215834F5986609CD5856CFF60501 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 11EF7B4D96108B0737E2DE3314E4E078 /* Pods-CNLivePublishContent_Example.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = 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-CNLivePublishContent_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CNLivePublishContent_Example/Pods-CNLivePublishContent_Example.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
5184FC30B3970AE203A02597EA9DCBD8 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A9D8CE8A5B7231642B4C0869AB97B2AC /* CNLivePublishContent.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/CNLivePublishContent/CNLivePublishContent-prefix.pch";
INFOPLIST_FILE = "Target Support Files/CNLivePublishContent/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/CNLivePublishContent/CNLivePublishContent.modulemap";
PRODUCT_MODULE_NAME = CNLivePublishContent;
PRODUCT_NAME = CNLivePublishContent;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
5229405B05FF6B657D04BA602DA53837 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 1DAF2307943F6D77C96929BE990D624A /* Pods-CNLivePublishContent_Tests.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = 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-CNLivePublishContent_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CNLivePublishContent_Tests/Pods-CNLivePublishContent_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;
};
5DE19CECB206ACCCACF04D62F93FFDA6 /* 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;
CODE_SIGNING_ALLOWED = NO;
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 = 9.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;
};
858D01EEFE984249A9581D18DBEA53F1 /* Debug */ = {
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;
CODE_SIGNING_ALLOWED = NO;
CODE_SIGNING_REQUIRED = NO;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_DEBUG=1",
"DEBUG=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 = 9.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
STRIP_INSTALLED_PRODUCT = NO;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.2;
SYMROOT = "${SRCROOT}/../build";
};
name = Debug;
};
8D2DCA929D6EAACBC099C6391F176FAB /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 14D08F7F28CEDCEF2AFC8BBDB71F26FB /* AFNetworking.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/AFNetworking/AFNetworking-prefix.pch";
INFOPLIST_FILE = "Target Support Files/AFNetworking/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/AFNetworking/AFNetworking.modulemap";
PRODUCT_MODULE_NAME = AFNetworking;
PRODUCT_NAME = AFNetworking;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
9F05FB7480ECA0237560017761177F3A /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 14D08F7F28CEDCEF2AFC8BBDB71F26FB /* AFNetworking.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/AFNetworking/AFNetworking-prefix.pch";
INFOPLIST_FILE = "Target Support Files/AFNetworking/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/AFNetworking/AFNetworking.modulemap";
PRODUCT_MODULE_NAME = AFNetworking;
PRODUCT_NAME = AFNetworking;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
ACDE442C7C149EBA631C730D00C6FCAD /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 1C9335BE61B442F6D1AB0A3CC50BABEF /* Pods-CNLivePublishContent_Tests.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = 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-CNLivePublishContent_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CNLivePublishContent_Tests/Pods-CNLivePublishContent_Tests.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
BAD679F1D8D93112BC0230F672D178A5 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A9D8CE8A5B7231642B4C0869AB97B2AC /* CNLivePublishContent.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/CNLivePublishContent/CNLivePublishContent-prefix.pch";
INFOPLIST_FILE = "Target Support Files/CNLivePublishContent/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/CNLivePublishContent/CNLivePublishContent.modulemap";
PRODUCT_MODULE_NAME = CNLivePublishContent;
PRODUCT_NAME = CNLivePublishContent;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
C9ED161BEF030713C1411102837EC6BB /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C68C10F080BCB4BB67EFF63349322381 /* Pods-CNLivePublishContent_Example.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = 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-CNLivePublishContent_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-CNLivePublishContent_Example/Pods-CNLivePublishContent_Example.modulemap";
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList;
buildConfigurations = (
858D01EEFE984249A9581D18DBEA53F1 /* Debug */,
5DE19CECB206ACCCACF04D62F93FFDA6 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
31C66CE74F19C7D8A8F842B6B902D672 /* Build configuration list for PBXNativeTarget "Pods-CNLivePublishContent_Example" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C9ED161BEF030713C1411102837EC6BB /* Debug */,
1843215834F5986609CD5856CFF60501 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
565610290BC02A1EA9383D220B6A742B /* Build configuration list for PBXNativeTarget "CNLivePublishContent" */ = {
isa = XCConfigurationList;
buildConfigurations = (
5184FC30B3970AE203A02597EA9DCBD8 /* Debug */,
BAD679F1D8D93112BC0230F672D178A5 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
8289B039CF0D8B5A385C13089893A356 /* Build configuration list for PBXNativeTarget "AFNetworking" */ = {
isa = XCConfigurationList;
buildConfigurations = (
9F05FB7480ECA0237560017761177F3A /* Debug */,
8D2DCA929D6EAACBC099C6391F176FAB /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E0F3EA5CE7DFAD07D828D8C5A8A718E7 /* Build configuration list for PBXNativeTarget "Pods-CNLivePublishContent_Tests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
5229405B05FF6B657D04BA602DA53837 /* Debug */,
ACDE442C7C149EBA631C730D00C6FCAD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}