project.pbxproj
68.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
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 */; };
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 */; };
5255C2C11F5D25F400A8FC5F /* YHEventReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 5255C2B81F5D25F400A8FC5F /* YHEventReport.m */; };
52878BFB1F5D44F7000A1597 /* YH_EventCollector.m in Sources */ = {isa = PBXBuildFile; fileRef = 52878BFA1F5D44F7000A1597 /* YH_EventCollector.m */; };
52878C041F5E8904000A1597 /* YHLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 52878C031F5E8904000A1597 /* YHLog.m */; };
52878C071F5F8D82000A1597 /* UIView+Yoho.m in Sources */ = {isa = PBXBuildFile; fileRef = 52878C061F5F8D82000A1597 /* UIView+Yoho.m */; };
52878C0A1F5FD582000A1597 /* UIViewController+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = 52878C091F5FD582000A1597 /* UIViewController+AutoTrack.m */; };
52878C0D1F5FEE4C000A1597 /* YH_EventDataFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 52878C0C1F5FEE4C000A1597 /* YH_EventDataFactory.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 */; };
B1268A091F623B8800C1E7B9 /* UIWebView+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = B1268A081F623B8800C1E7B9 /* UIWebView+AutoTrack.m */; };
B13B6C0C1F710BA600C18812 /* UITabBarItem+Yoho.m in Sources */ = {isa = PBXBuildFile; fileRef = B13B6C0B1F710BA600C18812 /* UITabBarItem+Yoho.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 */; };
B1A393141F7B4E04009700D9 /* UIControl+AutoTrack.m in Sources */ = {isa = PBXBuildFile; fileRef = B1A393131F7B4E04009700D9 /* UIControl+AutoTrack.m */; };
B1A9387C1F6A8AF600D6582C /* NSString+ER_URL.m in Sources */ = {isa = PBXBuildFile; fileRef = B1A9387B1F6A8AF600D6582C /* NSString+ER_URL.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 */; };
B1C418CD1F5FFBAA005E0729 /* YH_PerformanceAppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B1C418CC1F5FFBAA005E0729 /* YH_PerformanceAppInfo.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 */; };
B1D7749F1F62A37E00BA89C3 /* Aspects.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774751F62A37E00BA89C3 /* Aspects.m */; };
B1D774A01F62A37E00BA89C3 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774781F62A37E00BA89C3 /* MKAnnotationView+WebCache.m */; };
B1D774A11F62A37E00BA89C3 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D7747A1F62A37E00BA89C3 /* NSData+ImageContentType.m */; };
B1D774A21F62A37E00BA89C3 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D7747C1F62A37E00BA89C3 /* SDImageCache.m */; };
B1D774A31F62A37E00BA89C3 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D7747E1F62A37E00BA89C3 /* SDWebImageCompat.m */; };
B1D774A41F62A37E00BA89C3 /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774801F62A37E00BA89C3 /* SDWebImageDecoder.m */; };
B1D774A51F62A37E00BA89C3 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774821F62A37E00BA89C3 /* SDWebImageDownloader.m */; };
B1D774A61F62A37E00BA89C3 /* SDWebImageDownloaderOperation+Performance.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774841F62A37E00BA89C3 /* SDWebImageDownloaderOperation+Performance.m */; };
B1D774A71F62A37E00BA89C3 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774861F62A37E00BA89C3 /* SDWebImageDownloaderOperation.m */; };
B1D774A81F62A37E00BA89C3 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774881F62A37E00BA89C3 /* SDWebImageManager.m */; };
B1D774A91F62A37E00BA89C3 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D7748B1F62A37E00BA89C3 /* SDWebImagePrefetcher.m */; };
B1D774AA1F62A37E00BA89C3 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D7748D1F62A37E00BA89C3 /* UIButton+WebCache.m */; };
B1D774AB1F62A37E00BA89C3 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D7748F1F62A37E00BA89C3 /* UIImage+GIF.m */; };
B1D774AC1F62A37E00BA89C3 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774911F62A37E00BA89C3 /* UIImage+MultiFormat.m */; };
B1D774AD1F62A37E00BA89C3 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774931F62A37E00BA89C3 /* UIImage+WebP.m */; };
B1D774AE1F62A37E00BA89C3 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774951F62A37E00BA89C3 /* UIImageView+HighlightedWebCache.m */; };
B1D774AF1F62A37E00BA89C3 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774971F62A37E00BA89C3 /* UIImageView+WebCache.m */; };
B1D774B01F62A37E00BA89C3 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D774991F62A37E00BA89C3 /* UIView+WebCacheOperation.m */; };
B1D774B11F62A37E00BA89C3 /* WebP.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B1D7749B1F62A37E00BA89C3 /* WebP.framework */; };
B1D774B21F62A37E00BA89C3 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = B1D7749D1F62A37E00BA89C3 /* Info.plist */; };
B1E6A4491F75198E008DF09A /* NSData+YHERGZip.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E6A4481F75198E008DF09A /* NSData+YHERGZip.m */; };
B1F3F96C1F738AAC0069C68C /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B1F3F96B1F738AAC0069C68C /* CoreLocation.framework */; };
B1F3F9761F7399380069C68C /* YH_AnalyticEventData.m in Sources */ = {isa = PBXBuildFile; fileRef = B1F3F96F1F7399380069C68C /* YH_AnalyticEventData.m */; };
B1F3F9771F7399380069C68C /* YH_Device.m in Sources */ = {isa = PBXBuildFile; fileRef = B1F3F9711F7399380069C68C /* YH_Device.m */; };
B1F3F9781F7399380069C68C /* YH_Event.m in Sources */ = {isa = PBXBuildFile; fileRef = B1F3F9731F7399380069C68C /* YH_Event.m */; };
B1F3F9791F7399380069C68C /* YH_Status.m in Sources */ = {isa = PBXBuildFile; fileRef = B1F3F9751F7399380069C68C /* YH_Status.m */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
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>"; };
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>"; };
5255C2B71F5D25F400A8FC5F /* YHEventReport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHEventReport.h; sourceTree = "<group>"; };
5255C2B81F5D25F400A8FC5F /* YHEventReport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHEventReport.m; sourceTree = "<group>"; };
5255C2C41F5D402900A8FC5F /* YHEventReportMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHEventReportMacros.h; 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>"; };
52878C021F5E8904000A1597 /* YHLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHLog.h; sourceTree = "<group>"; };
52878C031F5E8904000A1597 /* YHLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHLog.m; sourceTree = "<group>"; };
52878C051F5F8D82000A1597 /* UIView+Yoho.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Yoho.h"; sourceTree = "<group>"; };
52878C061F5F8D82000A1597 /* UIView+Yoho.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Yoho.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>"; };
52878C0B1F5FEE4C000A1597 /* YH_EventDataFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_EventDataFactory.h; sourceTree = "<group>"; };
52878C0C1F5FEE4C000A1597 /* YH_EventDataFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_EventDataFactory.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>"; };
B13B6C0A1F710BA600C18812 /* UITabBarItem+Yoho.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UITabBarItem+Yoho.h"; sourceTree = "<group>"; };
B13B6C0B1F710BA600C18812 /* UITabBarItem+Yoho.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UITabBarItem+Yoho.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; };
B1A393121F7B4E04009700D9 /* UIControl+AutoTrack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+AutoTrack.h"; sourceTree = "<group>"; };
B1A393131F7B4E04009700D9 /* UIControl+AutoTrack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+AutoTrack.m"; sourceTree = "<group>"; };
B1A9387A1F6A8AF600D6582C /* NSString+ER_URL.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+ER_URL.h"; sourceTree = "<group>"; };
B1A9387B1F6A8AF600D6582C /* NSString+ER_URL.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSString+ER_URL.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>"; };
B1C418CB1F5FFBAA005E0729 /* YH_PerformanceAppInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_PerformanceAppInfo.h; sourceTree = "<group>"; };
B1C418CC1F5FFBAA005E0729 /* YH_PerformanceAppInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_PerformanceAppInfo.m; 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>"; };
B1D774741F62A37E00BA89C3 /* Aspects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Aspects.h; sourceTree = "<group>"; };
B1D774751F62A37E00BA89C3 /* Aspects.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Aspects.m; sourceTree = "<group>"; };
B1D774771F62A37E00BA89C3 /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MKAnnotationView+WebCache.h"; sourceTree = "<group>"; };
B1D774781F62A37E00BA89C3 /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MKAnnotationView+WebCache.m"; sourceTree = "<group>"; };
B1D774791F62A37E00BA89C3 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageContentType.h"; sourceTree = "<group>"; };
B1D7747A1F62A37E00BA89C3 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ImageContentType.m"; sourceTree = "<group>"; };
B1D7747B1F62A37E00BA89C3 /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCache.h; sourceTree = "<group>"; };
B1D7747C1F62A37E00BA89C3 /* SDImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCache.m; sourceTree = "<group>"; };
B1D7747D1F62A37E00BA89C3 /* SDWebImageCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCompat.h; sourceTree = "<group>"; };
B1D7747E1F62A37E00BA89C3 /* SDWebImageCompat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCompat.m; sourceTree = "<group>"; };
B1D7747F1F62A37E00BA89C3 /* SDWebImageDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDecoder.h; sourceTree = "<group>"; };
B1D774801F62A37E00BA89C3 /* SDWebImageDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDecoder.m; sourceTree = "<group>"; };
B1D774811F62A37E00BA89C3 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloader.h; sourceTree = "<group>"; };
B1D774821F62A37E00BA89C3 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloader.m; sourceTree = "<group>"; };
B1D774831F62A37E00BA89C3 /* SDWebImageDownloaderOperation+Performance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SDWebImageDownloaderOperation+Performance.h"; sourceTree = "<group>"; };
B1D774841F62A37E00BA89C3 /* SDWebImageDownloaderOperation+Performance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageDownloaderOperation+Performance.m"; sourceTree = "<group>"; };
B1D774851F62A37E00BA89C3 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
B1D774861F62A37E00BA89C3 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloaderOperation.m; sourceTree = "<group>"; };
B1D774871F62A37E00BA89C3 /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManager.h; sourceTree = "<group>"; };
B1D774881F62A37E00BA89C3 /* SDWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageManager.m; sourceTree = "<group>"; };
B1D774891F62A37E00BA89C3 /* SDWebImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageOperation.h; sourceTree = "<group>"; };
B1D7748A1F62A37E00BA89C3 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImagePrefetcher.h; sourceTree = "<group>"; };
B1D7748B1F62A37E00BA89C3 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImagePrefetcher.m; sourceTree = "<group>"; };
B1D7748C1F62A37E00BA89C3 /* UIButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+WebCache.h"; sourceTree = "<group>"; };
B1D7748D1F62A37E00BA89C3 /* UIButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+WebCache.m"; sourceTree = "<group>"; };
B1D7748E1F62A37E00BA89C3 /* UIImage+GIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GIF.h"; sourceTree = "<group>"; };
B1D7748F1F62A37E00BA89C3 /* UIImage+GIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GIF.m"; sourceTree = "<group>"; };
B1D774901F62A37E00BA89C3 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
B1D774911F62A37E00BA89C3 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MultiFormat.m"; sourceTree = "<group>"; };
B1D774921F62A37E00BA89C3 /* UIImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+WebP.h"; sourceTree = "<group>"; };
B1D774931F62A37E00BA89C3 /* UIImage+WebP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+WebP.m"; sourceTree = "<group>"; };
B1D774941F62A37E00BA89C3 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
B1D774951F62A37E00BA89C3 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; };
B1D774961F62A37E00BA89C3 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+WebCache.h"; sourceTree = "<group>"; };
B1D774971F62A37E00BA89C3 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+WebCache.m"; sourceTree = "<group>"; };
B1D774981F62A37E00BA89C3 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
B1D774991F62A37E00BA89C3 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WebCacheOperation.m"; sourceTree = "<group>"; };
B1D7749B1F62A37E00BA89C3 /* WebP.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebP.framework; sourceTree = "<group>"; };
B1D7749D1F62A37E00BA89C3 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
B1D7749E1F62A37E00BA89C3 /* WebImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebImage.h; sourceTree = "<group>"; };
B1E6A4471F75198E008DF09A /* NSData+YHERGZip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+YHERGZip.h"; sourceTree = "<group>"; };
B1E6A4481F75198E008DF09A /* NSData+YHERGZip.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+YHERGZip.m"; sourceTree = "<group>"; };
B1F3F96B1F738AAC0069C68C /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
B1F3F96E1F7399380069C68C /* YH_AnalyticEventData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_AnalyticEventData.h; sourceTree = "<group>"; };
B1F3F96F1F7399380069C68C /* YH_AnalyticEventData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_AnalyticEventData.m; sourceTree = "<group>"; };
B1F3F9701F7399380069C68C /* YH_Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_Device.h; sourceTree = "<group>"; };
B1F3F9711F7399380069C68C /* YH_Device.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_Device.m; sourceTree = "<group>"; };
B1F3F9721F7399380069C68C /* YH_Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_Event.h; sourceTree = "<group>"; };
B1F3F9731F7399380069C68C /* YH_Event.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_Event.m; sourceTree = "<group>"; };
B1F3F9741F7399380069C68C /* YH_Status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YH_Status.h; sourceTree = "<group>"; };
B1F3F9751F7399380069C68C /* YH_Status.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YH_Status.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
529A00431F564E8500A83F63 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B1F3F96C1F738AAC0069C68C /* CoreLocation.framework in Frameworks */,
B17F61DB1F6678CD009D1606 /* UserNotifications.framework in Frameworks */,
B1D774B11F62A37E00BA89C3 /* WebP.framework in Frameworks */,
B1C418EB1F60EBE3005E0729 /* libz.tbd in Frameworks */,
B1C418E91F60EB79005E0729 /* libbz2.1.0.tbd in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
29CDB4A81F6FA57900AAD350 /* PowerfulBannerView */ = {
isa = PBXGroup;
children = (
29CDB4A91F6FA57900AAD350 /* InfiniteScrollView.h */,
29CDB4AA1F6FA57900AAD350 /* InfiniteScrollView.m */,
29CDB4AB1F6FA57900AAD350 /* PowerfulBannerView.h */,
29CDB4AC1F6FA57900AAD350 /* PowerfulBannerView.m */,
);
path = PowerfulBannerView;
sourceTree = "<group>";
};
5255C2A31F5D25F400A8FC5F /* YHEventReport */ = {
isa = PBXGroup;
children = (
5255C2B71F5D25F400A8FC5F /* YHEventReport.h */,
5255C2B81F5D25F400A8FC5F /* YHEventReport.m */,
5255C2A41F5D25F400A8FC5F /* YH_AOP */,
5255C2C21F5D265000A8FC5F /* YH_EventCollector */,
5255C2AB1F5D25F400A8FC5F /* YH_EventCache */,
5255C2B21F5D25F400A8FC5F /* YH_EventDataSession */,
5255C2C31F5D3FFF00A8FC5F /* util files */,
);
path = YHEventReport;
sourceTree = "<group>";
};
5255C2A41F5D25F400A8FC5F /* YH_AOP */ = {
isa = PBXGroup;
children = (
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 */,
B1A393121F7B4E04009700D9 /* UIControl+AutoTrack.h */,
B1A393131F7B4E04009700D9 /* UIControl+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 */,
);
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>";
};
5255C2C31F5D3FFF00A8FC5F /* util files */ = {
isa = PBXGroup;
children = (
B1F3F96D1F7399380069C68C /* YH_EventData */,
5255C2C41F5D402900A8FC5F /* YHEventReportMacros.h */,
52878C021F5E8904000A1597 /* YHLog.h */,
52878C031F5E8904000A1597 /* YHLog.m */,
52878C051F5F8D82000A1597 /* UIView+Yoho.h */,
52878C061F5F8D82000A1597 /* UIView+Yoho.m */,
52878C0B1F5FEE4C000A1597 /* YH_EventDataFactory.h */,
52878C0C1F5FEE4C000A1597 /* YH_EventDataFactory.m */,
B1C418CB1F5FFBAA005E0729 /* YH_PerformanceAppInfo.h */,
B1C418CC1F5FFBAA005E0729 /* YH_PerformanceAppInfo.m */,
B1A9387A1F6A8AF600D6582C /* NSString+ER_URL.h */,
B1A9387B1F6A8AF600D6582C /* NSString+ER_URL.m */,
B13B6C0A1F710BA600C18812 /* UITabBarItem+Yoho.h */,
B13B6C0B1F710BA600C18812 /* UITabBarItem+Yoho.m */,
B1E6A4471F75198E008DF09A /* NSData+YHERGZip.h */,
B1E6A4481F75198E008DF09A /* NSData+YHERGZip.m */,
);
path = "util files";
sourceTree = "<group>";
};
529A003D1F564E8500A83F63 = {
isa = PBXGroup;
children = (
529A00481F564E8500A83F63 /* YHEventReportDemo */,
529A00471F564E8500A83F63 /* Products */,
B1C418E71F60EB78005E0729 /* Frameworks */,
);
sourceTree = "<group>";
};
529A00471F564E8500A83F63 /* Products */ = {
isa = PBXGroup;
children = (
529A00461F564E8500A83F63 /* YHEventReport.app */,
);
name = Products;
sourceTree = "<group>";
};
529A00481F564E8500A83F63 /* YHEventReportDemo */ = {
isa = PBXGroup;
children = (
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>";
};
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 */,
);
name = Frameworks;
sourceTree = "<group>";
};
B1C418F81F616187005E0729 /* Utils */ = {
isa = PBXGroup;
children = (
B1B6C3941F74AD3100627DF3 /* YHExposure */,
29CDB4A81F6FA57900AAD350 /* PowerfulBannerView */,
B1D774721F62A37E00BA89C3 /* SDWebImage */,
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>";
};
B1D774721F62A37E00BA89C3 /* SDWebImage */ = {
isa = PBXGroup;
children = (
B1D774731F62A37E00BA89C3 /* Aspects */,
B1D774761F62A37E00BA89C3 /* SDWebImage */,
B1D7749A1F62A37E00BA89C3 /* Vendors */,
B1D7749C1F62A37E00BA89C3 /* WebImage */,
);
path = SDWebImage;
sourceTree = "<group>";
};
B1D774731F62A37E00BA89C3 /* Aspects */ = {
isa = PBXGroup;
children = (
B1D774741F62A37E00BA89C3 /* Aspects.h */,
B1D774751F62A37E00BA89C3 /* Aspects.m */,
);
path = Aspects;
sourceTree = "<group>";
};
B1D774761F62A37E00BA89C3 /* SDWebImage */ = {
isa = PBXGroup;
children = (
B1D774771F62A37E00BA89C3 /* MKAnnotationView+WebCache.h */,
B1D774781F62A37E00BA89C3 /* MKAnnotationView+WebCache.m */,
B1D774791F62A37E00BA89C3 /* NSData+ImageContentType.h */,
B1D7747A1F62A37E00BA89C3 /* NSData+ImageContentType.m */,
B1D7747B1F62A37E00BA89C3 /* SDImageCache.h */,
B1D7747C1F62A37E00BA89C3 /* SDImageCache.m */,
B1D7747D1F62A37E00BA89C3 /* SDWebImageCompat.h */,
B1D7747E1F62A37E00BA89C3 /* SDWebImageCompat.m */,
B1D7747F1F62A37E00BA89C3 /* SDWebImageDecoder.h */,
B1D774801F62A37E00BA89C3 /* SDWebImageDecoder.m */,
B1D774811F62A37E00BA89C3 /* SDWebImageDownloader.h */,
B1D774821F62A37E00BA89C3 /* SDWebImageDownloader.m */,
B1D774831F62A37E00BA89C3 /* SDWebImageDownloaderOperation+Performance.h */,
B1D774841F62A37E00BA89C3 /* SDWebImageDownloaderOperation+Performance.m */,
B1D774851F62A37E00BA89C3 /* SDWebImageDownloaderOperation.h */,
B1D774861F62A37E00BA89C3 /* SDWebImageDownloaderOperation.m */,
B1D774871F62A37E00BA89C3 /* SDWebImageManager.h */,
B1D774881F62A37E00BA89C3 /* SDWebImageManager.m */,
B1D774891F62A37E00BA89C3 /* SDWebImageOperation.h */,
B1D7748A1F62A37E00BA89C3 /* SDWebImagePrefetcher.h */,
B1D7748B1F62A37E00BA89C3 /* SDWebImagePrefetcher.m */,
B1D7748C1F62A37E00BA89C3 /* UIButton+WebCache.h */,
B1D7748D1F62A37E00BA89C3 /* UIButton+WebCache.m */,
B1D7748E1F62A37E00BA89C3 /* UIImage+GIF.h */,
B1D7748F1F62A37E00BA89C3 /* UIImage+GIF.m */,
B1D774901F62A37E00BA89C3 /* UIImage+MultiFormat.h */,
B1D774911F62A37E00BA89C3 /* UIImage+MultiFormat.m */,
B1D774921F62A37E00BA89C3 /* UIImage+WebP.h */,
B1D774931F62A37E00BA89C3 /* UIImage+WebP.m */,
B1D774941F62A37E00BA89C3 /* UIImageView+HighlightedWebCache.h */,
B1D774951F62A37E00BA89C3 /* UIImageView+HighlightedWebCache.m */,
B1D774961F62A37E00BA89C3 /* UIImageView+WebCache.h */,
B1D774971F62A37E00BA89C3 /* UIImageView+WebCache.m */,
B1D774981F62A37E00BA89C3 /* UIView+WebCacheOperation.h */,
B1D774991F62A37E00BA89C3 /* UIView+WebCacheOperation.m */,
);
path = SDWebImage;
sourceTree = "<group>";
};
B1D7749A1F62A37E00BA89C3 /* Vendors */ = {
isa = PBXGroup;
children = (
B1D7749B1F62A37E00BA89C3 /* WebP.framework */,
);
path = Vendors;
sourceTree = "<group>";
};
B1D7749C1F62A37E00BA89C3 /* WebImage */ = {
isa = PBXGroup;
children = (
B1D7749D1F62A37E00BA89C3 /* Info.plist */,
B1D7749E1F62A37E00BA89C3 /* WebImage.h */,
);
path = WebImage;
sourceTree = "<group>";
};
B1F3F96D1F7399380069C68C /* YH_EventData */ = {
isa = PBXGroup;
children = (
B1F3F96E1F7399380069C68C /* YH_AnalyticEventData.h */,
B1F3F96F1F7399380069C68C /* YH_AnalyticEventData.m */,
B1F3F9701F7399380069C68C /* YH_Device.h */,
B1F3F9711F7399380069C68C /* YH_Device.m */,
B1F3F9721F7399380069C68C /* YH_Event.h */,
B1F3F9731F7399380069C68C /* YH_Event.m */,
B1F3F9741F7399380069C68C /* YH_Status.h */,
B1F3F9751F7399380069C68C /* YH_Status.m */,
);
path = YH_EventData;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
529A00451F564E8500A83F63 /* YHEventReport */ = {
isa = PBXNativeTarget;
buildConfigurationList = 529A005D1F564E8500A83F63 /* Build configuration list for PBXNativeTarget "YHEventReport" */;
buildPhases = (
529A00421F564E8500A83F63 /* Sources */,
529A00431F564E8500A83F63 /* Frameworks */,
529A00441F564E8500A83F63 /* 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;
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 = (
B1D774B21F62A37E00BA89C3 /* Info.plist in Resources */,
529A00591F564E8500A83F63 /* LaunchScreen.storyboard in Resources */,
529A00561F564E8500A83F63 /* Assets.xcassets in Resources */,
529A00541F564E8500A83F63 /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
529A00421F564E8500A83F63 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B1E6A4491F75198E008DF09A /* NSData+YHERGZip.m in Sources */,
B1D774AB1F62A37E00BA89C3 /* UIImage+GIF.m in Sources */,
B1268A091F623B8800C1E7B9 /* UIWebView+AutoTrack.m in Sources */,
B1D774B01F62A37E00BA89C3 /* UIView+WebCacheOperation.m in Sources */,
52878BFB1F5D44F7000A1597 /* YH_EventCollector.m in Sources */,
52878C0A1F5FD582000A1597 /* UIViewController+AutoTrack.m in Sources */,
B1D774A61F62A37E00BA89C3 /* SDWebImageDownloaderOperation+Performance.m in Sources */,
B1475E671F7F37FC0066B514 /* NSURLConnection+AutoTrack.m in Sources */,
29D3B9761F739D2F00B07F47 /* YH_EventCollector+UIAlertView.m in Sources */,
529A00511F564E8500A83F63 /* ViewController.m in Sources */,
29CDB4B11F6FA5A500AAD350 /* PowerfulBannerView+AutoTrack.m in Sources */,
52878C041F5E8904000A1597 /* YHLog.m in Sources */,
B1475E6D1F7F38280066B514 /* NSURLSession+AutoTrack.m in Sources */,
B1F3F9791F7399380069C68C /* YH_Status.m in Sources */,
B1A393141F7B4E04009700D9 /* UIControl+AutoTrack.m in Sources */,
B1F3F9761F7399380069C68C /* YH_AnalyticEventData.m in Sources */,
52D204E81F60E6F900CB7F1A /* UITabBar+AutoTrack.m in Sources */,
B1B6C3A41F74AD3100627DF3 /* YHExposureManager.m in Sources */,
5255C2C01F5D25F400A8FC5F /* YH_Reachability.m in Sources */,
295504111F67B78F006A3F14 /* UITableViewCell+AutoTrack.m in Sources */,
B1F3F9771F7399380069C68C /* YH_Device.m in Sources */,
5255C2BB1F5D25F400A8FC5F /* YHSwizzle.m in Sources */,
52D204EE1F61360200CB7F1A /* UIActionSheet+AutoTrack.m in Sources */,
B1D774AE1F62A37E00BA89C3 /* UIImageView+HighlightedWebCache.m in Sources */,
B14C0C991F8E2E9B00D963F3 /* UITapGestureRecognizer+AutoTrack.m in Sources */,
B1D774A91F62A37E00BA89C3 /* SDWebImagePrefetcher.m in Sources */,
29D3B9791F739D8300B07F47 /* YH_EventCollector+PowerfulBannerView.m in Sources */,
B1D774A71F62A37E00BA89C3 /* SDWebImageDownloaderOperation.m in Sources */,
29D3B9701F73909F00B07F47 /* YH_EventCollector+UICollectionView.m in Sources */,
29CDB4AD1F6FA57900AAD350 /* InfiniteScrollView.m in Sources */,
52D204EB1F61331900CB7F1A /* UIAlertView+AutoTrack.m in Sources */,
B1B6C3A21F74AD3100627DF3 /* UITableView+YHExposure.m in Sources */,
B1D7749F1F62A37E00BA89C3 /* Aspects.m in Sources */,
B1C419011F616187005E0729 /* JTSHardwareInfo.m in Sources */,
B1B6C3A31F74AD3100627DF3 /* UIView+YHExposure.m in Sources */,
5255C2BD1F5D25F400A8FC5F /* YH_EventCacheManager.m in Sources */,
5255C2B91F5D25F400A8FC5F /* UICollectionView+AutoTrack.m in Sources */,
29D3B97C1F73A81E00B07F47 /* YH_EventCollector+UIActionSheet.m in Sources */,
529A004E1F564E8500A83F63 /* AppDelegate.m in Sources */,
B1B6C3A11F74AD3100627DF3 /* UIScrollView+YHExposure.m in Sources */,
B1A9387C1F6A8AF600D6582C /* NSString+ER_URL.m in Sources */,
5255C2BE1F5D25F400A8FC5F /* YH_EventUtil.m in Sources */,
5255C2BF1F5D25F400A8FC5F /* YH_EventDataSession.m in Sources */,
52878C071F5F8D82000A1597 /* UIView+Yoho.m in Sources */,
2955040E1F66B4A1006A3F14 /* UIApplication+AutoTrack.m in Sources */,
29D3B96D1F73900500B07F47 /* YH_EventCollector+UITableView.m in Sources */,
B1D774AF1F62A37E00BA89C3 /* UIImageView+WebCache.m in Sources */,
B1D774A81F62A37E00BA89C3 /* SDWebImageManager.m in Sources */,
B13B6C0C1F710BA600C18812 /* UITabBarItem+Yoho.m in Sources */,
B1D774A21F62A37E00BA89C3 /* SDImageCache.m in Sources */,
B1C418CD1F5FFBAA005E0729 /* YH_PerformanceAppInfo.m in Sources */,
5255C2BC1F5D25F400A8FC5F /* YH_EventCacheFile.m in Sources */,
5255C2C11F5D25F400A8FC5F /* YHEventReport.m in Sources */,
529A004B1F564E8500A83F63 /* main.m in Sources */,
B1C419021F616187005E0729 /* OpenUDID.m in Sources */,
B1D774A51F62A37E00BA89C3 /* SDWebImageDownloader.m in Sources */,
52878C0D1F5FEE4C000A1597 /* YH_EventDataFactory.m in Sources */,
B1D774AC1F62A37E00BA89C3 /* UIImage+MultiFormat.m in Sources */,
B1D774AD1F62A37E00BA89C3 /* UIImage+WebP.m in Sources */,
B1F3F9781F7399380069C68C /* YH_Event.m in Sources */,
29CDB4AE1F6FA57900AAD350 /* PowerfulBannerView.m in Sources */,
B1D774AA1F62A37E00BA89C3 /* UIButton+WebCache.m in Sources */,
29D3B9731F739CD200B07F47 /* YH_EventCollector+UITabbar.m in Sources */,
B1D774A01F62A37E00BA89C3 /* MKAnnotationView+WebCache.m in Sources */,
B1B6C3A01F74AD3100627DF3 /* README.md in Sources */,
5255C2BA1F5D25F400A8FC5F /* UITableView+AutoTrack.m in Sources */,
B1D774A41F62A37E00BA89C3 /* SDWebImageDecoder.m in Sources */,
B14C0C821F8DF22200D963F3 /* SDWebImageManager+AutoTrack.m in Sources */,
B1D774A31F62A37E00BA89C3 /* SDWebImageCompat.m in Sources */,
B1D774A11F62A37E00BA89C3 /* NSData+ImageContentType.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;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
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;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
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 */;
}