-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1319 lines (1304 loc) · 89.7 KB
/
project.pbxproj
File metadata and controls
1319 lines (1304 loc) · 89.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 51;
objects = {
/* Begin PBXBuildFile section */
10D3A0A025E4278D39D5ED2C /* Pods_TXReplayKit_Screen.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC0C1317A573DF7D6B6DABE2 /* Pods_TXReplayKit_Screen.framework */; };
3907DE73291511920055D243 /* TimeShiftViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3907DE6E291511920055D243 /* TimeShiftViewController.m */; };
3907DE74291511920055D243 /* TimeShiftHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3907DE6F291511920055D243 /* TimeShiftHelper.m */; };
3907DE75291511920055D243 /* TimeShiftViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3907DE70291511920055D243 /* TimeShiftViewController.xib */; };
400C520226A67EE30036AC40 /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 400C520126A67EE30036AC40 /* AssetsLibrary.framework */; };
406AB164280048BB00A99B81 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 406AB163280048BB00A99B81 /* VideoToolbox.framework */; };
406AB166280048C800A99B81 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 406AB165280048C800A99B81 /* SystemConfiguration.framework */; };
406AB168280048D800A99B81 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 406AB167280048D800A99B81 /* CoreTelephony.framework */; };
406AB16A280048E100A99B81 /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 406AB169280048E100A99B81 /* MetalKit.framework */; };
406AB16C280048FB00A99B81 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 406AB163280048BB00A99B81 /* VideoToolbox.framework */; };
406AB16D2800490100A99B81 /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 406AB169280048E100A99B81 /* MetalKit.framework */; };
406AB16E2800491700A99B81 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 406AB165280048C800A99B81 /* SystemConfiguration.framework */; };
406AB16F2800492000A99B81 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 406AB167280048D800A99B81 /* CoreTelephony.framework */; };
40D550EC26A6A9D800FE9F13 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 40D550EB26A6A9BF00FE9F13 /* libsqlite3.0.tbd */; };
4723A7BF26315F920094AC81 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4723A7BE26315F920094AC81 /* OpenGLES.framework */; };
4723A7C026315F9C0094AC81 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 47ECB98B2626868400201FCB /* Accelerate.framework */; };
4723A7C226315FA30094AC81 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4723A7C126315FA30094AC81 /* CoreMedia.framework */; };
4723A7C426315FAA0094AC81 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4723A7C326315FAA0094AC81 /* AVFoundation.framework */; };
4723A7C526315FB10094AC81 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 47ECB9882626867C00201FCB /* libc++.tbd */; };
4723A8902631666E0094AC81 /* NSString+Common.m in Sources */ = {isa = PBXBuildFile; fileRef = 4723A88F2631666E0094AC81 /* NSString+Common.m */; };
47748038283E21F900505C4C /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 47748037283E21F900505C4C /* CoreServices.framework */; };
477EC97A26268B0A007AAC4F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 477EC96726268B09007AAC4F /* Assets.xcassets */; };
477EC97C26268B0A007AAC4F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 477EC96B26268B09007AAC4F /* LaunchScreen.storyboard */; };
477EC97D26268B0A007AAC4F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 477EC96D26268B09007AAC4F /* Main.storyboard */; };
477EC97E26268B0A007AAC4F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 477EC96F26268B09007AAC4F /* main.m */; };
477EC97F26268B0A007AAC4F /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 477EC97026268B09007AAC4F /* AppDelegate.m */; };
477EC9A226268CB9007AAC4F /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 477EC9A026268CB9007AAC4F /* ViewController.m */; };
477EC9A826268D0F007AAC4F /* Localized.strings in Resources */ = {isa = PBXBuildFile; fileRef = 477EC9AA26268D0F007AAC4F /* Localized.strings */; };
477EC9B026268DC8007AAC4F /* AppLocalized.m in Sources */ = {isa = PBXBuildFile; fileRef = 477EC9AF26268DC8007AAC4F /* AppLocalized.m */; };
477EC9B526269568007AAC4F /* HomeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 477EC9B326269568007AAC4F /* HomeTableViewCell.m */; };
477EC9B626269568007AAC4F /* HomeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 477EC9B426269568007AAC4F /* HomeTableViewCell.xib */; };
477EC9C32626D6AB007AAC4F /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 477EC9C22626D6AB007AAC4F /* UIColor+Hex.m */; };
477ECA0A2627D344007AAC4F /* UIViewController+AlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 477ECA092627D344007AAC4F /* UIViewController+AlertViewController.m */; };
47E0725F263656110027D05E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 47E07261263656110027D05E /* InfoPlist.strings */; };
47E073062636A6C80027D05E /* CustomCameraHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 47E072A22636A6C80027D05E /* CustomCameraHelper.m */; };
47ECB9892626867C00201FCB /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 47ECB9882626867C00201FCB /* libc++.tbd */; };
47ECB98C2626868400201FCB /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 47ECB98B2626868400201FCB /* Accelerate.framework */; };
47ECB98E2626868E00201FCB /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 47ECB98D2626868E00201FCB /* libresolv.tbd */; };
47F149E4286BF3E900781688 /* PictureInPictureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 47F149E2286BF3E900781688 /* PictureInPictureViewController.m */; };
47F149E5286BF3E900781688 /* PictureInPictureViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 47F149E3286BF3E900781688 /* PictureInPictureViewController.xib */; };
47F6AE702AB7FD31003ABB14 /* PictureInPictureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47F6AE6F2AB7FD31003ABB14 /* PictureInPictureView.m */; };
880B3C4A2624411B002683FB /* GenerateTestUserSig.m in Sources */ = {isa = PBXBuildFile; fileRef = 880B3C482624411B002683FB /* GenerateTestUserSig.m */; };
88167CB3268488C2001D99DC /* LivePushCameraEnterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88167CB1268488C2001D99DC /* LivePushCameraEnterViewController.m */; };
88167CB4268488C2001D99DC /* LivePushCameraEnterViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 88167CB2268488C2001D99DC /* LivePushCameraEnterViewController.xib */; };
88167CC52684AC91001D99DC /* LivePushCameraViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88167CC32684AC91001D99DC /* LivePushCameraViewController.m */; };
88167CC62684AC91001D99DC /* LivePushCameraViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 88167CC42684AC91001D99DC /* LivePushCameraViewController.xib */; };
88167CE92685BF58001D99DC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 88167CE82685BF58001D99DC /* Foundation.framework */; };
88167CEA2685BF7B001D99DC /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8894457726282A3200193FAD /* UIKit.framework */; };
88167CEC2685BF97001D99DC /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 88167CEB2685BF8E001D99DC /* libz.tbd */; };
8839C3BA2689AE29000FF58C /* LivePushScreenViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8839C3B82689AE29000FF58C /* LivePushScreenViewController.m */; };
8839C3BB2689AE29000FF58C /* LivePushScreenViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8839C3B92689AE29000FF58C /* LivePushScreenViewController.xib */; };
8839C3BD2689AF9B000FF58C /* TRTCBroadcastExtensionLauncher.m in Sources */ = {isa = PBXBuildFile; fileRef = 88999071268486EC00CBC983 /* TRTCBroadcastExtensionLauncher.m */; };
8839C3CA2689B93F000FF58C /* LivePlayEnterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8839C3C82689B93F000FF58C /* LivePlayEnterViewController.m */; };
8839C3CB2689B93F000FF58C /* LivePlayEnterViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8839C3C92689B93F000FF58C /* LivePlayEnterViewController.xib */; };
8839C3D52689BEF5000FF58C /* LivePlayViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8839C3D32689BEF5000FF58C /* LivePlayViewController.m */; };
8839C3D62689BEF5000FF58C /* LivePlayViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8839C3D42689BEF5000FF58C /* LivePlayViewController.xib */; };
885A56472689ABB500D9D55F /* LivePushScreenEnterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 885A56452689ABB500D9D55F /* LivePushScreenEnterViewController.m */; };
885A56482689ABB500D9D55F /* LivePushScreenEnterViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 885A56462689ABB500D9D55F /* LivePushScreenEnterViewController.xib */; };
8873801D28D9E5C400B0479E /* LebAutoBitrateViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8873801B28D9E5C300B0479E /* LebAutoBitrateViewController.m */; };
8873801E28D9E5C400B0479E /* LebAutoBitrateViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8873801C28D9E5C300B0479E /* LebAutoBitrateViewController.xib */; };
8873802328DCA6FF00B0479E /* LebPlayEnterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8873802128DCA6FF00B0479E /* LebPlayEnterViewController.m */; };
8873802428DCA6FF00B0479E /* LebPlayEnterViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8873802228DCA6FF00B0479E /* LebPlayEnterViewController.xib */; };
8873802828DCA8CA00B0479E /* LebPlayViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8873802628DCA8CA00B0479E /* LebPlayViewController.m */; };
8873802928DCA8CA00B0479E /* LebPlayViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8873802728DCA8CA00B0479E /* LebPlayViewController.xib */; };
8873802E28E18D6500B0479E /* HlsAutoBitrateViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8873802C28E18D6400B0479E /* HlsAutoBitrateViewController.m */; };
8873802F28E18D6500B0479E /* HlsAutoBitrateViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8873802D28E18D6400B0479E /* HlsAutoBitrateViewController.xib */; };
8894456B26282A3200193FAD /* ReplayKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8894456A26282A3200193FAD /* ReplayKit.framework */; };
8894458326282A3200193FAD /* TXReplayKit_Screen.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 8894456926282A3200193FAD /* TXReplayKit_Screen.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
8899908C268487F400CBC983 /* SampleHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 88999076268486EC00CBC983 /* SampleHandler.m */; };
88A1A884268DA7DA007F630D /* LivePkAnchorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A1A882268DA7DA007F630D /* LivePkAnchorViewController.m */; };
88A1A885268DA7DA007F630D /* LivePkAnchorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 88A1A883268DA7DA007F630D /* LivePkAnchorViewController.xib */; };
88A1A88A268DA81A007F630D /* LivePkAudienceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A1A888268DA81A007F630D /* LivePkAudienceViewController.m */; };
88A1A88B268DA81A007F630D /* LivePkAudienceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 88A1A889268DA81A007F630D /* LivePkAudienceViewController.xib */; };
88A2C846267062FF006FC026 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 47ECB98B2626868400201FCB /* Accelerate.framework */; };
88A2C84726706305006FC026 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 47ECB9882626867C00201FCB /* libc++.tbd */; };
88AB3E4B2689D65D00A75212 /* Localized.strings in Resources */ = {isa = PBXBuildFile; fileRef = 477EC9AA26268D0F007AAC4F /* Localized.strings */; };
88AB3E51268A008C00A75212 /* URLUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 88AB3E50268A008C00A75212 /* URLUtils.m */; };
88BC38A22844710E00814931 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 88BC38A12844710E00814931 /* GLKit.framework */; };
88C4C062268B503000FBB698 /* CustomVideoCaptureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88C4C060268B503000FBB698 /* CustomVideoCaptureViewController.m */; };
88C4C063268B503000FBB698 /* CustomVideoCaptureViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 88C4C061268B503000FBB698 /* CustomVideoCaptureViewController.xib */; };
88C4C06A268C48DF00FBB698 /* ThirdBeautyFaceunityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 47E072AF2636A6C80027D05E /* ThirdBeautyFaceunityViewController.m */; };
88C4C06C268C49FD00FBB698 /* ThirdBeautyFaceunityViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 47E072AE2636A6C80027D05E /* ThirdBeautyFaceunityViewController.xib */; };
88FC77AE268C625300768C53 /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = 88FC77AD268C625300768C53 /* README.md */; };
88FC784A268C678A00768C53 /* RTCPushAndPlayEnterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88FC7848268C678A00768C53 /* RTCPushAndPlayEnterViewController.m */; };
88FC784B268C678A00768C53 /* RTCPushAndPlayEnterViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 88FC7849268C678A00768C53 /* RTCPushAndPlayEnterViewController.xib */; };
88FC7853268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88FC7851268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.m */; };
88FC7854268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 88FC7852268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.xib */; };
88FC7859268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 88FC7857268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.m */; };
88FC785A268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 88FC7858268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.xib */; };
9543A978C5ECF779E545D90F /* Pods_MLVB_API_Example_OC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DCF2DF80DA4D9CED9230AB9C /* Pods_MLVB_API_Example_OC.framework */; };
C1937C64274F75F700F19E99 /* LivePkUserInputViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1937C63274F75F700F19E99 /* LivePkUserInputViewController.m */; };
C1937C93274F799200F19E99 /* LiveLinkOrPkStreamInputViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1937C84274F799200F19E99 /* LiveLinkOrPkStreamInputViewController.m */; };
C1937C94274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1937C85274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.m */; };
C1937C95274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C1937C86274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.xib */; };
C1937C96274F799200F19E99 /* LiveLinkAudienceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1937C88274F799200F19E99 /* LiveLinkAudienceViewController.m */; };
C1937C97274F799200F19E99 /* LiveInputBaseViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C1937C8C274F799200F19E99 /* LiveInputBaseViewController.xib */; };
C1937C98274F799200F19E99 /* LiveLinkAnchorViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C1937C8D274F799200F19E99 /* LiveLinkAnchorViewController.xib */; };
C1937C99274F799200F19E99 /* LiveLinkUserInputViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1937C8E274F799200F19E99 /* LiveLinkUserInputViewController.m */; };
C1937C9A274F799200F19E99 /* LiveInputBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1937C8F274F799200F19E99 /* LiveInputBaseViewController.m */; };
C1937C9B274F799200F19E99 /* LiveLinkAnchorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1937C90274F799200F19E99 /* LiveLinkAnchorViewController.m */; };
C1937C9C274F799200F19E99 /* LiveLinkAudienceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C1937C92274F799200F19E99 /* LiveLinkAudienceViewController.xib */; };
C1937CBD275080CB00F19E99 /* LivePkFindPkUserController.m in Sources */ = {isa = PBXBuildFile; fileRef = C1937CBB275080CB00F19E99 /* LivePkFindPkUserController.m */; };
EB147B16282B907C00C0E2DC /* ThirdBeautyTencentEffectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB147B15282B907C00C0E2DC /* ThirdBeautyTencentEffectViewController.m */; };
EB147B18282B908100C0E2DC /* ThirdBeautyTencentEffectViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB147B17282B908100C0E2DC /* ThirdBeautyTencentEffectViewController.xib */; };
EB147B1B282D2F1200C0E2DC /* ThirdBeautyEntranceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = EB147B1A282D2F1200C0E2DC /* ThirdBeautyEntranceViewController.xib */; };
EB147B1D282D2F1700C0E2DC /* ThirdBeautyEntranceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EB147B1C282D2F1700C0E2DC /* ThirdBeautyEntranceViewController.m */; };
ED14F7F22B91D5C100E52959 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED14F7F12B91D5C100E52959 /* CoreMotion.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
8894458126282A3200193FAD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 8887C552262151200035C0B9 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8894456826282A3200193FAD;
remoteInfo = TXReplayKit_Screen;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
47E074332638FCCC0027D05E /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
889445612628299500193FAD /* Embed App Extensions */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 13;
files = (
8894458326282A3200193FAD /* TXReplayKit_Screen.appex in Embed App Extensions */,
);
name = "Embed App Extensions";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
0C58A84EBA4280E68ABCC890 /* Pods-MLVB-API-Example-OC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MLVB-API-Example-OC.release.xcconfig"; path = "Target Support Files/Pods-MLVB-API-Example-OC/Pods-MLVB-API-Example-OC.release.xcconfig"; sourceTree = "<group>"; };
3907DE6E291511920055D243 /* TimeShiftViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeShiftViewController.m; sourceTree = "<group>"; };
3907DE6F291511920055D243 /* TimeShiftHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeShiftHelper.m; sourceTree = "<group>"; };
3907DE70291511920055D243 /* TimeShiftViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TimeShiftViewController.xib; sourceTree = "<group>"; };
3907DE71291511920055D243 /* TimeShiftHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeShiftHelper.h; sourceTree = "<group>"; };
3907DE72291511920055D243 /* TimeShiftViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeShiftViewController.h; sourceTree = "<group>"; };
400C520126A67EE30036AC40 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
406AB163280048BB00A99B81 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
406AB165280048C800A99B81 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
406AB167280048D800A99B81 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
406AB169280048E100A99B81 /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; };
40D550EB26A6A9BF00FE9F13 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
4723A7BE26315F920094AC81 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
4723A7C126315FA30094AC81 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
4723A7C326315FAA0094AC81 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
4723A88E2631666E0094AC81 /* NSString+Common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+Common.h"; sourceTree = "<group>"; };
4723A88F2631666E0094AC81 /* NSString+Common.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSString+Common.m"; sourceTree = "<group>"; };
47748037283E21F900505C4C /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; };
477EC96726268B09007AAC4F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
477EC96926268B09007AAC4F /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
477EC96C26268B09007AAC4F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
477EC96E26268B09007AAC4F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
477EC96F26268B09007AAC4F /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
477EC97026268B09007AAC4F /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
477EC97126268B09007AAC4F /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
477EC9A026268CB9007AAC4F /* ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
477EC9A126268CB9007AAC4F /* ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
477EC9A926268D0F007AAC4F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localized.strings; sourceTree = "<group>"; };
477EC9AC26268D61007AAC4F /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localized.strings"; sourceTree = "<group>"; };
477EC9AE26268DC8007AAC4F /* AppLocalized.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppLocalized.h; sourceTree = "<group>"; };
477EC9AF26268DC8007AAC4F /* AppLocalized.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppLocalized.m; sourceTree = "<group>"; };
477EC9B226269568007AAC4F /* HomeTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeTableViewCell.h; sourceTree = "<group>"; };
477EC9B326269568007AAC4F /* HomeTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeTableViewCell.m; sourceTree = "<group>"; };
477EC9B426269568007AAC4F /* HomeTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeTableViewCell.xib; sourceTree = "<group>"; };
477EC9C12626D6AB007AAC4F /* UIColor+Hex.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
477EC9C22626D6AB007AAC4F /* UIColor+Hex.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
477EC9F12626F77E007AAC4F /* MLVB-API-Example-OC-PrefixHeader.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MLVB-API-Example-OC-PrefixHeader.pch"; sourceTree = "<group>"; };
477ECA082627D344007AAC4F /* UIViewController+AlertViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIViewController+AlertViewController.h"; sourceTree = "<group>"; };
477ECA092627D344007AAC4F /* UIViewController+AlertViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+AlertViewController.m"; sourceTree = "<group>"; };
47E07260263656110027D05E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
47E07263263656160027D05E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
47E072A22636A6C80027D05E /* CustomCameraHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomCameraHelper.m; sourceTree = "<group>"; };
47E072A82636A6C80027D05E /* CustomCameraHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomCameraHelper.h; sourceTree = "<group>"; };
47E072AE2636A6C80027D05E /* ThirdBeautyFaceunityViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ThirdBeautyFaceunityViewController.xib; sourceTree = "<group>"; };
47E072AF2636A6C80027D05E /* ThirdBeautyFaceunityViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThirdBeautyFaceunityViewController.m; sourceTree = "<group>"; };
47E072CC2636A6C80027D05E /* ThirdBeautyFaceunityViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThirdBeautyFaceunityViewController.h; sourceTree = "<group>"; };
47ECB9882626867C00201FCB /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
47ECB98B2626868400201FCB /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
47ECB98D2626868E00201FCB /* libresolv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
47F149E1286BF3E900781688 /* PictureInPictureViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PictureInPictureViewController.h; sourceTree = "<group>"; };
47F149E2286BF3E900781688 /* PictureInPictureViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PictureInPictureViewController.m; sourceTree = "<group>"; };
47F149E3286BF3E900781688 /* PictureInPictureViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PictureInPictureViewController.xib; sourceTree = "<group>"; };
47F6AE6E2AB7FD31003ABB14 /* PictureInPictureView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PictureInPictureView.h; sourceTree = "<group>"; };
47F6AE6F2AB7FD31003ABB14 /* PictureInPictureView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PictureInPictureView.m; sourceTree = "<group>"; };
880B3C482624411B002683FB /* GenerateTestUserSig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GenerateTestUserSig.m; sourceTree = "<group>"; };
880B3C492624411B002683FB /* GenerateTestUserSig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GenerateTestUserSig.h; sourceTree = "<group>"; };
88167CB0268488C2001D99DC /* LivePushCameraEnterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LivePushCameraEnterViewController.h; sourceTree = "<group>"; };
88167CB1268488C2001D99DC /* LivePushCameraEnterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LivePushCameraEnterViewController.m; sourceTree = "<group>"; };
88167CB2268488C2001D99DC /* LivePushCameraEnterViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LivePushCameraEnterViewController.xib; sourceTree = "<group>"; };
88167CC22684AC91001D99DC /* LivePushCameraViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LivePushCameraViewController.h; sourceTree = "<group>"; };
88167CC32684AC91001D99DC /* LivePushCameraViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LivePushCameraViewController.m; sourceTree = "<group>"; };
88167CC42684AC91001D99DC /* LivePushCameraViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LivePushCameraViewController.xib; sourceTree = "<group>"; };
88167CE82685BF58001D99DC /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
88167CEB2685BF8E001D99DC /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
8839C3B72689AE29000FF58C /* LivePushScreenViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LivePushScreenViewController.h; sourceTree = "<group>"; };
8839C3B82689AE29000FF58C /* LivePushScreenViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LivePushScreenViewController.m; sourceTree = "<group>"; };
8839C3B92689AE29000FF58C /* LivePushScreenViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LivePushScreenViewController.xib; sourceTree = "<group>"; };
8839C3C72689B93F000FF58C /* LivePlayEnterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LivePlayEnterViewController.h; sourceTree = "<group>"; };
8839C3C82689B93F000FF58C /* LivePlayEnterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LivePlayEnterViewController.m; sourceTree = "<group>"; };
8839C3C92689B93F000FF58C /* LivePlayEnterViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LivePlayEnterViewController.xib; sourceTree = "<group>"; };
8839C3D22689BEF5000FF58C /* LivePlayViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LivePlayViewController.h; sourceTree = "<group>"; };
8839C3D32689BEF5000FF58C /* LivePlayViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LivePlayViewController.m; sourceTree = "<group>"; };
8839C3D42689BEF5000FF58C /* LivePlayViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LivePlayViewController.xib; sourceTree = "<group>"; };
885A56442689ABB500D9D55F /* LivePushScreenEnterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LivePushScreenEnterViewController.h; sourceTree = "<group>"; };
885A56452689ABB500D9D55F /* LivePushScreenEnterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LivePushScreenEnterViewController.m; sourceTree = "<group>"; };
885A56462689ABB500D9D55F /* LivePushScreenEnterViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LivePushScreenEnterViewController.xib; sourceTree = "<group>"; };
885C0F7B3E130B0C370DD2E8 /* Pods-TXReplayKit_Screen.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TXReplayKit_Screen.debug.xcconfig"; path = "Target Support Files/Pods-TXReplayKit_Screen/Pods-TXReplayKit_Screen.debug.xcconfig"; sourceTree = "<group>"; };
8873801A28D9E5C300B0479E /* LebAutoBitrateViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LebAutoBitrateViewController.h; sourceTree = "<group>"; };
8873801B28D9E5C300B0479E /* LebAutoBitrateViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LebAutoBitrateViewController.m; sourceTree = "<group>"; };
8873801C28D9E5C300B0479E /* LebAutoBitrateViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LebAutoBitrateViewController.xib; sourceTree = "<group>"; };
8873802028DCA6FF00B0479E /* LebPlayEnterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LebPlayEnterViewController.h; sourceTree = "<group>"; };
8873802128DCA6FF00B0479E /* LebPlayEnterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LebPlayEnterViewController.m; sourceTree = "<group>"; };
8873802228DCA6FF00B0479E /* LebPlayEnterViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LebPlayEnterViewController.xib; sourceTree = "<group>"; };
8873802528DCA8CA00B0479E /* LebPlayViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LebPlayViewController.h; sourceTree = "<group>"; };
8873802628DCA8CA00B0479E /* LebPlayViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LebPlayViewController.m; sourceTree = "<group>"; };
8873802728DCA8CA00B0479E /* LebPlayViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LebPlayViewController.xib; sourceTree = "<group>"; };
8873802B28E18D6400B0479E /* HlsAutoBitrateViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HlsAutoBitrateViewController.h; sourceTree = "<group>"; };
8873802C28E18D6400B0479E /* HlsAutoBitrateViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HlsAutoBitrateViewController.m; sourceTree = "<group>"; };
8873802D28E18D6400B0479E /* HlsAutoBitrateViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HlsAutoBitrateViewController.xib; sourceTree = "<group>"; };
8887C55A262151200035C0B9 /* MLVB-API-Example-OC.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "MLVB-API-Example-OC.app"; sourceTree = BUILT_PRODUCTS_DIR; };
8894456926282A3200193FAD /* TXReplayKit_Screen.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = TXReplayKit_Screen.appex; sourceTree = BUILT_PRODUCTS_DIR; };
8894456A26282A3200193FAD /* ReplayKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReplayKit.framework; path = System/Library/Frameworks/ReplayKit.framework; sourceTree = SDKROOT; };
8894457726282A3200193FAD /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
88999071268486EC00CBC983 /* TRTCBroadcastExtensionLauncher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TRTCBroadcastExtensionLauncher.m; sourceTree = "<group>"; };
88999076268486EC00CBC983 /* SampleHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SampleHandler.m; sourceTree = "<group>"; };
88999077268486EC00CBC983 /* SampleHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SampleHandler.h; sourceTree = "<group>"; };
88999078268486EC00CBC983 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8899907B268486EC00CBC983 /* TRTCBroadcastExtensionLauncher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TRTCBroadcastExtensionLauncher.h; sourceTree = "<group>"; };
88A1A881268DA7DA007F630D /* LivePkAnchorViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LivePkAnchorViewController.h; sourceTree = "<group>"; };
88A1A882268DA7DA007F630D /* LivePkAnchorViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LivePkAnchorViewController.m; sourceTree = "<group>"; };
88A1A883268DA7DA007F630D /* LivePkAnchorViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LivePkAnchorViewController.xib; sourceTree = "<group>"; };
88A1A887268DA81A007F630D /* LivePkAudienceViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LivePkAudienceViewController.h; sourceTree = "<group>"; };
88A1A888268DA81A007F630D /* LivePkAudienceViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LivePkAudienceViewController.m; sourceTree = "<group>"; };
88A1A889268DA81A007F630D /* LivePkAudienceViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LivePkAudienceViewController.xib; sourceTree = "<group>"; };
88AB3E4F268A008C00A75212 /* URLUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = URLUtils.h; sourceTree = "<group>"; };
88AB3E50268A008C00A75212 /* URLUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = URLUtils.m; sourceTree = "<group>"; };
88BC38A12844710E00814931 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
88C4C05F268B503000FBB698 /* CustomVideoCaptureViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomVideoCaptureViewController.h; sourceTree = "<group>"; };
88C4C060268B503000FBB698 /* CustomVideoCaptureViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CustomVideoCaptureViewController.m; sourceTree = "<group>"; };
88C4C061268B503000FBB698 /* CustomVideoCaptureViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CustomVideoCaptureViewController.xib; sourceTree = "<group>"; };
88D788572685D849004B2509 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
88FC77AD268C625300768C53 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
88FC7847268C678A00768C53 /* RTCPushAndPlayEnterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RTCPushAndPlayEnterViewController.h; sourceTree = "<group>"; };
88FC7848268C678A00768C53 /* RTCPushAndPlayEnterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RTCPushAndPlayEnterViewController.m; sourceTree = "<group>"; };
88FC7849268C678A00768C53 /* RTCPushAndPlayEnterViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RTCPushAndPlayEnterViewController.xib; sourceTree = "<group>"; };
88FC7850268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RTCPushAndPlayAnchorViewController.h; sourceTree = "<group>"; };
88FC7851268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RTCPushAndPlayAnchorViewController.m; sourceTree = "<group>"; };
88FC7852268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RTCPushAndPlayAnchorViewController.xib; sourceTree = "<group>"; };
88FC7856268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RTCPushAndPlayAudienceViewController.h; sourceTree = "<group>"; };
88FC7857268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RTCPushAndPlayAudienceViewController.m; sourceTree = "<group>"; };
88FC7858268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RTCPushAndPlayAudienceViewController.xib; sourceTree = "<group>"; };
97A3EA6760997730612F7505 /* Pods-TXReplayKit_Screen.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TXReplayKit_Screen.release.xcconfig"; path = "Target Support Files/Pods-TXReplayKit_Screen/Pods-TXReplayKit_Screen.release.xcconfig"; sourceTree = "<group>"; };
AC0C1317A573DF7D6B6DABE2 /* Pods_TXReplayKit_Screen.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TXReplayKit_Screen.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C1937C62274F75F700F19E99 /* LivePkUserInputViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LivePkUserInputViewController.h; sourceTree = "<group>"; };
C1937C63274F75F700F19E99 /* LivePkUserInputViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LivePkUserInputViewController.m; sourceTree = "<group>"; };
C1937C83274F799100F19E99 /* LiveLinkAnchorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveLinkAnchorViewController.h; sourceTree = "<group>"; };
C1937C84274F799200F19E99 /* LiveLinkOrPkStreamInputViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveLinkOrPkStreamInputViewController.m; sourceTree = "<group>"; };
C1937C85274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveLinkOrPkSwitchRoleViewController.m; sourceTree = "<group>"; };
C1937C86274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveLinkOrPkSwitchRoleViewController.xib; sourceTree = "<group>"; };
C1937C87274F799200F19E99 /* LiveLinkAudienceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveLinkAudienceViewController.h; sourceTree = "<group>"; };
C1937C88274F799200F19E99 /* LiveLinkAudienceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveLinkAudienceViewController.m; sourceTree = "<group>"; };
C1937C89274F799200F19E99 /* LiveLinkUserInputViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveLinkUserInputViewController.h; sourceTree = "<group>"; };
C1937C8A274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveLinkOrPkSwitchRoleViewController.h; sourceTree = "<group>"; };
C1937C8B274F799200F19E99 /* LiveInputBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveInputBaseViewController.h; sourceTree = "<group>"; };
C1937C8C274F799200F19E99 /* LiveInputBaseViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveInputBaseViewController.xib; sourceTree = "<group>"; };
C1937C8D274F799200F19E99 /* LiveLinkAnchorViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveLinkAnchorViewController.xib; sourceTree = "<group>"; };
C1937C8E274F799200F19E99 /* LiveLinkUserInputViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveLinkUserInputViewController.m; sourceTree = "<group>"; };
C1937C8F274F799200F19E99 /* LiveInputBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveInputBaseViewController.m; sourceTree = "<group>"; };
C1937C90274F799200F19E99 /* LiveLinkAnchorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiveLinkAnchorViewController.m; sourceTree = "<group>"; };
C1937C91274F799200F19E99 /* LiveLinkOrPkStreamInputViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiveLinkOrPkStreamInputViewController.h; sourceTree = "<group>"; };
C1937C92274F799200F19E99 /* LiveLinkAudienceViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LiveLinkAudienceViewController.xib; sourceTree = "<group>"; };
C1937CBB275080CB00F19E99 /* LivePkFindPkUserController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LivePkFindPkUserController.m; sourceTree = "<group>"; };
C1937CBC275080CB00F19E99 /* LivePkFindPkUserController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LivePkFindPkUserController.h; sourceTree = "<group>"; };
DCF2DF80DA4D9CED9230AB9C /* Pods_MLVB_API_Example_OC.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MLVB_API_Example_OC.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EB147B13282B905000C0E2DC /* ThirdBeautyTencentEffectViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ThirdBeautyTencentEffectViewController.h; sourceTree = "<group>"; };
EB147B15282B907C00C0E2DC /* ThirdBeautyTencentEffectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThirdBeautyTencentEffectViewController.m; sourceTree = "<group>"; };
EB147B17282B908100C0E2DC /* ThirdBeautyTencentEffectViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ThirdBeautyTencentEffectViewController.xib; sourceTree = "<group>"; };
EB147B19282D2F0D00C0E2DC /* ThirdBeautyEntranceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThirdBeautyEntranceViewController.h; sourceTree = "<group>"; };
EB147B1A282D2F1200C0E2DC /* ThirdBeautyEntranceViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ThirdBeautyEntranceViewController.xib; sourceTree = "<group>"; };
EB147B1C282D2F1700C0E2DC /* ThirdBeautyEntranceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThirdBeautyEntranceViewController.m; sourceTree = "<group>"; };
ED14F7F12B91D5C100E52959 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
FB3939E2552F6AFE9F587046 /* Pods-MLVB-API-Example-OC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MLVB-API-Example-OC.debug.xcconfig"; path = "Target Support Files/Pods-MLVB-API-Example-OC/Pods-MLVB-API-Example-OC.debug.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8887C557262151200035C0B9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ED14F7F22B91D5C100E52959 /* CoreMotion.framework in Frameworks */,
4723A7C426315FAA0094AC81 /* AVFoundation.framework in Frameworks */,
406AB164280048BB00A99B81 /* VideoToolbox.framework in Frameworks */,
88167CEC2685BF97001D99DC /* libz.tbd in Frameworks */,
88167CEA2685BF7B001D99DC /* UIKit.framework in Frameworks */,
4723A7BF26315F920094AC81 /* OpenGLES.framework in Frameworks */,
47ECB98C2626868400201FCB /* Accelerate.framework in Frameworks */,
4723A7C026315F9C0094AC81 /* Accelerate.framework in Frameworks */,
40D550EC26A6A9D800FE9F13 /* libsqlite3.0.tbd in Frameworks */,
406AB16A280048E100A99B81 /* MetalKit.framework in Frameworks */,
406AB168280048D800A99B81 /* CoreTelephony.framework in Frameworks */,
47ECB98E2626868E00201FCB /* libresolv.tbd in Frameworks */,
88BC38A22844710E00814931 /* GLKit.framework in Frameworks */,
88167CE92685BF58001D99DC /* Foundation.framework in Frameworks */,
406AB166280048C800A99B81 /* SystemConfiguration.framework in Frameworks */,
400C520226A67EE30036AC40 /* AssetsLibrary.framework in Frameworks */,
4723A7C526315FB10094AC81 /* libc++.tbd in Frameworks */,
47ECB9892626867C00201FCB /* libc++.tbd in Frameworks */,
47748038283E21F900505C4C /* CoreServices.framework in Frameworks */,
4723A7C226315FA30094AC81 /* CoreMedia.framework in Frameworks */,
9543A978C5ECF779E545D90F /* Pods_MLVB_API_Example_OC.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8894456626282A3200193FAD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
88A2C84726706305006FC026 /* libc++.tbd in Frameworks */,
406AB16E2800491700A99B81 /* SystemConfiguration.framework in Frameworks */,
88A2C846267062FF006FC026 /* Accelerate.framework in Frameworks */,
406AB16C280048FB00A99B81 /* VideoToolbox.framework in Frameworks */,
406AB16F2800492000A99B81 /* CoreTelephony.framework in Frameworks */,
406AB16D2800490100A99B81 /* MetalKit.framework in Frameworks */,
8894456B26282A3200193FAD /* ReplayKit.framework in Frameworks */,
10D3A0A025E4278D39D5ED2C /* Pods_TXReplayKit_Screen.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
3907DE6D291511920055D243 /* TimeShiftPlay */ = {
isa = PBXGroup;
children = (
3907DE71291511920055D243 /* TimeShiftHelper.h */,
3907DE6F291511920055D243 /* TimeShiftHelper.m */,
3907DE72291511920055D243 /* TimeShiftViewController.h */,
3907DE6E291511920055D243 /* TimeShiftViewController.m */,
3907DE70291511920055D243 /* TimeShiftViewController.xib */,
);
path = TimeShiftPlay;
sourceTree = "<group>";
};
477EC95A26268B09007AAC4F /* App */ = {
isa = PBXGroup;
children = (
88AB3E4D2689FC5D00A75212 /* Common */,
477EC9EF2626F754007AAC4F /* PCH */,
477EC9BA2626D64F007AAC4F /* Extension */,
477EC99F26268CB9007AAC4F /* Home */,
477EC96926268B09007AAC4F /* AppDelegate.h */,
477EC97026268B09007AAC4F /* AppDelegate.m */,
477EC97126268B09007AAC4F /* Info.plist */,
477EC96B26268B09007AAC4F /* LaunchScreen.storyboard */,
477EC96F26268B09007AAC4F /* main.m */,
477EC96D26268B09007AAC4F /* Main.storyboard */,
);
path = App;
sourceTree = "<group>";
};
477EC96626268B09007AAC4F /* Resource */ = {
isa = PBXGroup;
children = (
477EC9A426268CE4007AAC4F /* Localized */,
477EC96726268B09007AAC4F /* Assets.xcassets */,
);
path = Resource;
sourceTree = "<group>";
};
477EC96826268B09007AAC4F /* Basic */ = {
isa = PBXGroup;
children = (
88167CAF26848883001D99DC /* LivePushCamera */,
88167CB92684A04C001D99DC /* LivePushScreen */,
8839C3C62689B900000FF58C /* LivePlay */,
8873801F28DCA6D300B0479E /* LebPlay */,
88AB3E56268ABB2C00A75212 /* LiveLink */,
888C77E4268DA734004D6A7B /* LivePK */,
);
path = Basic;
sourceTree = "<group>";
};
477EC99F26268CB9007AAC4F /* Home */ = {
isa = PBXGroup;
children = (
477EC9A126268CB9007AAC4F /* ViewController.h */,
477EC9A026268CB9007AAC4F /* ViewController.m */,
477EC9B226269568007AAC4F /* HomeTableViewCell.h */,
477EC9B326269568007AAC4F /* HomeTableViewCell.m */,
477EC9B426269568007AAC4F /* HomeTableViewCell.xib */,
);
path = Home;
sourceTree = "<group>";
};
477EC9A426268CE4007AAC4F /* Localized */ = {
isa = PBXGroup;
children = (
477EC9AE26268DC8007AAC4F /* AppLocalized.h */,
477EC9AF26268DC8007AAC4F /* AppLocalized.m */,
477EC9AA26268D0F007AAC4F /* Localized.strings */,
47E07261263656110027D05E /* InfoPlist.strings */,
);
path = Localized;
sourceTree = "<group>";
};
477EC9BA2626D64F007AAC4F /* Extension */ = {
isa = PBXGroup;
children = (
477EC9C12626D6AB007AAC4F /* UIColor+Hex.h */,
477EC9C22626D6AB007AAC4F /* UIColor+Hex.m */,
477ECA082627D344007AAC4F /* UIViewController+AlertViewController.h */,
477ECA092627D344007AAC4F /* UIViewController+AlertViewController.m */,
4723A88E2631666E0094AC81 /* NSString+Common.h */,
4723A88F2631666E0094AC81 /* NSString+Common.m */,
);
path = Extension;
sourceTree = "<group>";
};
477EC9EF2626F754007AAC4F /* PCH */ = {
isa = PBXGroup;
children = (
477EC9F12626F77E007AAC4F /* MLVB-API-Example-OC-PrefixHeader.pch */,
);
path = PCH;
sourceTree = "<group>";
};
47E0727A2636A6C80027D05E /* Advanced */ = {
isa = PBXGroup;
children = (
8873801928D9E49100B0479E /* LebAutoBitrate */,
8873802A28E18C8B00B0479E /* HlsAutoBitrate */,
47F149E0286BF3A600781688 /* PictureInPicture */,
47E0729D2636A6C80027D05E /* CustomVideoCapture */,
3907DE6D291511920055D243 /* TimeShiftPlay */,
47E072AD2636A6C80027D05E /* ThirdBeauty */,
88FC7846268C674800768C53 /* RTCPushAndPlay */,
);
path = Advanced;
sourceTree = "<group>";
};
47E0729D2636A6C80027D05E /* CustomVideoCapture */ = {
isa = PBXGroup;
children = (
47E072A12636A6C80027D05E /* Helper */,
88C4C05F268B503000FBB698 /* CustomVideoCaptureViewController.h */,
88C4C060268B503000FBB698 /* CustomVideoCaptureViewController.m */,
88C4C061268B503000FBB698 /* CustomVideoCaptureViewController.xib */,
);
path = CustomVideoCapture;
sourceTree = "<group>";
};
47E072A12636A6C80027D05E /* Helper */ = {
isa = PBXGroup;
children = (
47E072A82636A6C80027D05E /* CustomCameraHelper.h */,
47E072A22636A6C80027D05E /* CustomCameraHelper.m */,
);
path = Helper;
sourceTree = "<group>";
};
47E072AD2636A6C80027D05E /* ThirdBeauty */ = {
isa = PBXGroup;
children = (
EB147B19282D2F0D00C0E2DC /* ThirdBeautyEntranceViewController.h */,
EB147B1C282D2F1700C0E2DC /* ThirdBeautyEntranceViewController.m */,
EB147B1A282D2F1200C0E2DC /* ThirdBeautyEntranceViewController.xib */,
EB147B13282B905000C0E2DC /* ThirdBeautyTencentEffectViewController.h */,
EB147B15282B907C00C0E2DC /* ThirdBeautyTencentEffectViewController.m */,
EB147B17282B908100C0E2DC /* ThirdBeautyTencentEffectViewController.xib */,
47E072CC2636A6C80027D05E /* ThirdBeautyFaceunityViewController.h */,
47E072AF2636A6C80027D05E /* ThirdBeautyFaceunityViewController.m */,
47E072AE2636A6C80027D05E /* ThirdBeautyFaceunityViewController.xib */,
88FC77AD268C625300768C53 /* README.md */,
);
path = ThirdBeauty;
sourceTree = "<group>";
};
47F149E0286BF3A600781688 /* PictureInPicture */ = {
isa = PBXGroup;
children = (
47F149E1286BF3E900781688 /* PictureInPictureViewController.h */,
47F149E2286BF3E900781688 /* PictureInPictureViewController.m */,
47F149E3286BF3E900781688 /* PictureInPictureViewController.xib */,
47F6AE6E2AB7FD31003ABB14 /* PictureInPictureView.h */,
47F6AE6F2AB7FD31003ABB14 /* PictureInPictureView.m */,
);
path = PictureInPicture;
sourceTree = "<group>";
};
880B3C472624411B002683FB /* Debug */ = {
isa = PBXGroup;
children = (
880B3C482624411B002683FB /* GenerateTestUserSig.m */,
880B3C492624411B002683FB /* GenerateTestUserSig.h */,
);
path = Debug;
sourceTree = "<group>";
};
88167CAF26848883001D99DC /* LivePushCamera */ = {
isa = PBXGroup;
children = (
88167CB0268488C2001D99DC /* LivePushCameraEnterViewController.h */,
88167CB1268488C2001D99DC /* LivePushCameraEnterViewController.m */,
88167CB2268488C2001D99DC /* LivePushCameraEnterViewController.xib */,
88167CC22684AC91001D99DC /* LivePushCameraViewController.h */,
88167CC32684AC91001D99DC /* LivePushCameraViewController.m */,
88167CC42684AC91001D99DC /* LivePushCameraViewController.xib */,
);
path = LivePushCamera;
sourceTree = "<group>";
};
88167CB92684A04C001D99DC /* LivePushScreen */ = {
isa = PBXGroup;
children = (
88999075268486EC00CBC983 /* TXReplayKit_Screen */,
885A56442689ABB500D9D55F /* LivePushScreenEnterViewController.h */,
885A56452689ABB500D9D55F /* LivePushScreenEnterViewController.m */,
885A56462689ABB500D9D55F /* LivePushScreenEnterViewController.xib */,
8839C3B72689AE29000FF58C /* LivePushScreenViewController.h */,
8839C3B82689AE29000FF58C /* LivePushScreenViewController.m */,
8839C3B92689AE29000FF58C /* LivePushScreenViewController.xib */,
8899907B268486EC00CBC983 /* TRTCBroadcastExtensionLauncher.h */,
88999071268486EC00CBC983 /* TRTCBroadcastExtensionLauncher.m */,
);
path = LivePushScreen;
sourceTree = "<group>";
};
8839C3C62689B900000FF58C /* LivePlay */ = {
isa = PBXGroup;
children = (
8839C3C72689B93F000FF58C /* LivePlayEnterViewController.h */,
8839C3C82689B93F000FF58C /* LivePlayEnterViewController.m */,
8839C3C92689B93F000FF58C /* LivePlayEnterViewController.xib */,
8839C3D22689BEF5000FF58C /* LivePlayViewController.h */,
8839C3D32689BEF5000FF58C /* LivePlayViewController.m */,
8839C3D42689BEF5000FF58C /* LivePlayViewController.xib */,
);
path = LivePlay;
sourceTree = "<group>";
};
8873801928D9E49100B0479E /* LebAutoBitrate */ = {
isa = PBXGroup;
children = (
8873801A28D9E5C300B0479E /* LebAutoBitrateViewController.h */,
8873801B28D9E5C300B0479E /* LebAutoBitrateViewController.m */,
8873801C28D9E5C300B0479E /* LebAutoBitrateViewController.xib */,
);
path = LebAutoBitrate;
sourceTree = "<group>";
};
8873801F28DCA6D300B0479E /* LebPlay */ = {
isa = PBXGroup;
children = (
8873802028DCA6FF00B0479E /* LebPlayEnterViewController.h */,
8873802128DCA6FF00B0479E /* LebPlayEnterViewController.m */,
8873802228DCA6FF00B0479E /* LebPlayEnterViewController.xib */,
8873802528DCA8CA00B0479E /* LebPlayViewController.h */,
8873802628DCA8CA00B0479E /* LebPlayViewController.m */,
8873802728DCA8CA00B0479E /* LebPlayViewController.xib */,
);
path = LebPlay;
sourceTree = "<group>";
};
8873802A28E18C8B00B0479E /* HlsAutoBitrate */ = {
isa = PBXGroup;
children = (
8873802B28E18D6400B0479E /* HlsAutoBitrateViewController.h */,
8873802C28E18D6400B0479E /* HlsAutoBitrateViewController.m */,
8873802D28E18D6400B0479E /* HlsAutoBitrateViewController.xib */,
);
path = HlsAutoBitrate;
sourceTree = "<group>";
};
8887C551262151200035C0B9 = {
isa = PBXGroup;
children = (
477EC95A26268B09007AAC4F /* App */,
477EC96826268B09007AAC4F /* Basic */,
47E0727A2636A6C80027D05E /* Advanced */,
477EC96626268B09007AAC4F /* Resource */,
880B3C472624411B002683FB /* Debug */,
8887C55B262151200035C0B9 /* Products */,
88ED6FE02624364700C75B9D /* Frameworks */,
D7D211665A0E5D447261BAB1 /* Pods */,
);
sourceTree = "<group>";
};
8887C55B262151200035C0B9 /* Products */ = {
isa = PBXGroup;
children = (
8887C55A262151200035C0B9 /* MLVB-API-Example-OC.app */,
8894456926282A3200193FAD /* TXReplayKit_Screen.appex */,
);
name = Products;
sourceTree = "<group>";
};
888C77E4268DA734004D6A7B /* LivePK */ = {
isa = PBXGroup;
children = (
C1937CBC275080CB00F19E99 /* LivePkFindPkUserController.h */,
C1937CBB275080CB00F19E99 /* LivePkFindPkUserController.m */,
C1937C62274F75F700F19E99 /* LivePkUserInputViewController.h */,
C1937C63274F75F700F19E99 /* LivePkUserInputViewController.m */,
88A1A881268DA7DA007F630D /* LivePkAnchorViewController.h */,
88A1A882268DA7DA007F630D /* LivePkAnchorViewController.m */,
88A1A883268DA7DA007F630D /* LivePkAnchorViewController.xib */,
88A1A887268DA81A007F630D /* LivePkAudienceViewController.h */,
88A1A888268DA81A007F630D /* LivePkAudienceViewController.m */,
88A1A889268DA81A007F630D /* LivePkAudienceViewController.xib */,
);
path = LivePK;
sourceTree = "<group>";
};
88999075268486EC00CBC983 /* TXReplayKit_Screen */ = {
isa = PBXGroup;
children = (
88999076268486EC00CBC983 /* SampleHandler.m */,
88999077268486EC00CBC983 /* SampleHandler.h */,
88999078268486EC00CBC983 /* Info.plist */,
);
path = TXReplayKit_Screen;
sourceTree = "<group>";
};
88AB3E4D2689FC5D00A75212 /* Common */ = {
isa = PBXGroup;
children = (
88AB3E4F268A008C00A75212 /* URLUtils.h */,
88AB3E50268A008C00A75212 /* URLUtils.m */,
);
path = Common;
sourceTree = "<group>";
};
88AB3E56268ABB2C00A75212 /* LiveLink */ = {
isa = PBXGroup;
children = (
C1937C83274F799100F19E99 /* LiveLinkAnchorViewController.h */,
C1937C90274F799200F19E99 /* LiveLinkAnchorViewController.m */,
C1937C8D274F799200F19E99 /* LiveLinkAnchorViewController.xib */,
C1937C87274F799200F19E99 /* LiveLinkAudienceViewController.h */,
C1937C88274F799200F19E99 /* LiveLinkAudienceViewController.m */,
C1937C92274F799200F19E99 /* LiveLinkAudienceViewController.xib */,
C1937C8B274F799200F19E99 /* LiveInputBaseViewController.h */,
C1937C8F274F799200F19E99 /* LiveInputBaseViewController.m */,
C1937C8C274F799200F19E99 /* LiveInputBaseViewController.xib */,
C1937C91274F799200F19E99 /* LiveLinkOrPkStreamInputViewController.h */,
C1937C84274F799200F19E99 /* LiveLinkOrPkStreamInputViewController.m */,
C1937C8A274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.h */,
C1937C85274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.m */,
C1937C86274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.xib */,
C1937C89274F799200F19E99 /* LiveLinkUserInputViewController.h */,
C1937C8E274F799200F19E99 /* LiveLinkUserInputViewController.m */,
);
path = LiveLink;
sourceTree = "<group>";
};
88ED6FE02624364700C75B9D /* Frameworks */ = {
isa = PBXGroup;
children = (
ED14F7F12B91D5C100E52959 /* CoreMotion.framework */,
88BC38A12844710E00814931 /* GLKit.framework */,
47748037283E21F900505C4C /* CoreServices.framework */,
406AB169280048E100A99B81 /* MetalKit.framework */,
406AB167280048D800A99B81 /* CoreTelephony.framework */,
406AB165280048C800A99B81 /* SystemConfiguration.framework */,
406AB163280048BB00A99B81 /* VideoToolbox.framework */,
40D550EB26A6A9BF00FE9F13 /* libsqlite3.0.tbd */,
400C520126A67EE30036AC40 /* AssetsLibrary.framework */,
88D788572685D849004B2509 /* libsqlite3.tbd */,
88167CEB2685BF8E001D99DC /* libz.tbd */,
88167CE82685BF58001D99DC /* Foundation.framework */,
4723A7C326315FAA0094AC81 /* AVFoundation.framework */,
4723A7C126315FA30094AC81 /* CoreMedia.framework */,
4723A7BE26315F920094AC81 /* OpenGLES.framework */,
47ECB98D2626868E00201FCB /* libresolv.tbd */,
47ECB98B2626868400201FCB /* Accelerate.framework */,
47ECB9882626867C00201FCB /* libc++.tbd */,
8894456A26282A3200193FAD /* ReplayKit.framework */,
8894457726282A3200193FAD /* UIKit.framework */,
DCF2DF80DA4D9CED9230AB9C /* Pods_MLVB_API_Example_OC.framework */,
AC0C1317A573DF7D6B6DABE2 /* Pods_TXReplayKit_Screen.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
88FC7846268C674800768C53 /* RTCPushAndPlay */ = {
isa = PBXGroup;
children = (
88FC7847268C678A00768C53 /* RTCPushAndPlayEnterViewController.h */,
88FC7848268C678A00768C53 /* RTCPushAndPlayEnterViewController.m */,
88FC7849268C678A00768C53 /* RTCPushAndPlayEnterViewController.xib */,
88FC7850268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.h */,
88FC7851268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.m */,
88FC7852268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.xib */,
88FC7856268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.h */,
88FC7857268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.m */,
88FC7858268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.xib */,
);
path = RTCPushAndPlay;
sourceTree = "<group>";
};
D7D211665A0E5D447261BAB1 /* Pods */ = {
isa = PBXGroup;
children = (
FB3939E2552F6AFE9F587046 /* Pods-MLVB-API-Example-OC.debug.xcconfig */,
0C58A84EBA4280E68ABCC890 /* Pods-MLVB-API-Example-OC.release.xcconfig */,
885C0F7B3E130B0C370DD2E8 /* Pods-TXReplayKit_Screen.debug.xcconfig */,
97A3EA6760997730612F7505 /* Pods-TXReplayKit_Screen.release.xcconfig */,
);
path = Pods;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
8887C559262151200035C0B9 /* MLVB-API-Example-OC */ = {
isa = PBXNativeTarget;
buildConfigurationList = 8887C573262151270035C0B9 /* Build configuration list for PBXNativeTarget "MLVB-API-Example-OC" */;
buildPhases = (
32DFEBF3420EA50A9E3B7E43 /* [CP] Check Pods Manifest.lock */,
8887C556262151200035C0B9 /* Sources */,
8887C557262151200035C0B9 /* Frameworks */,
8887C558262151200035C0B9 /* Resources */,
889445612628299500193FAD /* Embed App Extensions */,
47E074332638FCCC0027D05E /* Embed Frameworks */,
2BFC5E5E8855EAA69AB3CD69 /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
dependencies = (
8894458226282A3200193FAD /* PBXTargetDependency */,
);
name = "MLVB-API-Example-OC";
productName = "TRTCSimpleDemo-OC";
productReference = 8887C55A262151200035C0B9 /* MLVB-API-Example-OC.app */;
productType = "com.apple.product-type.application";
};
8894456826282A3200193FAD /* TXReplayKit_Screen */ = {
isa = PBXNativeTarget;
buildConfigurationList = 8894458726282A3200193FAD /* Build configuration list for PBXNativeTarget "TXReplayKit_Screen" */;
buildPhases = (
C559DE11CBDEEC1A62E5BFFA /* [CP] Check Pods Manifest.lock */,
8894456526282A3200193FAD /* Sources */,
8894456626282A3200193FAD /* Frameworks */,
8894456726282A3200193FAD /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = TXReplayKit_Screen;
productName = TXReplayKit_Screen;
productReference = 8894456926282A3200193FAD /* TXReplayKit_Screen.appex */;
productType = "com.apple.product-type.app-extension";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
8887C552262151200035C0B9 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 1240;
LastUpgradeCheck = 1240;
TargetAttributes = {
8887C559262151200035C0B9 = {
CreatedOnToolsVersion = 12.4;
};
8894456826282A3200193FAD = {
CreatedOnToolsVersion = 12.4;
};
};
};
buildConfigurationList = 8887C555262151200035C0B9 /* Build configuration list for PBXProject "MLVB-API-Example-OC" */;
compatibilityVersion = "Xcode 9.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
"zh-Hans",
);
mainGroup = 8887C551262151200035C0B9;
productRefGroup = 8887C55B262151200035C0B9 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
8887C559262151200035C0B9 /* MLVB-API-Example-OC */,
8894456826282A3200193FAD /* TXReplayKit_Screen */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
8887C558262151200035C0B9 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C1937C95274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.xib in Resources */,
8839C3D62689BEF5000FF58C /* LivePlayViewController.xib in Resources */,
88FC784B268C678A00768C53 /* RTCPushAndPlayEnterViewController.xib in Resources */,
C1937C97274F799200F19E99 /* LiveInputBaseViewController.xib in Resources */,
EB147B1B282D2F1200C0E2DC /* ThirdBeautyEntranceViewController.xib in Resources */,
88A1A88B268DA81A007F630D /* LivePkAudienceViewController.xib in Resources */,
8839C3BB2689AE29000FF58C /* LivePushScreenViewController.xib in Resources */,
885A56482689ABB500D9D55F /* LivePushScreenEnterViewController.xib in Resources */,
477EC97A26268B0A007AAC4F /* Assets.xcassets in Resources */,
88FC77AE268C625300768C53 /* README.md in Resources */,
8873801E28D9E5C400B0479E /* LebAutoBitrateViewController.xib in Resources */,
8873802428DCA6FF00B0479E /* LebPlayEnterViewController.xib in Resources */,
8873802928DCA8CA00B0479E /* LebPlayViewController.xib in Resources */,
477EC97D26268B0A007AAC4F /* Main.storyboard in Resources */,
8839C3CB2689B93F000FF58C /* LivePlayEnterViewController.xib in Resources */,
477EC9A826268D0F007AAC4F /* Localized.strings in Resources */,
88167CB4268488C2001D99DC /* LivePushCameraEnterViewController.xib in Resources */,
88C4C063268B503000FBB698 /* CustomVideoCaptureViewController.xib in Resources */,
C1937C9C274F799200F19E99 /* LiveLinkAudienceViewController.xib in Resources */,
88A1A885268DA7DA007F630D /* LivePkAnchorViewController.xib in Resources */,
88FC785A268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.xib in Resources */,
477EC9B626269568007AAC4F /* HomeTableViewCell.xib in Resources */,
C1937C98274F799200F19E99 /* LiveLinkAnchorViewController.xib in Resources */,
EB147B18282B908100C0E2DC /* ThirdBeautyTencentEffectViewController.xib in Resources */,
3907DE75291511920055D243 /* TimeShiftViewController.xib in Resources */,
477EC97C26268B0A007AAC4F /* LaunchScreen.storyboard in Resources */,
88167CC62684AC91001D99DC /* LivePushCameraViewController.xib in Resources */,
88C4C06C268C49FD00FBB698 /* ThirdBeautyFaceunityViewController.xib in Resources */,
47E0725F263656110027D05E /* InfoPlist.strings in Resources */,
8873802F28E18D6500B0479E /* HlsAutoBitrateViewController.xib in Resources */,
47F149E5286BF3E900781688 /* PictureInPictureViewController.xib in Resources */,
88FC7854268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8894456726282A3200193FAD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
88AB3E4B2689D65D00A75212 /* Localized.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
2BFC5E5E8855EAA69AB3CD69 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-MLVB-API-Example-OC/Pods-MLVB-API-Example-OC-frameworks-${CONFIGURATION}-input-files.xcfilelist",
);
name = "[CP] Embed Pods Frameworks";
outputFileListPaths = (
"${PODS_ROOT}/Target Support Files/Pods-MLVB-API-Example-OC/Pods-MLVB-API-Example-OC-frameworks-${CONFIGURATION}-output-files.xcfilelist",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MLVB-API-Example-OC/Pods-MLVB-API-Example-OC-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
32DFEBF3420EA50A9E3B7E43 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-MLVB-API-Example-OC-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
C559DE11CBDEEC1A62E5BFFA /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-TXReplayKit_Screen-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
8887C556262151200035C0B9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
47F6AE702AB7FD31003ABB14 /* PictureInPictureView.m in Sources */,
477EC9A226268CB9007AAC4F /* ViewController.m in Sources */,
C1937C94274F799200F19E99 /* LiveLinkOrPkSwitchRoleViewController.m in Sources */,
C1937C64274F75F700F19E99 /* LivePkUserInputViewController.m in Sources */,
88A1A88A268DA81A007F630D /* LivePkAudienceViewController.m in Sources */,
477EC9C32626D6AB007AAC4F /* UIColor+Hex.m in Sources */,
C1937C9B274F799200F19E99 /* LiveLinkAnchorViewController.m in Sources */,
C1937C9A274F799200F19E99 /* LiveInputBaseViewController.m in Sources */,
8839C3CA2689B93F000FF58C /* LivePlayEnterViewController.m in Sources */,
47E073062636A6C80027D05E /* CustomCameraHelper.m in Sources */,
8839C3BA2689AE29000FF58C /* LivePushScreenViewController.m in Sources */,
88C4C062268B503000FBB698 /* CustomVideoCaptureViewController.m in Sources */,
8873802E28E18D6500B0479E /* HlsAutoBitrateViewController.m in Sources */,
88167CB3268488C2001D99DC /* LivePushCameraEnterViewController.m in Sources */,
88FC784A268C678A00768C53 /* RTCPushAndPlayEnterViewController.m in Sources */,
8873802328DCA6FF00B0479E /* LebPlayEnterViewController.m in Sources */,
3907DE74291511920055D243 /* TimeShiftHelper.m in Sources */,
88AB3E51268A008C00A75212 /* URLUtils.m in Sources */,
880B3C4A2624411B002683FB /* GenerateTestUserSig.m in Sources */,
885A56472689ABB500D9D55F /* LivePushScreenEnterViewController.m in Sources */,
C1937C99274F799200F19E99 /* LiveLinkUserInputViewController.m in Sources */,
477ECA0A2627D344007AAC4F /* UIViewController+AlertViewController.m in Sources */,
47F149E4286BF3E900781688 /* PictureInPictureViewController.m in Sources */,
8839C3D52689BEF5000FF58C /* LivePlayViewController.m in Sources */,
C1937CBD275080CB00F19E99 /* LivePkFindPkUserController.m in Sources */,
3907DE73291511920055D243 /* TimeShiftViewController.m in Sources */,
477EC97F26268B0A007AAC4F /* AppDelegate.m in Sources */,
4723A8902631666E0094AC81 /* NSString+Common.m in Sources */,
8873801D28D9E5C400B0479E /* LebAutoBitrateViewController.m in Sources */,
88C4C06A268C48DF00FBB698 /* ThirdBeautyFaceunityViewController.m in Sources */,
C1937C93274F799200F19E99 /* LiveLinkOrPkStreamInputViewController.m in Sources */,
88167CC52684AC91001D99DC /* LivePushCameraViewController.m in Sources */,
EB147B16282B907C00C0E2DC /* ThirdBeautyTencentEffectViewController.m in Sources */,
88FC7853268C8C2D00768C53 /* RTCPushAndPlayAnchorViewController.m in Sources */,
8873802828DCA8CA00B0479E /* LebPlayViewController.m in Sources */,
477EC97E26268B0A007AAC4F /* main.m in Sources */,
C1937C96274F799200F19E99 /* LiveLinkAudienceViewController.m in Sources */,
477EC9B526269568007AAC4F /* HomeTableViewCell.m in Sources */,
88A1A884268DA7DA007F630D /* LivePkAnchorViewController.m in Sources */,
88FC7859268C8F6E00768C53 /* RTCPushAndPlayAudienceViewController.m in Sources */,
EB147B1D282D2F1700C0E2DC /* ThirdBeautyEntranceViewController.m in Sources */,
8839C3BD2689AF9B000FF58C /* TRTCBroadcastExtensionLauncher.m in Sources */,
477EC9B026268DC8007AAC4F /* AppLocalized.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8894456526282A3200193FAD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
8899908C268487F400CBC983 /* SampleHandler.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
8894458226282A3200193FAD /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 8894456826282A3200193FAD /* TXReplayKit_Screen */;
targetProxy = 8894458126282A3200193FAD /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
477EC96B26268B09007AAC4F /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;