project.pbxproj
73.9 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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
2906173F1FEB8E8B00BD569F /* YHEventReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906173E1FEB8E8B00BD569F /* YHEventReport.m */; };
290617431FEB951300BD569F /* YH_LagHunter.m in Sources */ = {isa = PBXBuildFile; fileRef = 290617421FEB951300BD569F /* YH_LagHunter.m */; };
2906175D1FEB9D0C00BD569F /* NSString+ER_URL.m in Sources */ = {isa = PBXBuildFile; fileRef = 290617481FEB9D0C00BD569F /* NSString+ER_URL.m */; };
2906175E1FEB9D0C00BD569F /* YH_EventDataFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906174A1FEB9D0C00BD569F /* YH_EventDataFactory.m */; };
2906175F1FEB9D0C00BD569F /* UITabBarItem+Yoho.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906174C1FEB9D0C00BD569F /* UITabBarItem+Yoho.m */; };
290617601FEB9D0C00BD569F /* YH_Status.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906174F1FEB9D0C00BD569F /* YH_Status.m */; };
290617611FEB9D0C00BD569F /* YH_Device.m in Sources */ = {isa = PBXBuildFile; fileRef = 290617501FEB9D0C00BD569F /* YH_Device.m */; };
290617621FEB9D0C00BD569F /* YH_Event.m in Sources */ = {isa = PBXBuildFile; fileRef = 290617511FEB9D0C00BD569F /* YH_Event.m */; };
290617631FEB9D0C00BD569F /* YH_AnalyticEventData.m in Sources */ = {isa = PBXBuildFile; fileRef = 290617541FEB9D0C00BD569F /* YH_AnalyticEventData.m */; };
290617641FEB9D0C00BD569F /* UIView+Yoho.m in Sources */ = {isa = PBXBuildFile; fileRef = 290617581FEB9D0C00BD569F /* UIView+Yoho.m */; };
290617651FEB9D0C00BD569F /* YHLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 290617591FEB9D0C00BD569F /* YHLog.m */; };
290617661FEB9D0C00BD569F /* NSData+YHERGZip.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906175A1FEB9D0C00BD569F /* NSData+YHERGZip.m */; };
290617671FEB9D0C00BD569F /* YH_PerformanceAppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906175B1FEB9D0C00BD569F /* YH_PerformanceAppInfo.m */; };
291E0A671FF0F6C9005E7E3C /* BSBacktraceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 291E0A651FF0F6C9005E7E3C /* BSBacktraceLogger.m */; };
2955040E1F66B4A1006A3F14 /* UIApplication+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 2955040D1F66B4A1006A3F14 /* UIApplication+AutoTrack.m */; };
295504111F67B78F006A3F14 /* UITableViewCell+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 295504101F67B78F006A3F14 /* UITableViewCell+AutoTrack.m */; };
29CDB4AD1F6FA57900AAD350 /* InfiniteScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29CDB4AA1F6FA57900AAD350 /* InfiniteScrollView.m */; };
29CDB4AE1F6FA57900AAD350 /* PowerfulBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29CDB4AC1F6FA57900AAD350 /* PowerfulBannerView.m */; };
29CDB4B11F6FA5A500AAD350 /* PowerfulBannerView+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 29CDB4B01F6FA5A500AAD350 /* PowerfulBannerView+AutoTrack.m */; };
29D3B96D1F73900500B07F47 /* YH_EventCollector+UITableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D3B96C1F73900500B07F47 /* YH_EventCollector+UITableView.m */; };
29D3B9701F73909F00B07F47 /* YH_EventCollector+UICollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D3B96F1F73909F00B07F47 /* YH_EventCollector+UICollectionView.m */; };
29D3B9731F739CD200B07F47 /* YH_EventCollector+UITabbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D3B9721F739CD200B07F47 /* YH_EventCollector+UITabbar.m */; };
29D3B9761F739D2F00B07F47 /* YH_EventCollector+UIAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D3B9751F739D2F00B07F47 /* YH_EventCollector+UIAlertView.m */; };
29D3B9791F739D8300B07F47 /* YH_EventCollector+PowerfulBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D3B9781F739D8300B07F47 /* YH_EventCollector+PowerfulBannerView.m */; };
29D3B97C1F73A81E00B07F47 /* YH_EventCollector+UIActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 29D3B97B1F73A81E00B07F47 /* YH_EventCollector+UIActionSheet.m */; };
29FB39AA1F7C9D67000E3B27 /* UIImageView+GestureAutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 29FB39A91F7C9D67000E3B27 /* UIImageView+GestureAutoTrack.m */; };
29FB39AD1F7C9D73000E3B27 /* UILabel+GestureAutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 29FB39AC1F7C9D73000E3B27 /* UILabel+GestureAutoTrack.m */; };
2EEBB0A520A978C60069D069 /* YH_DeviceInfoMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EEBB0A420A978C60069D069 /* YH_DeviceInfoMonitor.m */; };
4D22006621412DC9007B89F9 /* YH_CrashContainers.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D22006521412DC9007B89F9 /* YH_CrashContainers.m */; };
4D2200722141326A007B89F9 /* YH_CrashKVODelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D22007121413269007B89F9 /* YH_CrashKVODelegate.m */; };
4D220075214132E5007B89F9 /* YH_CrashTimerSubTarget.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D220074214132E5007B89F9 /* YH_CrashTimerSubTarget.m */; };
4D22007A21413787007B89F9 /* YH_CrashCatchError.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D22007921413787007B89F9 /* YH_CrashCatchError.m */; };
4D7DEEB921F5A92E000DA7C4 /* YH_VideoFlowMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7DEEB821F5A92E000DA7C4 /* YH_VideoFlowMonitor.m */; };
4D82B8CF211BE71F00506E8C /* YH_AppInfoMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D82B8CB211BE71F00506E8C /* YH_AppInfoMonitor.m */; };
4D82B8D0211BE71F00506E8C /* YH_AppCollectManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D82B8CC211BE71F00506E8C /* YH_AppCollectManager.m */; };
4DA564852159C46300EE24A5 /* KVOErrorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA5647C2159C46200EE24A5 /* KVOErrorViewController.m */; };
4DA564862159C46300EE24A5 /* ContainersErrorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA5647D2159C46200EE24A5 /* ContainersErrorViewController.m */; };
4DA564872159C46300EE24A5 /* TimerErrorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA564802159C46200EE24A5 /* TimerErrorViewController.m */; };
4DA564882159C46300EE24A5 /* UnrecognizedViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA564822159C46200EE24A5 /* UnrecognizedViewController.m */; };
4DA564892159C46300EE24A5 /* NotifyErrorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA564842159C46200EE24A5 /* NotifyErrorViewController.m */; };
4DA5648C2159C49800EE24A5 /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DA5648B2159C49800EE24A5 /* BaseViewController.m */; };
4DD32649213D429F006AA7B2 /* YH_CrashProtector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DD32648213D429F006AA7B2 /* YH_CrashProtector.m */; };
4DD83DEE21424D9600A70A56 /* YH_CrashProtectMgr.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DD83DED21424D9600A70A56 /* YH_CrashProtectMgr.m */; };
52540FAD1F8F6BAD001907B3 /* YH_CrashReporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 52540FA91F8F6BAD001907B3 /* YH_CrashReporter.m */; };
52540FAE1F8F6BAD001907B3 /* YH_CrashDataManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 52540FAC1F8F6BAD001907B3 /* YH_CrashDataManager.m */; };
5255C2B91F5D25F400A8FC5F /* UICollectionView+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2A61F5D25F400A8FC5F /* UICollectionView+AutoTrack.m */; };
5255C2BA1F5D25F400A8FC5F /* UITableView+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2A81F5D25F400A8FC5F /* UITableView+AutoTrack.m */; };
5255C2BB1F5D25F400A8FC5F /* YHSwizzle.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2AA1F5D25F400A8FC5F /* YHSwizzle.m */; };
5255C2BC1F5D25F400A8FC5F /* YH_EventCacheFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2AD1F5D25F400A8FC5F /* YH_EventCacheFile.m */; };
5255C2BD1F5D25F400A8FC5F /* YH_EventCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2AF1F5D25F400A8FC5F /* YH_EventCacheManager.m */; };
5255C2BE1F5D25F400A8FC5F /* YH_EventUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2B11F5D25F400A8FC5F /* YH_EventUtil.m */; };
5255C2BF1F5D25F400A8FC5F /* YH_EventDataSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2B41F5D25F400A8FC5F /* YH_EventDataSession.m */; };
5255C2C01F5D25F400A8FC5F /* YH_Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2B61F5D25F400A8FC5F /* YH_Reachability.m */; };
52878BFB1F5D44F7000A1597 /* YH_EventCollector.m in Sources */ = {isa = PBXBuildFile; fileRef = 52878BFA1F5D44F7000A1597 /* YH_EventCollector.m */; };
52878C0A1F5FD582000A1597 /* UIViewController+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 52878C091F5FD582000A1597 /* UIViewController+AutoTrack.m */; };
529A004B1F564E8500A83F63 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 529A004A1F564E8500A83F63 /* main.m */; };
529A004E1F564E8500A83F63 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 529A004D1F564E8500A83F63 /* AppDelegate.m */; };
529A00511F564E8500A83F63 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 529A00501F564E8500A83F63 /* ViewController.m */; };
529A00541F564E8500A83F63 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 529A00521F564E8500A83F63 /* Main.storyboard */; };
529A00561F564E8500A83F63 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 529A00551F564E8500A83F63 /* Assets.xcassets */; };
529A00591F564E8500A83F63 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 529A00571F564E8500A83F63 /* LaunchScreen.storyboard */; };
52D204E81F60E6F900CB7F1A /* UITabBar+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 52D204E71F60E6F900CB7F1A /* UITabBar+AutoTrack.m */; };
52D204EB1F61331900CB7F1A /* UIAlertView+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 52D204EA1F61331900CB7F1A /* UIAlertView+AutoTrack.m */; };
52D204EE1F61360200CB7F1A /* UIActionSheet+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 52D204ED1F61360200CB7F1A /* UIActionSheet+AutoTrack.m */; };
B05D0B630A2CF574F8662B2F /* libPods-YHEventReport.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C7314BC779BEDF68A0D28AE6 /* libPods-YHEventReport.a */; };
B1268A091F623B8800C1E7B9 /* UIWebView+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = B1268A081F623B8800C1E7B9 /* UIWebView+AutoTrack.m */; };
B1475E671F7F37FC0066B514 /* NSURLConnection+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = B1475E661F7F37FC0066B514 /* NSURLConnection+AutoTrack.m */; };
B1475E6D1F7F38280066B514 /* NSURLSession+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = B1475E6C1F7F38280066B514 /* NSURLSession+AutoTrack.m */; };
B14C0C821F8DF22200D963F3 /* SDWebImageManager+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = B14C0C811F8DF22200D963F3 /* SDWebImageManager+AutoTrack.m */; };
B14C0C991F8E2E9B00D963F3 /* UITapGestureRecognizer+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = B14C0C981F8E2E9B00D963F3 /* UITapGestureRecognizer+AutoTrack.m */; };
B17F61DB1F6678CD009D1606 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B17F61DA1F6678CD009D1606 /* UserNotifications.framework */; };
B1B30D241F97A2140099EEED /* UIButton+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B30D231F97A2140099EEED /* UIButton+AutoTrack.m */; };
B1B6C3A01F74AD3100627DF3 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = B1B6C3951F74AD3100627DF3 /* README.md */; };
B1B6C3A11F74AD3100627DF3 /* UIScrollView+YHExposure.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B6C3991F74AD3100627DF3 /* UIScrollView+YHExposure.m */; };
B1B6C3A21F74AD3100627DF3 /* UITableView+YHExposure.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B6C39B1F74AD3100627DF3 /* UITableView+YHExposure.m */; };
B1B6C3A31F74AD3100627DF3 /* UIView+YHExposure.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B6C39D1F74AD3100627DF3 /* UIView+YHExposure.m */; };
B1B6C3A41F74AD3100627DF3 /* YHExposureManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B6C39F1F74AD3100627DF3 /* YHExposureManager.m */; };
B1C418E91F60EB79005E0729 /* libbz2.1.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B1C418E81F60EB79005E0729 /* libbz2.1.0.tbd */; };
B1C418EB1F60EBE3005E0729 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B1C418EA1F60EBE3005E0729 /* libz.tbd */; };
B1C419011F616187005E0729 /* JTSHardwareInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C418FB1F616187005E0729 /* JTSHardwareInfo.m */; };
B1C419021F616187005E0729 /* OpenUDID.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C418FE1F616187005E0729 /* OpenUDID.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
B1C419031F616187005E0729 /* YH_KeychainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C419001F616187005E0729 /* YH_KeychainStore.m */; };
B1F3F96C1F738AAC0069C68C /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B1F3F96B1F738AAC0069C68C /* CoreLocation.framework */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
2906173D1FEB8E8B00BD569F /* YHEventReport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHEventReport.h; sourceTree = "<group>"; };
2906173E1FEB8E8B00BD569F /* YHEventReport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHEventReport.m; sourceTree = "<group>"; };
290617411FEB951300BD569F /* YH_LagHunter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_LagHunter.h; sourceTree = "<group>"; };
290617421FEB951300BD569F /* YH_LagHunter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_LagHunter.m; sourceTree = "<group>"; };
290617451FEB9D0C00BD569F /* UITabBarItem+Yoho.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITabBarItem+Yoho.h"; sourceTree = "<group>"; };
290617461FEB9D0C00BD569F /* YHLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHLog.h; sourceTree = "<group>"; };
290617471FEB9D0C00BD569F /* UIView+Yoho.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Yoho.h"; sourceTree = "<group>"; };
290617481FEB9D0C00BD569F /* NSString+ER_URL.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+ER_URL.m"; sourceTree = "<group>"; };
290617491FEB9D0C00BD569F /* NSData+YHERGZip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+YHERGZip.h"; sourceTree = "<group>"; };
2906174A1FEB9D0C00BD569F /* YH_EventDataFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_EventDataFactory.m; sourceTree = "<group>"; };
2906174B1FEB9D0C00BD569F /* YH_PerformanceAppInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_PerformanceAppInfo.h; sourceTree = "<group>"; };
2906174C1FEB9D0C00BD569F /* UITabBarItem+Yoho.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITabBarItem+Yoho.m"; sourceTree = "<group>"; };
2906174E1FEB9D0C00BD569F /* YH_AnalyticEventData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_AnalyticEventData.h; sourceTree = "<group>"; };
2906174F1FEB9D0C00BD569F /* YH_Status.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_Status.m; sourceTree = "<group>"; };
290617501FEB9D0C00BD569F /* YH_Device.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_Device.m; sourceTree = "<group>"; };
290617511FEB9D0C00BD569F /* YH_Event.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_Event.m; sourceTree = "<group>"; };
290617521FEB9D0C00BD569F /* YH_Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_Device.h; sourceTree = "<group>"; };
290617531FEB9D0C00BD569F /* YH_Status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_Status.h; sourceTree = "<group>"; };
290617541FEB9D0C00BD569F /* YH_AnalyticEventData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_AnalyticEventData.m; sourceTree = "<group>"; };
290617551FEB9D0C00BD569F /* YH_Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_Event.h; sourceTree = "<group>"; };
290617561FEB9D0C00BD569F /* NSString+ER_URL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+ER_URL.h"; sourceTree = "<group>"; };
290617571FEB9D0C00BD569F /* YHEventReportMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHEventReportMacros.h; sourceTree = "<group>"; };
290617581FEB9D0C00BD569F /* UIView+Yoho.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Yoho.m"; sourceTree = "<group>"; };
290617591FEB9D0C00BD569F /* YHLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHLog.m; sourceTree = "<group>"; };
2906175A1FEB9D0C00BD569F /* NSData+YHERGZip.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+YHERGZip.m"; sourceTree = "<group>"; };
2906175B1FEB9D0C00BD569F /* YH_PerformanceAppInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_PerformanceAppInfo.m; sourceTree = "<group>"; };
2906175C1FEB9D0C00BD569F /* YH_EventDataFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_EventDataFactory.h; sourceTree = "<group>"; };
291E0A651FF0F6C9005E7E3C /* BSBacktraceLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BSBacktraceLogger.m; sourceTree = "<group>"; };
291E0A661FF0F6C9005E7E3C /* BSBacktraceLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BSBacktraceLogger.h; sourceTree = "<group>"; };
2955040C1F66B4A1006A3F14 /* UIApplication+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIApplication+AutoTrack.h"; sourceTree = "<group>"; };
2955040D1F66B4A1006A3F14 /* UIApplication+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIApplication+AutoTrack.m"; sourceTree = "<group>"; };
2955040F1F67B78F006A3F14 /* UITableViewCell+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewCell+AutoTrack.h"; sourceTree = "<group>"; };
295504101F67B78F006A3F14 /* UITableViewCell+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewCell+AutoTrack.m"; sourceTree = "<group>"; };
29CDB4A91F6FA57900AAD350 /* InfiniteScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InfiniteScrollView.h; sourceTree = "<group>"; };
29CDB4AA1F6FA57900AAD350 /* InfiniteScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InfiniteScrollView.m; sourceTree = "<group>"; };
29CDB4AB1F6FA57900AAD350 /* PowerfulBannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PowerfulBannerView.h; sourceTree = "<group>"; };
29CDB4AC1F6FA57900AAD350 /* PowerfulBannerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PowerfulBannerView.m; sourceTree = "<group>"; };
29CDB4AF1F6FA5A500AAD350 /* PowerfulBannerView+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "PowerfulBannerView+AutoTrack.h"; sourceTree = "<group>"; };
29CDB4B01F6FA5A500AAD350 /* PowerfulBannerView+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "PowerfulBannerView+AutoTrack.m"; sourceTree = "<group>"; };
29D3B96B1F73900500B07F47 /* YH_EventCollector+UITableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "YH_EventCollector+UITableView.h"; sourceTree = "<group>"; };
29D3B96C1F73900500B07F47 /* YH_EventCollector+UITableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "YH_EventCollector+UITableView.m"; sourceTree = "<group>"; };
29D3B96E1F73909F00B07F47 /* YH_EventCollector+UICollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "YH_EventCollector+UICollectionView.h"; sourceTree = "<group>"; };
29D3B96F1F73909F00B07F47 /* YH_EventCollector+UICollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "YH_EventCollector+UICollectionView.m"; sourceTree = "<group>"; };
29D3B9711F739CD200B07F47 /* YH_EventCollector+UITabbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "YH_EventCollector+UITabbar.h"; sourceTree = "<group>"; };
29D3B9721F739CD200B07F47 /* YH_EventCollector+UITabbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "YH_EventCollector+UITabbar.m"; sourceTree = "<group>"; };
29D3B9741F739D2F00B07F47 /* YH_EventCollector+UIAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "YH_EventCollector+UIAlertView.h"; sourceTree = "<group>"; };
29D3B9751F739D2F00B07F47 /* YH_EventCollector+UIAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "YH_EventCollector+UIAlertView.m"; sourceTree = "<group>"; };
29D3B9771F739D8300B07F47 /* YH_EventCollector+PowerfulBannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "YH_EventCollector+PowerfulBannerView.h"; sourceTree = "<group>"; };
29D3B9781F739D8300B07F47 /* YH_EventCollector+PowerfulBannerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "YH_EventCollector+PowerfulBannerView.m"; sourceTree = "<group>"; };
29D3B97A1F73A81E00B07F47 /* YH_EventCollector+UIActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "YH_EventCollector+UIActionSheet.h"; sourceTree = "<group>"; };
29D3B97B1F73A81E00B07F47 /* YH_EventCollector+UIActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "YH_EventCollector+UIActionSheet.m"; sourceTree = "<group>"; };
29FB39A81F7C9D67000E3B27 /* UIImageView+GestureAutoTrack.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIImageView+GestureAutoTrack.h"; sourceTree = "<group>"; };
29FB39A91F7C9D67000E3B27 /* UIImageView+GestureAutoTrack.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+GestureAutoTrack.m"; sourceTree = "<group>"; };
29FB39AB1F7C9D73000E3B27 /* UILabel+GestureAutoTrack.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UILabel+GestureAutoTrack.h"; sourceTree = "<group>"; };
29FB39AC1F7C9D73000E3B27 /* UILabel+GestureAutoTrack.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UILabel+GestureAutoTrack.m"; sourceTree = "<group>"; };
2EEBB0A320A978C60069D069 /* YH_DeviceInfoMonitor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_DeviceInfoMonitor.h; sourceTree = "<group>"; };
2EEBB0A420A978C60069D069 /* YH_DeviceInfoMonitor.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_DeviceInfoMonitor.m; sourceTree = "<group>"; };
3C62E62ACAF80A817D6B5ED0 /* Pods-YHEventReport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-YHEventReport.release.xcconfig"; path = "Pods/Target Support Files/Pods-YHEventReport/Pods-YHEventReport.release.xcconfig"; sourceTree = "<group>"; };
4D22006321412D20007B89F9 /* YH_CrashFunctions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_CrashFunctions.h; sourceTree = "<group>"; };
4D22006421412DC9007B89F9 /* YH_CrashContainers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_CrashContainers.h; sourceTree = "<group>"; };
4D22006521412DC9007B89F9 /* YH_CrashContainers.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_CrashContainers.m; sourceTree = "<group>"; };
4D22007021413269007B89F9 /* YH_CrashKVODelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_CrashKVODelegate.h; sourceTree = "<group>"; };
4D22007121413269007B89F9 /* YH_CrashKVODelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_CrashKVODelegate.m; sourceTree = "<group>"; };
4D220073214132E5007B89F9 /* YH_CrashTimerSubTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_CrashTimerSubTarget.h; sourceTree = "<group>"; };
4D220074214132E5007B89F9 /* YH_CrashTimerSubTarget.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_CrashTimerSubTarget.m; sourceTree = "<group>"; };
4D22007821413787007B89F9 /* YH_CrashCatchError.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_CrashCatchError.h; sourceTree = "<group>"; };
4D22007921413787007B89F9 /* YH_CrashCatchError.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_CrashCatchError.m; sourceTree = "<group>"; };
4D7DEEB721F5A92E000DA7C4 /* YH_VideoFlowMonitor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_VideoFlowMonitor.h; sourceTree = "<group>"; };
4D7DEEB821F5A92E000DA7C4 /* YH_VideoFlowMonitor.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_VideoFlowMonitor.m; sourceTree = "<group>"; };
4D82B8CB211BE71F00506E8C /* YH_AppInfoMonitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_AppInfoMonitor.m; sourceTree = "<group>"; };
4D82B8CC211BE71F00506E8C /* YH_AppCollectManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_AppCollectManager.m; sourceTree = "<group>"; };
4D82B8CD211BE71F00506E8C /* YH_AppInfoMonitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_AppInfoMonitor.h; sourceTree = "<group>"; };
4D82B8CE211BE71F00506E8C /* YH_AppCollectManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_AppCollectManager.h; sourceTree = "<group>"; };
4DA5647B2159C46200EE24A5 /* ContainersErrorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContainersErrorViewController.h; sourceTree = "<group>"; };
4DA5647C2159C46200EE24A5 /* KVOErrorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KVOErrorViewController.m; sourceTree = "<group>"; };
4DA5647D2159C46200EE24A5 /* ContainersErrorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContainersErrorViewController.m; sourceTree = "<group>"; };
4DA5647E2159C46200EE24A5 /* TimerErrorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimerErrorViewController.h; sourceTree = "<group>"; };
4DA5647F2159C46200EE24A5 /* NotifyErrorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotifyErrorViewController.h; sourceTree = "<group>"; };
4DA564802159C46200EE24A5 /* TimerErrorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimerErrorViewController.m; sourceTree = "<group>"; };
4DA564812159C46200EE24A5 /* KVOErrorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KVOErrorViewController.h; sourceTree = "<group>"; };
4DA564822159C46200EE24A5 /* UnrecognizedViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UnrecognizedViewController.m; sourceTree = "<group>"; };
4DA564832159C46200EE24A5 /* UnrecognizedViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UnrecognizedViewController.h; sourceTree = "<group>"; };
4DA564842159C46200EE24A5 /* NotifyErrorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotifyErrorViewController.m; sourceTree = "<group>"; };
4DA5648A2159C49800EE24A5 /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
4DA5648B2159C49800EE24A5 /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
4DD32647213D429F006AA7B2 /* YH_CrashProtector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_CrashProtector.h; sourceTree = "<group>"; };
4DD32648213D429F006AA7B2 /* YH_CrashProtector.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_CrashProtector.m; sourceTree = "<group>"; };
4DD83DEC21424D9600A70A56 /* YH_CrashProtectMgr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YH_CrashProtectMgr.h; sourceTree = "<group>"; };
4DD83DED21424D9600A70A56 /* YH_CrashProtectMgr.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YH_CrashProtectMgr.m; sourceTree = "<group>"; };
52540FA91F8F6BAD001907B3 /* YH_CrashReporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_CrashReporter.m; sourceTree = "<group>"; };
52540FAA1F8F6BAD001907B3 /* YH_CrashDataManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_CrashDataManager.h; sourceTree = "<group>"; };
52540FAB1F8F6BAD001907B3 /* YH_CrashReporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_CrashReporter.h; sourceTree = "<group>"; };
52540FAC1F8F6BAD001907B3 /* YH_CrashDataManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_CrashDataManager.m; sourceTree = "<group>"; };
5255C2A51F5D25F400A8FC5F /* UICollectionView+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+AutoTrack.h"; sourceTree = "<group>"; };
5255C2A61F5D25F400A8FC5F /* UICollectionView+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+AutoTrack.m"; sourceTree = "<group>"; };
5255C2A71F5D25F400A8FC5F /* UITableView+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+AutoTrack.h"; sourceTree = "<group>"; };
5255C2A81F5D25F400A8FC5F /* UITableView+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+AutoTrack.m"; sourceTree = "<group>"; };
5255C2A91F5D25F400A8FC5F /* YHSwizzle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHSwizzle.h; sourceTree = "<group>"; };
5255C2AA1F5D25F400A8FC5F /* YHSwizzle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHSwizzle.m; sourceTree = "<group>"; };
5255C2AC1F5D25F400A8FC5F /* YH_EventCacheFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_EventCacheFile.h; sourceTree = "<group>"; };
5255C2AD1F5D25F400A8FC5F /* YH_EventCacheFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_EventCacheFile.m; sourceTree = "<group>"; };
5255C2AE1F5D25F400A8FC5F /* YH_EventCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_EventCacheManager.h; sourceTree = "<group>"; };
5255C2AF1F5D25F400A8FC5F /* YH_EventCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_EventCacheManager.m; sourceTree = "<group>"; };
5255C2B01F5D25F400A8FC5F /* YH_EventUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_EventUtil.h; sourceTree = "<group>"; };
5255C2B11F5D25F400A8FC5F /* YH_EventUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_EventUtil.m; sourceTree = "<group>"; };
5255C2B31F5D25F400A8FC5F /* YH_EventDataSession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_EventDataSession.h; sourceTree = "<group>"; };
5255C2B41F5D25F400A8FC5F /* YH_EventDataSession.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_EventDataSession.m; sourceTree = "<group>"; };
5255C2B51F5D25F400A8FC5F /* YH_Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_Reachability.h; sourceTree = "<group>"; };
5255C2B61F5D25F400A8FC5F /* YH_Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_Reachability.m; sourceTree = "<group>"; };
52878BF91F5D44F7000A1597 /* YH_EventCollector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_EventCollector.h; sourceTree = "<group>"; };
52878BFA1F5D44F7000A1597 /* YH_EventCollector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_EventCollector.m; sourceTree = "<group>"; };
52878C081F5FD582000A1597 /* UIViewController+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+AutoTrack.h"; sourceTree = "<group>"; };
52878C091F5FD582000A1597 /* UIViewController+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+AutoTrack.m"; sourceTree = "<group>"; };
529A00461F564E8500A83F63 /* YHEventReport.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = YHEventReport.app; sourceTree = BUILT_PRODUCTS_DIR; };
529A004A1F564E8500A83F63 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
529A004C1F564E8500A83F63 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
529A004D1F564E8500A83F63 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
529A004F1F564E8500A83F63 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
529A00501F564E8500A83F63 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
529A00531F564E8500A83F63 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
529A00551F564E8500A83F63 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
529A00581F564E8500A83F63 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
529A005A1F564E8500A83F63 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
52D204E61F60E6F900CB7F1A /* UITabBar+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITabBar+AutoTrack.h"; sourceTree = "<group>"; };
52D204E71F60E6F900CB7F1A /* UITabBar+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITabBar+AutoTrack.m"; sourceTree = "<group>"; };
52D204E91F61331900CB7F1A /* UIAlertView+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertView+AutoTrack.h"; sourceTree = "<group>"; };
52D204EA1F61331900CB7F1A /* UIAlertView+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertView+AutoTrack.m"; sourceTree = "<group>"; };
52D204EC1F61360200CB7F1A /* UIActionSheet+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIActionSheet+AutoTrack.h"; sourceTree = "<group>"; };
52D204ED1F61360200CB7F1A /* UIActionSheet+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIActionSheet+AutoTrack.m"; sourceTree = "<group>"; };
B1268A071F623B8800C1E7B9 /* UIWebView+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWebView+AutoTrack.h"; sourceTree = "<group>"; };
B1268A081F623B8800C1E7B9 /* UIWebView+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWebView+AutoTrack.m"; sourceTree = "<group>"; };
B1475E651F7F37FC0066B514 /* NSURLConnection+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSURLConnection+AutoTrack.h"; sourceTree = "<group>"; };
B1475E661F7F37FC0066B514 /* NSURLConnection+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSURLConnection+AutoTrack.m"; sourceTree = "<group>"; };
B1475E6B1F7F38280066B514 /* NSURLSession+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSURLSession+AutoTrack.h"; sourceTree = "<group>"; };
B1475E6C1F7F38280066B514 /* NSURLSession+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSURLSession+AutoTrack.m"; sourceTree = "<group>"; };
B14C0C801F8DF22200D963F3 /* SDWebImageManager+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SDWebImageManager+AutoTrack.h"; sourceTree = "<group>"; };
B14C0C811F8DF22200D963F3 /* SDWebImageManager+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageManager+AutoTrack.m"; sourceTree = "<group>"; };
B14C0C971F8E2E9B00D963F3 /* UITapGestureRecognizer+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITapGestureRecognizer+AutoTrack.h"; sourceTree = "<group>"; };
B14C0C981F8E2E9B00D963F3 /* UITapGestureRecognizer+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITapGestureRecognizer+AutoTrack.m"; sourceTree = "<group>"; };
B17F61DA1F6678CD009D1606 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
B1B30D221F97A2140099EEED /* UIButton+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+AutoTrack.h"; sourceTree = "<group>"; };
B1B30D231F97A2140099EEED /* UIButton+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+AutoTrack.m"; sourceTree = "<group>"; };
B1B6C3951F74AD3100627DF3 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
B1B6C3981F74AD3100627DF3 /* UIScrollView+YHExposure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+YHExposure.h"; sourceTree = "<group>"; };
B1B6C3991F74AD3100627DF3 /* UIScrollView+YHExposure.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+YHExposure.m"; sourceTree = "<group>"; };
B1B6C39A1F74AD3100627DF3 /* UITableView+YHExposure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+YHExposure.h"; sourceTree = "<group>"; };
B1B6C39B1F74AD3100627DF3 /* UITableView+YHExposure.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+YHExposure.m"; sourceTree = "<group>"; };
B1B6C39C1F74AD3100627DF3 /* UIView+YHExposure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+YHExposure.h"; sourceTree = "<group>"; };
B1B6C39D1F74AD3100627DF3 /* UIView+YHExposure.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+YHExposure.m"; sourceTree = "<group>"; };
B1B6C39E1F74AD3100627DF3 /* YHExposureManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHExposureManager.h; sourceTree = "<group>"; };
B1B6C39F1F74AD3100627DF3 /* YHExposureManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHExposureManager.m; sourceTree = "<group>"; };
B1C418C91F5E8278005E0729 /* YHEventReport.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHEventReport.pch; sourceTree = "<group>"; };
B1C418E81F60EB79005E0729 /* libbz2.1.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.1.0.tbd; path = usr/lib/libbz2.1.0.tbd; sourceTree = SDKROOT; };
B1C418EA1F60EBE3005E0729 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
B1C418FA1F616187005E0729 /* JTSHardwareInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JTSHardwareInfo.h; sourceTree = "<group>"; };
B1C418FB1F616187005E0729 /* JTSHardwareInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JTSHardwareInfo.m; sourceTree = "<group>"; };
B1C418FD1F616187005E0729 /* OpenUDID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenUDID.h; sourceTree = "<group>"; };
B1C418FE1F616187005E0729 /* OpenUDID.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OpenUDID.m; sourceTree = "<group>"; };
B1C418FF1F616187005E0729 /* YH_KeychainStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_KeychainStore.h; sourceTree = "<group>"; };
B1C419001F616187005E0729 /* YH_KeychainStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_KeychainStore.m; sourceTree = "<group>"; };
B1F3F96B1F738AAC0069C68C /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
B6CF7AA9C0CFE1164EFF506D /* Pods-YHEventReport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-YHEventReport.debug.xcconfig"; path = "Pods/Target Support Files/Pods-YHEventReport/Pods-YHEventReport.debug.xcconfig"; sourceTree = "<group>"; };
C7314BC779BEDF68A0D28AE6 /* libPods-YHEventReport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-YHEventReport.a"; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
529A00431F564E8500A83F63 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B1F3F96C1F738AAC0069C68C /* CoreLocation.framework in Frameworks */,
B17F61DB1F6678CD009D1606 /* UserNotifications.framework in Frameworks */,
B1C418EB1F60EBE3005E0729 /* libz.tbd in Frameworks */,
B1C418E91F60EB79005E0729 /* libbz2.1.0.tbd in Frameworks */,
B05D0B630A2CF574F8662B2F /* libPods-YHEventReport.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
2906173C1FEB8E8B00BD569F /* YH_Core */ = {
isa = PBXGroup;
children = (
2906173D1FEB8E8B00BD569F /* YHEventReport.h */,
2906173E1FEB8E8B00BD569F /* YHEventReport.m */,
);
path = YH_Core;
sourceTree = "<group>";
};
290617401FEB94FB00BD569F /* YH_LagHunter */ = {
isa = PBXGroup;
children = (
291E0A661FF0F6C9005E7E3C /* BSBacktraceLogger.h */,
291E0A651FF0F6C9005E7E3C /* BSBacktraceLogger.m */,
290617411FEB951300BD569F /* YH_LagHunter.h */,
290617421FEB951300BD569F /* YH_LagHunter.m */,
);
path = YH_LagHunter;
sourceTree = "<group>";
};
290617441FEB9D0C00BD569F /* Utils */ = {
isa = PBXGroup;
children = (
290617451FEB9D0C00BD569F /* UITabBarItem+Yoho.h */,
290617461FEB9D0C00BD569F /* YHLog.h */,
290617471FEB9D0C00BD569F /* UIView+Yoho.h */,
290617481FEB9D0C00BD569F /* NSString+ER_URL.m */,
290617491FEB9D0C00BD569F /* NSData+YHERGZip.h */,
2906174A1FEB9D0C00BD569F /* YH_EventDataFactory.m */,
2906174B1FEB9D0C00BD569F /* YH_PerformanceAppInfo.h */,
2906174C1FEB9D0C00BD569F /* UITabBarItem+Yoho.m */,
2906174D1FEB9D0C00BD569F /* YH_EventData */,
290617561FEB9D0C00BD569F /* NSString+ER_URL.h */,
290617571FEB9D0C00BD569F /* YHEventReportMacros.h */,
290617581FEB9D0C00BD569F /* UIView+Yoho.m */,
290617591FEB9D0C00BD569F /* YHLog.m */,
2906175A1FEB9D0C00BD569F /* NSData+YHERGZip.m */,
2906175B1FEB9D0C00BD569F /* YH_PerformanceAppInfo.m */,
2906175C1FEB9D0C00BD569F /* YH_EventDataFactory.h */,
);
path = Utils;
sourceTree = "<group>";
};
2906174D1FEB9D0C00BD569F /* YH_EventData */ = {
isa = PBXGroup;
children = (
2906174E1FEB9D0C00BD569F /* YH_AnalyticEventData.h */,
2906174F1FEB9D0C00BD569F /* YH_Status.m */,
290617501FEB9D0C00BD569F /* YH_Device.m */,
290617511FEB9D0C00BD569F /* YH_Event.m */,
290617521FEB9D0C00BD569F /* YH_Device.h */,
290617531FEB9D0C00BD569F /* YH_Status.h */,
290617541FEB9D0C00BD569F /* YH_AnalyticEventData.m */,
290617551FEB9D0C00BD569F /* YH_Event.h */,
);
path = YH_EventData;
sourceTree = "<group>";
};
29CDB4A81F6FA57900AAD350 /* PowerfulBannerView */ = {
isa = PBXGroup;
children = (
29CDB4A91F6FA57900AAD350 /* InfiniteScrollView.h */,
29CDB4AA1F6FA57900AAD350 /* InfiniteScrollView.m */,
29CDB4AB1F6FA57900AAD350 /* PowerfulBannerView.h */,
29CDB4AC1F6FA57900AAD350 /* PowerfulBannerView.m */,
);
path = PowerfulBannerView;
sourceTree = "<group>";
};
2EEBB0A220A978460069D069 /* YH_DeviceInfo */ = {
isa = PBXGroup;
children = (
4D82B8CE211BE71F00506E8C /* YH_AppCollectManager.h */,
4D82B8CC211BE71F00506E8C /* YH_AppCollectManager.m */,
4D82B8CD211BE71F00506E8C /* YH_AppInfoMonitor.h */,
4D82B8CB211BE71F00506E8C /* YH_AppInfoMonitor.m */,
2EEBB0A320A978C60069D069 /* YH_DeviceInfoMonitor.h */,
2EEBB0A420A978C60069D069 /* YH_DeviceInfoMonitor.m */,
4D7DEEB721F5A92E000DA7C4 /* YH_VideoFlowMonitor.h */,
4D7DEEB821F5A92E000DA7C4 /* YH_VideoFlowMonitor.m */,
);
path = YH_DeviceInfo;
sourceTree = "<group>";
};
4DA5647A2159C43A00EE24A5 /* ViewControllers */ = {
isa = PBXGroup;
children = (
4DA5648A2159C49800EE24A5 /* BaseViewController.h */,
4DA5648B2159C49800EE24A5 /* BaseViewController.m */,
4DA5647B2159C46200EE24A5 /* ContainersErrorViewController.h */,
4DA5647D2159C46200EE24A5 /* ContainersErrorViewController.m */,
4DA564812159C46200EE24A5 /* KVOErrorViewController.h */,
4DA5647C2159C46200EE24A5 /* KVOErrorViewController.m */,
4DA5647F2159C46200EE24A5 /* NotifyErrorViewController.h */,
4DA564842159C46200EE24A5 /* NotifyErrorViewController.m */,
4DA5647E2159C46200EE24A5 /* TimerErrorViewController.h */,
4DA564802159C46200EE24A5 /* TimerErrorViewController.m */,
4DA564832159C46200EE24A5 /* UnrecognizedViewController.h */,
4DA564822159C46200EE24A5 /* UnrecognizedViewController.m */,
);
path = ViewControllers;
sourceTree = "<group>";
};
4DD32615213D2E7E006AA7B2 /* YH_CrashProtector */ = {
isa = PBXGroup;
children = (
4D22007821413787007B89F9 /* YH_CrashCatchError.h */,
4D22007921413787007B89F9 /* YH_CrashCatchError.m */,
4D22006321412D20007B89F9 /* YH_CrashFunctions.h */,
4D22006421412DC9007B89F9 /* YH_CrashContainers.h */,
4D22006521412DC9007B89F9 /* YH_CrashContainers.m */,
4D22007021413269007B89F9 /* YH_CrashKVODelegate.h */,
4D22007121413269007B89F9 /* YH_CrashKVODelegate.m */,
4D220073214132E5007B89F9 /* YH_CrashTimerSubTarget.h */,
4D220074214132E5007B89F9 /* YH_CrashTimerSubTarget.m */,
4DD32647213D429F006AA7B2 /* YH_CrashProtector.h */,
4DD32648213D429F006AA7B2 /* YH_CrashProtector.m */,
4DD83DEC21424D9600A70A56 /* YH_CrashProtectMgr.h */,
4DD83DED21424D9600A70A56 /* YH_CrashProtectMgr.m */,
);
path = YH_CrashProtector;
sourceTree = "<group>";
};
5223D9CE1F8F50FF00EB698F /* YH_CrashReporter */ = {
isa = PBXGroup;
children = (
52540FAA1F8F6BAD001907B3 /* YH_CrashDataManager.h */,
52540FAC1F8F6BAD001907B3 /* YH_CrashDataManager.m */,
52540FAB1F8F6BAD001907B3 /* YH_CrashReporter.h */,
52540FA91F8F6BAD001907B3 /* YH_CrashReporter.m */,
);
path = YH_CrashReporter;
sourceTree = "<group>";
};
5255C2A31F5D25F400A8FC5F /* YHEventReport */ = {
isa = PBXGroup;
children = (
4DD32615213D2E7E006AA7B2 /* YH_CrashProtector */,
2EEBB0A220A978460069D069 /* YH_DeviceInfo */,
290617401FEB94FB00BD569F /* YH_LagHunter */,
2906173C1FEB8E8B00BD569F /* YH_Core */,
5255C2A41F5D25F400A8FC5F /* YH_AOP */,
5223D9CE1F8F50FF00EB698F /* YH_CrashReporter */,
5255C2C21F5D265000A8FC5F /* YH_EventCollector */,
5255C2AB1F5D25F400A8FC5F /* YH_EventCache */,
5255C2B21F5D25F400A8FC5F /* YH_EventDataSession */,
290617441FEB9D0C00BD569F /* Utils */,
);
path = YHEventReport;
sourceTree = "<group>";
};
5255C2A41F5D25F400A8FC5F /* YH_AOP */ = {
isa = PBXGroup;
children = (
B1B30D221F97A2140099EEED /* UIButton+AutoTrack.h */,
B1B30D231F97A2140099EEED /* UIButton+AutoTrack.m */,
2955040F1F67B78F006A3F14 /* UITableViewCell+AutoTrack.h */,
295504101F67B78F006A3F14 /* UITableViewCell+AutoTrack.m */,
5255C2A91F5D25F400A8FC5F /* YHSwizzle.h */,
5255C2AA1F5D25F400A8FC5F /* YHSwizzle.m */,
5255C2A51F5D25F400A8FC5F /* UICollectionView+AutoTrack.h */,
5255C2A61F5D25F400A8FC5F /* UICollectionView+AutoTrack.m */,
5255C2A71F5D25F400A8FC5F /* UITableView+AutoTrack.h */,
5255C2A81F5D25F400A8FC5F /* UITableView+AutoTrack.m */,
52878C081F5FD582000A1597 /* UIViewController+AutoTrack.h */,
52878C091F5FD582000A1597 /* UIViewController+AutoTrack.m */,
52D204E61F60E6F900CB7F1A /* UITabBar+AutoTrack.h */,
52D204E71F60E6F900CB7F1A /* UITabBar+AutoTrack.m */,
52D204E91F61331900CB7F1A /* UIAlertView+AutoTrack.h */,
52D204EA1F61331900CB7F1A /* UIAlertView+AutoTrack.m */,
52D204EC1F61360200CB7F1A /* UIActionSheet+AutoTrack.h */,
52D204ED1F61360200CB7F1A /* UIActionSheet+AutoTrack.m */,
B1268A071F623B8800C1E7B9 /* UIWebView+AutoTrack.h */,
B1268A081F623B8800C1E7B9 /* UIWebView+AutoTrack.m */,
2955040C1F66B4A1006A3F14 /* UIApplication+AutoTrack.h */,
2955040D1F66B4A1006A3F14 /* UIApplication+AutoTrack.m */,
29CDB4AF1F6FA5A500AAD350 /* PowerfulBannerView+AutoTrack.h */,
29CDB4B01F6FA5A500AAD350 /* PowerfulBannerView+AutoTrack.m */,
B1475E651F7F37FC0066B514 /* NSURLConnection+AutoTrack.h */,
B1475E661F7F37FC0066B514 /* NSURLConnection+AutoTrack.m */,
B1475E6B1F7F38280066B514 /* NSURLSession+AutoTrack.h */,
B1475E6C1F7F38280066B514 /* NSURLSession+AutoTrack.m */,
B14C0C801F8DF22200D963F3 /* SDWebImageManager+AutoTrack.h */,
B14C0C811F8DF22200D963F3 /* SDWebImageManager+AutoTrack.m */,
B14C0C971F8E2E9B00D963F3 /* UITapGestureRecognizer+AutoTrack.h */,
B14C0C981F8E2E9B00D963F3 /* UITapGestureRecognizer+AutoTrack.m */,
29FB39A81F7C9D67000E3B27 /* UIImageView+GestureAutoTrack.h */,
29FB39A91F7C9D67000E3B27 /* UIImageView+GestureAutoTrack.m */,
29FB39AB1F7C9D73000E3B27 /* UILabel+GestureAutoTrack.h */,
29FB39AC1F7C9D73000E3B27 /* UILabel+GestureAutoTrack.m */,
);
path = YH_AOP;
sourceTree = "<group>";
};
5255C2AB1F5D25F400A8FC5F /* YH_EventCache */ = {
isa = PBXGroup;
children = (
5255C2AE1F5D25F400A8FC5F /* YH_EventCacheManager.h */,
5255C2AF1F5D25F400A8FC5F /* YH_EventCacheManager.m */,
5255C2AC1F5D25F400A8FC5F /* YH_EventCacheFile.h */,
5255C2AD1F5D25F400A8FC5F /* YH_EventCacheFile.m */,
5255C2B01F5D25F400A8FC5F /* YH_EventUtil.h */,
5255C2B11F5D25F400A8FC5F /* YH_EventUtil.m */,
);
path = YH_EventCache;
sourceTree = "<group>";
};
5255C2B21F5D25F400A8FC5F /* YH_EventDataSession */ = {
isa = PBXGroup;
children = (
5255C2B31F5D25F400A8FC5F /* YH_EventDataSession.h */,
5255C2B41F5D25F400A8FC5F /* YH_EventDataSession.m */,
5255C2B51F5D25F400A8FC5F /* YH_Reachability.h */,
5255C2B61F5D25F400A8FC5F /* YH_Reachability.m */,
);
path = YH_EventDataSession;
sourceTree = "<group>";
};
5255C2C21F5D265000A8FC5F /* YH_EventCollector */ = {
isa = PBXGroup;
children = (
52878BF91F5D44F7000A1597 /* YH_EventCollector.h */,
52878BFA1F5D44F7000A1597 /* YH_EventCollector.m */,
29D3B96B1F73900500B07F47 /* YH_EventCollector+UITableView.h */,
29D3B96C1F73900500B07F47 /* YH_EventCollector+UITableView.m */,
29D3B96E1F73909F00B07F47 /* YH_EventCollector+UICollectionView.h */,
29D3B96F1F73909F00B07F47 /* YH_EventCollector+UICollectionView.m */,
29D3B9711F739CD200B07F47 /* YH_EventCollector+UITabbar.h */,
29D3B9721F739CD200B07F47 /* YH_EventCollector+UITabbar.m */,
29D3B9741F739D2F00B07F47 /* YH_EventCollector+UIAlertView.h */,
29D3B9751F739D2F00B07F47 /* YH_EventCollector+UIAlertView.m */,
29D3B9771F739D8300B07F47 /* YH_EventCollector+PowerfulBannerView.h */,
29D3B9781F739D8300B07F47 /* YH_EventCollector+PowerfulBannerView.m */,
29D3B97A1F73A81E00B07F47 /* YH_EventCollector+UIActionSheet.h */,
29D3B97B1F73A81E00B07F47 /* YH_EventCollector+UIActionSheet.m */,
);
path = YH_EventCollector;
sourceTree = "<group>";
};
529A003D1F564E8500A83F63 = {
isa = PBXGroup;
children = (
529A00481F564E8500A83F63 /* YHEventReportDemo */,
529A00471F564E8500A83F63 /* Products */,
B1C418E71F60EB78005E0729 /* Frameworks */,
57588585814C016875BB1715 /* Pods */,
);
sourceTree = "<group>";
};
529A00471F564E8500A83F63 /* Products */ = {
isa = PBXGroup;
children = (
529A00461F564E8500A83F63 /* YHEventReport.app */,
);
name = Products;
sourceTree = "<group>";
};
529A00481F564E8500A83F63 /* YHEventReportDemo */ = {
isa = PBXGroup;
children = (
4DA5647A2159C43A00EE24A5 /* ViewControllers */,
B1C418F81F616187005E0729 /* Utils */,
5255C2A31F5D25F400A8FC5F /* YHEventReport */,
529A004C1F564E8500A83F63 /* AppDelegate.h */,
529A004D1F564E8500A83F63 /* AppDelegate.m */,
529A004F1F564E8500A83F63 /* ViewController.h */,
529A00501F564E8500A83F63 /* ViewController.m */,
529A00521F564E8500A83F63 /* Main.storyboard */,
529A00551F564E8500A83F63 /* Assets.xcassets */,
529A00571F564E8500A83F63 /* LaunchScreen.storyboard */,
529A005A1F564E8500A83F63 /* Info.plist */,
529A00491F564E8500A83F63 /* Supporting Files */,
);
name = YHEventReportDemo;
path = YHEventReport;
sourceTree = "<group>";
};
529A00491F564E8500A83F63 /* Supporting Files */ = {
isa = PBXGroup;
children = (
529A004A1F564E8500A83F63 /* main.m */,
B1C418C91F5E8278005E0729 /* YHEventReport.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
57588585814C016875BB1715 /* Pods */ = {
isa = PBXGroup;
children = (
B6CF7AA9C0CFE1164EFF506D /* Pods-YHEventReport.debug.xcconfig */,
3C62E62ACAF80A817D6B5ED0 /* Pods-YHEventReport.release.xcconfig */,
);
name = Pods;
sourceTree = "<group>";
};
B1B6C3941F74AD3100627DF3 /* YHExposure */ = {
isa = PBXGroup;
children = (
B1B6C3951F74AD3100627DF3 /* README.md */,
B1B6C3961F74AD3100627DF3 /* YHExposure */,
);
path = YHExposure;
sourceTree = "<group>";
};
B1B6C3961F74AD3100627DF3 /* YHExposure */ = {
isa = PBXGroup;
children = (
B1B6C3971F74AD3100627DF3 /* source */,
);
path = YHExposure;
sourceTree = "<group>";
};
B1B6C3971F74AD3100627DF3 /* source */ = {
isa = PBXGroup;
children = (
B1B6C3981F74AD3100627DF3 /* UIScrollView+YHExposure.h */,
B1B6C3991F74AD3100627DF3 /* UIScrollView+YHExposure.m */,
B1B6C39A1F74AD3100627DF3 /* UITableView+YHExposure.h */,
B1B6C39B1F74AD3100627DF3 /* UITableView+YHExposure.m */,
B1B6C39C1F74AD3100627DF3 /* UIView+YHExposure.h */,
B1B6C39D1F74AD3100627DF3 /* UIView+YHExposure.m */,
B1B6C39E1F74AD3100627DF3 /* YHExposureManager.h */,
B1B6C39F1F74AD3100627DF3 /* YHExposureManager.m */,
);
path = source;
sourceTree = "<group>";
};
B1C418E71F60EB78005E0729 /* Frameworks */ = {
isa = PBXGroup;
children = (
B1F3F96B1F738AAC0069C68C /* CoreLocation.framework */,
B17F61DA1F6678CD009D1606 /* UserNotifications.framework */,
B1C418EA1F60EBE3005E0729 /* libz.tbd */,
B1C418E81F60EB79005E0729 /* libbz2.1.0.tbd */,
C7314BC779BEDF68A0D28AE6 /* libPods-YHEventReport.a */,
);
name = Frameworks;
sourceTree = "<group>";
};
B1C418F81F616187005E0729 /* Utils */ = {
isa = PBXGroup;
children = (
B1B6C3941F74AD3100627DF3 /* YHExposure */,
29CDB4A81F6FA57900AAD350 /* PowerfulBannerView */,
B1C418F91F616187005E0729 /* JTSHardwareInfo */,
B1C418FC1F616187005E0729 /* OpenUDID */,
);
path = Utils;
sourceTree = "<group>";
};
B1C418F91F616187005E0729 /* JTSHardwareInfo */ = {
isa = PBXGroup;
children = (
B1C418FA1F616187005E0729 /* JTSHardwareInfo.h */,
B1C418FB1F616187005E0729 /* JTSHardwareInfo.m */,
);
path = JTSHardwareInfo;
sourceTree = "<group>";
};
B1C418FC1F616187005E0729 /* OpenUDID */ = {
isa = PBXGroup;
children = (
B1C418FD1F616187005E0729 /* OpenUDID.h */,
B1C418FE1F616187005E0729 /* OpenUDID.m */,
B1C418FF1F616187005E0729 /* YH_KeychainStore.h */,
B1C419001F616187005E0729 /* YH_KeychainStore.m */,
);
path = OpenUDID;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
529A00451F564E8500A83F63 /* YHEventReport */ = {
isa = PBXNativeTarget;
buildConfigurationList = 529A005D1F564E8500A83F63 /* Build configuration list for PBXNativeTarget "YHEventReport" */;
buildPhases = (
97E7ED91E9E42C6D74FB4DB5 /* [CP] Check Pods Manifest.lock */,
529A00421F564E8500A83F63 /* Sources */,
529A00431F564E8500A83F63 /* Frameworks */,
529A00441F564E8500A83F63 /* Resources */,
BF395835D3DAAB864069661D /* [CP] Embed Pods Frameworks */,
0ADCC92EC337155FE2725BE4 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
);
name = YHEventReport;
productName = YHEventReport;
productReference = 529A00461F564E8500A83F63 /* YHEventReport.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
529A003E1F564E8500A83F63 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0830;
ORGANIZATIONNAME = YOHO;
TargetAttributes = {
529A00451F564E8500A83F63 = {
CreatedOnToolsVersion = 8.3;
DevelopmentTeam = LUM7XZ8Q2G;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = 529A00411F564E8500A83F63 /* Build configuration list for PBXProject "YHEventReport" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 529A003D1F564E8500A83F63;
productRefGroup = 529A00471F564E8500A83F63 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
529A00451F564E8500A83F63 /* YHEventReport */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
529A00441F564E8500A83F63 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
529A00591F564E8500A83F63 /* LaunchScreen.storyboard in Resources */,
529A00561F564E8500A83F63 /* Assets.xcassets in Resources */,
529A00541F564E8500A83F63 /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
0ADCC92EC337155FE2725BE4 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-YHEventReport/Pods-YHEventReport-resources.sh\"\n";
showEnvVarsInLog = 0;
};
97E7ED91E9E42C6D74FB4DB5 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Check Pods Manifest.lock";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../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";
showEnvVarsInLog = 0;
};
BF395835D3DAAB864069661D /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-YHEventReport/Pods-YHEventReport-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
529A00421F564E8500A83F63 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B1268A091F623B8800C1E7B9 /* UIWebView+AutoTrack.m in Sources */,
290617621FEB9D0C00BD569F /* YH_Event.m in Sources */,
52878BFB1F5D44F7000A1597 /* YH_EventCollector.m in Sources */,
52878C0A1F5FD582000A1597 /* UIViewController+AutoTrack.m in Sources */,
B1475E671F7F37FC0066B514 /* NSURLConnection+AutoTrack.m in Sources */,
29D3B9761F739D2F00B07F47 /* YH_EventCollector+UIAlertView.m in Sources */,
4DA564872159C46300EE24A5 /* TimerErrorViewController.m in Sources */,
290617651FEB9D0C00BD569F /* YHLog.m in Sources */,
4DA564862159C46300EE24A5 /* ContainersErrorViewController.m in Sources */,
529A00511F564E8500A83F63 /* ViewController.m in Sources */,
290617631FEB9D0C00BD569F /* YH_AnalyticEventData.m in Sources */,
B1B30D241F97A2140099EEED /* UIButton+AutoTrack.m in Sources */,
29CDB4B11F6FA5A500AAD350 /* PowerfulBannerView+AutoTrack.m in Sources */,
B1475E6D1F7F38280066B514 /* NSURLSession+AutoTrack.m in Sources */,
4DD83DEE21424D9600A70A56 /* YH_CrashProtectMgr.m in Sources */,
52D204E81F60E6F900CB7F1A /* UITabBar+AutoTrack.m in Sources */,
4D82B8D0211BE71F00506E8C /* YH_AppCollectManager.m in Sources */,
B1B6C3A41F74AD3100627DF3 /* YHExposureManager.m in Sources */,
5255C2C01F5D25F400A8FC5F /* YH_Reachability.m in Sources */,
4D220075214132E5007B89F9 /* YH_CrashTimerSubTarget.m in Sources */,
295504111F67B78F006A3F14 /* UITableViewCell+AutoTrack.m in Sources */,
5255C2BB1F5D25F400A8FC5F /* YHSwizzle.m in Sources */,
52D204EE1F61360200CB7F1A /* UIActionSheet+AutoTrack.m in Sources */,
4D2200722141326A007B89F9 /* YH_CrashKVODelegate.m in Sources */,
B14C0C991F8E2E9B00D963F3 /* UITapGestureRecognizer+AutoTrack.m in Sources */,
4D82B8CF211BE71F00506E8C /* YH_AppInfoMonitor.m in Sources */,
290617661FEB9D0C00BD569F /* NSData+YHERGZip.m in Sources */,
52540FAD1F8F6BAD001907B3 /* YH_CrashReporter.m in Sources */,
29FB39AA1F7C9D67000E3B27 /* UIImageView+GestureAutoTrack.m in Sources */,
4D7DEEB921F5A92E000DA7C4 /* YH_VideoFlowMonitor.m in Sources */,
29D3B9791F739D8300B07F47 /* YH_EventCollector+PowerfulBannerView.m in Sources */,
29D3B9701F73909F00B07F47 /* YH_EventCollector+UICollectionView.m in Sources */,
29CDB4AD1F6FA57900AAD350 /* InfiniteScrollView.m in Sources */,
52D204EB1F61331900CB7F1A /* UIAlertView+AutoTrack.m in Sources */,
290617611FEB9D0C00BD569F /* YH_Device.m in Sources */,
4DA564892159C46300EE24A5 /* NotifyErrorViewController.m in Sources */,
4D22007A21413787007B89F9 /* YH_CrashCatchError.m in Sources */,
4DA564882159C46300EE24A5 /* UnrecognizedViewController.m in Sources */,
4D22006621412DC9007B89F9 /* YH_CrashContainers.m in Sources */,
2EEBB0A520A978C60069D069 /* YH_DeviceInfoMonitor.m in Sources */,
B1B6C3A21F74AD3100627DF3 /* UITableView+YHExposure.m in Sources */,
2906175F1FEB9D0C00BD569F /* UITabBarItem+Yoho.m in Sources */,
290617431FEB951300BD569F /* YH_LagHunter.m in Sources */,
B1C419011F616187005E0729 /* JTSHardwareInfo.m in Sources */,
2906175E1FEB9D0C00BD569F /* YH_EventDataFactory.m in Sources */,
B1B6C3A31F74AD3100627DF3 /* UIView+YHExposure.m in Sources */,
5255C2BD1F5D25F400A8FC5F /* YH_EventCacheManager.m in Sources */,
5255C2B91F5D25F400A8FC5F /* UICollectionView+AutoTrack.m in Sources */,
2906173F1FEB8E8B00BD569F /* YHEventReport.m in Sources */,
29D3B97C1F73A81E00B07F47 /* YH_EventCollector+UIActionSheet.m in Sources */,
291E0A671FF0F6C9005E7E3C /* BSBacktraceLogger.m in Sources */,
290617641FEB9D0C00BD569F /* UIView+Yoho.m in Sources */,
529A004E1F564E8500A83F63 /* AppDelegate.m in Sources */,
B1B6C3A11F74AD3100627DF3 /* UIScrollView+YHExposure.m in Sources */,
4DD32649213D429F006AA7B2 /* YH_CrashProtector.m in Sources */,
5255C2BE1F5D25F400A8FC5F /* YH_EventUtil.m in Sources */,
29FB39AD1F7C9D73000E3B27 /* UILabel+GestureAutoTrack.m in Sources */,
5255C2BF1F5D25F400A8FC5F /* YH_EventDataSession.m in Sources */,
2955040E1F66B4A1006A3F14 /* UIApplication+AutoTrack.m in Sources */,
290617601FEB9D0C00BD569F /* YH_Status.m in Sources */,
29D3B96D1F73900500B07F47 /* YH_EventCollector+UITableView.m in Sources */,
52540FAE1F8F6BAD001907B3 /* YH_CrashDataManager.m in Sources */,
290617671FEB9D0C00BD569F /* YH_PerformanceAppInfo.m in Sources */,
2906175D1FEB9D0C00BD569F /* NSString+ER_URL.m in Sources */,
5255C2BC1F5D25F400A8FC5F /* YH_EventCacheFile.m in Sources */,
529A004B1F564E8500A83F63 /* main.m in Sources */,
B1C419021F616187005E0729 /* OpenUDID.m in Sources */,
29CDB4AE1F6FA57900AAD350 /* PowerfulBannerView.m in Sources */,
29D3B9731F739CD200B07F47 /* YH_EventCollector+UITabbar.m in Sources */,
B1B6C3A01F74AD3100627DF3 /* README.md in Sources */,
4DA5648C2159C49800EE24A5 /* BaseViewController.m in Sources */,
5255C2BA1F5D25F400A8FC5F /* UITableView+AutoTrack.m in Sources */,
4DA564852159C46300EE24A5 /* KVOErrorViewController.m in Sources */,
B14C0C821F8DF22200D963F3 /* SDWebImageManager+AutoTrack.m in Sources */,
B1C419031F616187005E0729 /* YH_KeychainStore.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
529A00521F564E8500A83F63 /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
529A00531F564E8500A83F63 /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
529A00571F564E8500A83F63 /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
529A00581F564E8500A83F63 /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
529A005B1F564E8500A83F63 /* 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++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"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 = 10.3;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
529A005C1F564E8500A83F63 /* 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++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
529A005E1F564E8500A83F63 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = B6CF7AA9C0CFE1164EFF506D /* Pods-YHEventReport.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = LUM7XZ8Q2G;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/YHEventReport/Utils/SDWebImage/Vendors",
);
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = YHEventReport/YHEventReport.pch;
INFOPLIST_FILE = YHEventReport/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = YOHO.YHEventReport;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
529A005F1F564E8500A83F63 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 3C62E62ACAF80A817D6B5ED0 /* Pods-YHEventReport.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = LUM7XZ8Q2G;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/YHEventReport/Utils/SDWebImage/Vendors",
);
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = YHEventReport/YHEventReport.pch;
INFOPLIST_FILE = YHEventReport/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = YOHO.YHEventReport;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
529A00411F564E8500A83F63 /* Build configuration list for PBXProject "YHEventReport" */ = {
isa = XCConfigurationList;
buildConfigurations = (
529A005B1F564E8500A83F63 /* Debug */,
529A005C1F564E8500A83F63 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
529A005D1F564E8500A83F63 /* Build configuration list for PBXNativeTarget "YHEventReport" */ = {
isa = XCConfigurationList;
buildConfigurations = (
529A005E1F564E8500A83F63 /* Debug */,
529A005F1F564E8500A83F63 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 529A003E1F564E8500A83F63 /* Project object */;
}