project.pbxproj
81.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 55;
objects = {
/* Begin PBXBuildFile section */
1E7086652811A93F00704CA8 /* CouponBarcodeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E7086642811A93F00704CA8 /* CouponBarcodeView.swift */; };
1E7086672811A96E00704CA8 /* CouponBarcodeViewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E7086662811A96E00704CA8 /* CouponBarcodeViewInterface.swift */; };
1E735FF2281067320050A298 /* CampaignWebview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E735FF1281067320050A298 /* CampaignWebview.swift */; };
1E735FF42810681E0050A298 /* CampaignWebviewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E735FF32810681E0050A298 /* CampaignWebviewInterface.swift */; };
1E879E25281AC96A0089F489 /* OldCouponsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E879E24281AC96A0089F489 /* OldCouponsView.swift */; };
1E879E27281AC99F0089F489 /* OldCouponsViewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E879E26281AC99F0089F489 /* OldCouponsViewInterface.swift */; };
1E98EC1428199C4F007524A0 /* AllGiftsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E98EC1328199C4F007524A0 /* AllGiftsView.swift */; };
1E98EC1628199C86007524A0 /* AllGiftsViewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E98EC1528199C86007524A0 /* AllGiftsViewInterface.swift */; };
1EBB036F281BE3610062F663 /* RSBarcodes_Swift in Frameworks */ = {isa = PBXBuildFile; productRef = 1EBB036E281BE3610062F663 /* RSBarcodes_Swift */; };
1EBEB02D280D69D800BF802C /* GiftsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EBEB02C280D69D800BF802C /* GiftsView.swift */; };
1EBEB02F280D6AA500BF802C /* GiftsViewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EBEB02E280D6AA500BF802C /* GiftsViewInterface.swift */; };
260C6A1AFF7560C32E212F20 /* Pods_WarplySDKFrameworkIOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1353B8C484CC0649CAC2EB74 /* Pods_WarplySDKFrameworkIOS.framework */; };
E639EFA2280810E300B9DD94 /* CouponsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E639EFA0280810E300B9DD94 /* CouponsView.swift */; };
E639EFA3280810E300B9DD94 /* CouponsViewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = E639EFA1280810E300B9DD94 /* CouponsViewInterface.swift */; };
E639EFA52808244E00B9DD94 /* MyEmptyClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = E639EFA42808244E00B9DD94 /* MyEmptyClass.swift */; };
E639EFAB2808347700B9DD94 /* ic_back.png in Resources */ = {isa = PBXBuildFile; fileRef = E639EFAA2808347700B9DD94 /* ic_back.png */; };
E655D05A280590AD004F913C /* WarplySDKFrameworkIOS-Bridging-Header.h in Headers */ = {isa = PBXBuildFile; fileRef = E655D05928058A72004F913C /* WarplySDKFrameworkIOS-Bridging-Header.h */; };
E67D1EB8281055D900940F01 /* WalletViewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = E67D1EB7281055D900940F01 /* WalletViewInterface.swift */; };
E67D1EBA281055F800940F01 /* MoreForYouViewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = E67D1EB9281055F800940F01 /* MoreForYouViewInterface.swift */; };
E67D1EBE2810573900940F01 /* WalletView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E67D1EBD2810573900940F01 /* WalletView.swift */; };
E67D1EC02810579F00940F01 /* MoreForYouView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E67D1EBF2810579F00940F01 /* MoreForYouView.swift */; };
E67D1EC228113EED00940F01 /* CouponView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E67D1EC128113EED00940F01 /* CouponView.swift */; };
E67D1EC428113EFD00940F01 /* CouponViewInterface.swift in Sources */ = {isa = PBXBuildFile; fileRef = E67D1EC328113EFD00940F01 /* CouponViewInterface.swift */; };
E67D1EC828119ED300940F01 /* swiftApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = E67D1EC528117F2400940F01 /* swiftApi.swift */; };
E6D8DE6D27A942010006A3A9 /* WarplySDKFrameworkIOS.docc in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE6C27A942010006A3A9 /* WarplySDKFrameworkIOS.docc */; };
E6D8DE6E27A942010006A3A9 /* WarplySDKFrameworkIOS.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE6B27A942010006A3A9 /* WarplySDKFrameworkIOS.h */; settings = {ATTRIBUTES = (Public, ); }; };
E6D8DEEE27A942920006A3A9 /* WarplyReactMethods.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE7527A942910006A3A9 /* WarplyReactMethods.m */; };
E6D8DEEF27A942920006A3A9 /* WarplyReactMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE7627A942910006A3A9 /* WarplyReactMethods.h */; };
E6D8DEF027A942920006A3A9 /* WLNativeAdCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE7927A942910006A3A9 /* WLNativeAdCollectionViewCell.h */; };
E6D8DEF127A942920006A3A9 /* WLNativeVideoTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE7A27A942910006A3A9 /* WLNativeVideoTableViewCell.xib */; };
E6D8DEF227A942920006A3A9 /* WLNativeAdTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE7B27A942910006A3A9 /* WLNativeAdTableViewCell.h */; };
E6D8DEF327A942920006A3A9 /* WLNativeVideoTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE7C27A942910006A3A9 /* WLNativeVideoTableViewCell.m */; };
E6D8DEF427A942920006A3A9 /* WLCustomNativeCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE7D27A942910006A3A9 /* WLCustomNativeCollectionViewCell.m */; };
E6D8DEF527A942920006A3A9 /* WLNativeAdsTableMode.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE7E27A942910006A3A9 /* WLNativeAdsTableMode.m */; };
E6D8DEF627A942920006A3A9 /* WLCustomNativeAdTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE7F27A942910006A3A9 /* WLCustomNativeAdTableViewCell.h */; };
E6D8DEF727A942920006A3A9 /* WLNativeAdsCollectionMode.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE8027A942910006A3A9 /* WLNativeAdsCollectionMode.m */; };
E6D8DEF827A942920006A3A9 /* WLNativeAdTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE8127A942910006A3A9 /* WLNativeAdTableViewCell.m */; };
E6D8DEF927A942920006A3A9 /* WLNativeAdCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE8227A942910006A3A9 /* WLNativeAdCollectionViewCell.m */; };
E6D8DEFA27A942920006A3A9 /* WLNativeAdTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE8327A942910006A3A9 /* WLNativeAdTableViewCell.xib */; };
E6D8DEFB27A942920006A3A9 /* WLNativeAdCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE8427A942910006A3A9 /* WLNativeAdCollectionViewCell.xib */; };
E6D8DEFC27A942920006A3A9 /* WLCustomNativeAdTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE8527A942910006A3A9 /* WLCustomNativeAdTableViewCell.m */; };
E6D8DEFD27A942920006A3A9 /* WLNativeAdsTableMode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE8627A942910006A3A9 /* WLNativeAdsTableMode.h */; };
E6D8DEFE27A942920006A3A9 /* WLCustomNativeCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE8727A942910006A3A9 /* WLCustomNativeCollectionViewCell.h */; };
E6D8DEFF27A942920006A3A9 /* WLNativeVideoTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE8827A942910006A3A9 /* WLNativeVideoTableViewCell.h */; };
E6D8DF0027A942920006A3A9 /* WLNativeAdsCollectionMode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE8927A942910006A3A9 /* WLNativeAdsCollectionMode.h */; };
E6D8DF0127A942920006A3A9 /* WLBeacon.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE8B27A942910006A3A9 /* WLBeacon.h */; };
E6D8DF0227A942920006A3A9 /* WLBaseItem.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE8C27A942910006A3A9 /* WLBaseItem.h */; };
E6D8DF0327A942920006A3A9 /* WLInboxItemViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE8D27A942910006A3A9 /* WLInboxItemViewController.h */; };
E6D8DF0427A942920006A3A9 /* WLInboxItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE8E27A942910006A3A9 /* WLInboxItem.m */; };
E6D8DF0527A942920006A3A9 /* WLAPSItem.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE8F27A942910006A3A9 /* WLAPSItem.h */; };
E6D8DF0627A942920006A3A9 /* WLBeacon.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE9027A942910006A3A9 /* WLBeacon.m */; };
E6D8DF0727A942920006A3A9 /* WLInboxItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE9127A942910006A3A9 /* WLInboxItemViewController.m */; };
E6D8DF0827A942920006A3A9 /* WLBaseItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE9227A942910006A3A9 /* WLBaseItem.m */; };
E6D8DF0927A942920006A3A9 /* WLInboxItem.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DE9327A942910006A3A9 /* WLInboxItem.h */; };
E6D8DF0A27A942920006A3A9 /* WLAPSItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE9427A942910006A3A9 /* WLAPSItem.m */; };
E6D8DF0B27A942920006A3A9 /* WLEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE9527A942910006A3A9 /* WLEvent.m */; };
E6D8DF0C27A942920006A3A9 /* warp_white_back_button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE9727A942910006A3A9 /* warp_white_back_button@2x.png */; };
E6D8DF0D27A942920006A3A9 /* warp_white_forward_button.png in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE9827A942910006A3A9 /* warp_white_forward_button.png */; };
E6D8DF0E27A942920006A3A9 /* warp_white_back_button.png in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE9927A942910006A3A9 /* warp_white_back_button.png */; };
E6D8DF0F27A942920006A3A9 /* warp_white_close_button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE9A27A942910006A3A9 /* warp_white_close_button@2x.png */; };
E6D8DF1027A942920006A3A9 /* warp_white_forward_button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE9B27A942910006A3A9 /* warp_white_forward_button@2x.png */; };
E6D8DF1127A942920006A3A9 /* warp_white_close_button.png in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DE9C27A942910006A3A9 /* warp_white_close_button.png */; };
E6D8DF1227A942920006A3A9 /* WLPushManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE9E27A942910006A3A9 /* WLPushManager.m */; };
E6D8DF1327A942920006A3A9 /* WLBeaconManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DE9F27A942910006A3A9 /* WLBeaconManager.m */; };
E6D8DF1427A942920006A3A9 /* WLLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEA027A942910006A3A9 /* WLLocationManager.m */; };
E6D8DF1527A942920006A3A9 /* WLAnalyticsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEA127A942910006A3A9 /* WLAnalyticsManager.h */; };
E6D8DF1627A942920006A3A9 /* WLUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEA227A942910006A3A9 /* WLUserManager.h */; };
E6D8DF1727A942920006A3A9 /* WLBeaconManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEA327A942910006A3A9 /* WLBeaconManager.h */; };
E6D8DF1827A942920006A3A9 /* WLPushManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEA427A942910006A3A9 /* WLPushManager.h */; };
E6D8DF1927A942920006A3A9 /* WLAnalyticsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEA527A942910006A3A9 /* WLAnalyticsManager.m */; };
E6D8DF1A27A942920006A3A9 /* WLLocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEA627A942910006A3A9 /* WLLocationManager.h */; };
E6D8DF1B27A942920006A3A9 /* WLUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEA727A942910006A3A9 /* WLUserManager.m */; };
E6D8DF1C27A942920006A3A9 /* WLUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEA927A942910006A3A9 /* WLUtils.m */; };
E6D8DF1D27A942920006A3A9 /* UIViewController+WLAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEAA27A942910006A3A9 /* UIViewController+WLAdditions.h */; };
E6D8DF1E27A942920006A3A9 /* UIViewController+WLAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEAB27A942910006A3A9 /* UIViewController+WLAdditions.m */; };
E6D8DF1F27A942920006A3A9 /* WLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEAC27A942910006A3A9 /* WLUtils.h */; };
E6D8DF2027A942920006A3A9 /* Warply.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEAD27A942910006A3A9 /* Warply.m */; };
E6D8DF2127A942920006A3A9 /* WLAPPActionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEAF27A942910006A3A9 /* WLAPPActionHandler.m */; };
E6D8DF2227A942920006A3A9 /* WLSMSActionHanlder.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEB027A942910006A3A9 /* WLSMSActionHanlder.h */; };
E6D8DF2327A942920006A3A9 /* WLSMSActionHandlerDeprecated.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEB127A942910006A3A9 /* WLSMSActionHandlerDeprecated.m */; };
E6D8DF2427A942920006A3A9 /* WLSMSActionHandlerDeprecated.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEB227A942910006A3A9 /* WLSMSActionHandlerDeprecated.h */; };
E6D8DF2527A942920006A3A9 /* WLSMSActionHanlder.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEB327A942910006A3A9 /* WLSMSActionHanlder.m */; };
E6D8DF2627A942920006A3A9 /* WLAPPActionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEB427A942910006A3A9 /* WLAPPActionHandler.h */; };
E6D8DF2727A942920006A3A9 /* WLGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEB527A942910006A3A9 /* WLGlobals.h */; };
E6D8DF2827A942920006A3A9 /* NSString+SSToolkitAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEB827A942910006A3A9 /* NSString+SSToolkitAdditions.h */; };
E6D8DF2927A942920006A3A9 /* NSData+SSToolkitAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEB927A942910006A3A9 /* NSData+SSToolkitAdditions.m */; };
E6D8DF2A27A942920006A3A9 /* NSData+SSToolkitAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEBA27A942910006A3A9 /* NSData+SSToolkitAdditions.h */; };
E6D8DF2B27A942920006A3A9 /* NSString+SSToolkitAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEBB27A942910006A3A9 /* NSString+SSToolkitAdditions.m */; };
E6D8DF2C27A942920006A3A9 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEBD27A942910006A3A9 /* UIProgressView+AFNetworking.m */; };
E6D8DF2D27A942920006A3A9 /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEBE27A942910006A3A9 /* UIButton+AFNetworking.h */; };
E6D8DF2E27A942920006A3A9 /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEBF27A942910006A3A9 /* UIRefreshControl+AFNetworking.m */; };
E6D8DF2F27A942920006A3A9 /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEC027A942910006A3A9 /* UIImageView+AFNetworking.h */; };
E6D8DF3027A942920006A3A9 /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEC127A942910006A3A9 /* AFImageDownloader.h */; };
E6D8DF3127A942920006A3A9 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEC227A942910006A3A9 /* AFNetworkActivityIndicatorManager.m */; };
E6D8DF3227A942920006A3A9 /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEC327A942910006A3A9 /* AFAutoPurgingImageCache.h */; };
E6D8DF3327A942920006A3A9 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEC427A942910006A3A9 /* UIWebView+AFNetworking.h */; };
E6D8DF3427A942920006A3A9 /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEC527A942910006A3A9 /* UIActivityIndicatorView+AFNetworking.h */; };
E6D8DF3527A942920006A3A9 /* UIImage+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEC627A942910006A3A9 /* UIImage+AFNetworking.h */; };
E6D8DF3627A942920006A3A9 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEC727A942910006A3A9 /* UIProgressView+AFNetworking.h */; };
E6D8DF3727A942920006A3A9 /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEC827A942910006A3A9 /* UIImageView+AFNetworking.m */; };
E6D8DF3827A942920006A3A9 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEC927A942910006A3A9 /* UIKit+AFNetworking.h */; };
E6D8DF3927A942920006A3A9 /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DECA27A942910006A3A9 /* UIRefreshControl+AFNetworking.h */; };
E6D8DF3A27A942920006A3A9 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DECB27A942910006A3A9 /* UIButton+AFNetworking.m */; };
E6D8DF3B27A942920006A3A9 /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DECC27A942910006A3A9 /* UIActivityIndicatorView+AFNetworking.m */; };
E6D8DF3C27A942920006A3A9 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DECD27A942910006A3A9 /* UIWebView+AFNetworking.m */; };
E6D8DF3D27A942920006A3A9 /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DECE27A942910006A3A9 /* AFAutoPurgingImageCache.m */; };
E6D8DF3E27A942920006A3A9 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DECF27A942910006A3A9 /* AFNetworkActivityIndicatorManager.h */; };
E6D8DF3F27A942920006A3A9 /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DED027A942910006A3A9 /* AFImageDownloader.m */; };
E6D8DF4027A942920006A3A9 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DED227A942910006A3A9 /* AFSecurityPolicy.h */; };
E6D8DF4127A942920006A3A9 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DED327A942910006A3A9 /* AFNetworkReachabilityManager.h */; };
E6D8DF4227A942920006A3A9 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DED427A942910006A3A9 /* AFURLSessionManager.h */; };
E6D8DF4327A942920006A3A9 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DED527A942910006A3A9 /* AFURLRequestSerialization.h */; };
E6D8DF4427A942920006A3A9 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DED627A942910006A3A9 /* AFURLResponseSerialization.m */; };
E6D8DF4527A942920006A3A9 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DED727A942910006A3A9 /* AFHTTPSessionManager.m */; };
E6D8DF4627A942920006A3A9 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DED827A942910006A3A9 /* AFURLResponseSerialization.h */; };
E6D8DF4727A942920006A3A9 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DED927A942910006A3A9 /* AFURLSessionManager.m */; };
E6D8DF4827A942920006A3A9 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEDA27A942910006A3A9 /* AFURLRequestSerialization.m */; };
E6D8DF4927A942920006A3A9 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEDB27A942910006A3A9 /* AFNetworking.h */; };
E6D8DF4A27A942920006A3A9 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEDC27A942910006A3A9 /* AFNetworkReachabilityManager.m */; };
E6D8DF4B27A942920006A3A9 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEDD27A942910006A3A9 /* AFSecurityPolicy.m */; };
E6D8DF4C27A942920006A3A9 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEDE27A942910006A3A9 /* AFHTTPSessionManager.h */; };
E6D8DF4D27A942920006A3A9 /* FMDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEE027A942910006A3A9 /* FMDatabase.h */; };
E6D8DF4E27A942920006A3A9 /* FMDatabaseQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEE127A942910006A3A9 /* FMDatabaseQueue.m */; };
E6D8DF4F27A942920006A3A9 /* FMResultSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEE227A942910006A3A9 /* FMResultSet.h */; };
E6D8DF5027A942920006A3A9 /* FMDatabasePool.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEE327A942910006A3A9 /* FMDatabasePool.h */; };
E6D8DF5127A942920006A3A9 /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEE427A942910006A3A9 /* FMDatabaseAdditions.m */; };
E6D8DF5227A942920006A3A9 /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEE527A942910006A3A9 /* FMDatabase.m */; };
E6D8DF5327A942920006A3A9 /* FMDatabaseQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEE627A942910006A3A9 /* FMDatabaseQueue.h */; };
E6D8DF5427A942920006A3A9 /* FMDB.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEE727A942910006A3A9 /* FMDB.h */; };
E6D8DF5527A942920006A3A9 /* FMDatabaseAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEE827A942910006A3A9 /* FMDatabaseAdditions.h */; };
E6D8DF5627A942920006A3A9 /* FMDatabasePool.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEE927A942910006A3A9 /* FMDatabasePool.m */; };
E6D8DF5727A942920006A3A9 /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DEEA27A942910006A3A9 /* FMResultSet.m */; };
E6D8DF5827A942920006A3A9 /* WLEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEEB27A942910006A3A9 /* WLEvent.h */; };
E6D8DF5927A942920006A3A9 /* Warply.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DEEC27A942910006A3A9 /* Warply.h */; };
E6D8DF5A27A942920006A3A9 /* Media.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E6D8DEED27A942920006A3A9 /* Media.xcassets */; };
E6D8DF6027A9429E0006A3A9 /* MyApi.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D8DF5C27A9429E0006A3A9 /* MyApi.m */; };
E6D8DF6227A9429E0006A3A9 /* MyApi.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D8DF5E27A9429E0006A3A9 /* MyApi.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
1353B8C484CC0649CAC2EB74 /* Pods_WarplySDKFrameworkIOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_WarplySDKFrameworkIOS.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1E7086642811A93F00704CA8 /* CouponBarcodeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CouponBarcodeView.swift; sourceTree = "<group>"; };
1E7086662811A96E00704CA8 /* CouponBarcodeViewInterface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CouponBarcodeViewInterface.swift; sourceTree = "<group>"; };
1E735FF1281067320050A298 /* CampaignWebview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CampaignWebview.swift; sourceTree = "<group>"; };
1E735FF32810681E0050A298 /* CampaignWebviewInterface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CampaignWebviewInterface.swift; sourceTree = "<group>"; };
1E879E24281AC96A0089F489 /* OldCouponsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OldCouponsView.swift; sourceTree = "<group>"; };
1E879E26281AC99F0089F489 /* OldCouponsViewInterface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OldCouponsViewInterface.swift; sourceTree = "<group>"; };
1E98EC1328199C4F007524A0 /* AllGiftsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AllGiftsView.swift; sourceTree = "<group>"; };
1E98EC1528199C86007524A0 /* AllGiftsViewInterface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AllGiftsViewInterface.swift; sourceTree = "<group>"; };
1EBEB02C280D69D800BF802C /* GiftsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GiftsView.swift; sourceTree = "<group>"; };
1EBEB02E280D6AA500BF802C /* GiftsViewInterface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GiftsViewInterface.swift; sourceTree = "<group>"; };
B9413513157AD76ECE896B81 /* Pods-WarplySDKFrameworkIOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-WarplySDKFrameworkIOS.release.xcconfig"; path = "Target Support Files/Pods-WarplySDKFrameworkIOS/Pods-WarplySDKFrameworkIOS.release.xcconfig"; sourceTree = "<group>"; };
E639EFA0280810E300B9DD94 /* CouponsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CouponsView.swift; sourceTree = "<group>"; };
E639EFA1280810E300B9DD94 /* CouponsViewInterface.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CouponsViewInterface.swift; sourceTree = "<group>"; };
E639EFA42808244E00B9DD94 /* MyEmptyClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyEmptyClass.swift; sourceTree = "<group>"; };
E639EFAA2808347700B9DD94 /* ic_back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ic_back.png; sourceTree = "<group>"; };
E655D05928058A72004F913C /* WarplySDKFrameworkIOS-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "WarplySDKFrameworkIOS-Bridging-Header.h"; sourceTree = "<group>"; };
E67D1EB7281055D900940F01 /* WalletViewInterface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WalletViewInterface.swift; sourceTree = "<group>"; };
E67D1EB9281055F800940F01 /* MoreForYouViewInterface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MoreForYouViewInterface.swift; sourceTree = "<group>"; };
E67D1EBD2810573900940F01 /* WalletView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WalletView.swift; sourceTree = "<group>"; };
E67D1EBF2810579F00940F01 /* MoreForYouView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MoreForYouView.swift; sourceTree = "<group>"; };
E67D1EC128113EED00940F01 /* CouponView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CouponView.swift; sourceTree = "<group>"; };
E67D1EC328113EFD00940F01 /* CouponViewInterface.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CouponViewInterface.swift; sourceTree = "<group>"; };
E67D1EC528117F2400940F01 /* swiftApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = swiftApi.swift; sourceTree = "<group>"; };
E6D8DE6827A942010006A3A9 /* WarplySDKFrameworkIOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = WarplySDKFrameworkIOS.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E6D8DE6B27A942010006A3A9 /* WarplySDKFrameworkIOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WarplySDKFrameworkIOS.h; sourceTree = "<group>"; };
E6D8DE6C27A942010006A3A9 /* WarplySDKFrameworkIOS.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = WarplySDKFrameworkIOS.docc; sourceTree = "<group>"; };
E6D8DE7527A942910006A3A9 /* WarplyReactMethods.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WarplyReactMethods.m; sourceTree = "<group>"; };
E6D8DE7627A942910006A3A9 /* WarplyReactMethods.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WarplyReactMethods.h; sourceTree = "<group>"; };
E6D8DE7927A942910006A3A9 /* WLNativeAdCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeAdCollectionViewCell.h; sourceTree = "<group>"; };
E6D8DE7A27A942910006A3A9 /* WLNativeVideoTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WLNativeVideoTableViewCell.xib; sourceTree = "<group>"; };
E6D8DE7B27A942910006A3A9 /* WLNativeAdTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeAdTableViewCell.h; sourceTree = "<group>"; };
E6D8DE7C27A942910006A3A9 /* WLNativeVideoTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeVideoTableViewCell.m; sourceTree = "<group>"; };
E6D8DE7D27A942910006A3A9 /* WLCustomNativeCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLCustomNativeCollectionViewCell.m; sourceTree = "<group>"; };
E6D8DE7E27A942910006A3A9 /* WLNativeAdsTableMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeAdsTableMode.m; sourceTree = "<group>"; };
E6D8DE7F27A942910006A3A9 /* WLCustomNativeAdTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLCustomNativeAdTableViewCell.h; sourceTree = "<group>"; };
E6D8DE8027A942910006A3A9 /* WLNativeAdsCollectionMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeAdsCollectionMode.m; sourceTree = "<group>"; };
E6D8DE8127A942910006A3A9 /* WLNativeAdTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeAdTableViewCell.m; sourceTree = "<group>"; };
E6D8DE8227A942910006A3A9 /* WLNativeAdCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeAdCollectionViewCell.m; sourceTree = "<group>"; };
E6D8DE8327A942910006A3A9 /* WLNativeAdTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WLNativeAdTableViewCell.xib; sourceTree = "<group>"; };
E6D8DE8427A942910006A3A9 /* WLNativeAdCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WLNativeAdCollectionViewCell.xib; sourceTree = "<group>"; };
E6D8DE8527A942910006A3A9 /* WLCustomNativeAdTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLCustomNativeAdTableViewCell.m; sourceTree = "<group>"; };
E6D8DE8627A942910006A3A9 /* WLNativeAdsTableMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeAdsTableMode.h; sourceTree = "<group>"; };
E6D8DE8727A942910006A3A9 /* WLCustomNativeCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLCustomNativeCollectionViewCell.h; sourceTree = "<group>"; };
E6D8DE8827A942910006A3A9 /* WLNativeVideoTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeVideoTableViewCell.h; sourceTree = "<group>"; };
E6D8DE8927A942910006A3A9 /* WLNativeAdsCollectionMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeAdsCollectionMode.h; sourceTree = "<group>"; };
E6D8DE8B27A942910006A3A9 /* WLBeacon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLBeacon.h; sourceTree = "<group>"; };
E6D8DE8C27A942910006A3A9 /* WLBaseItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLBaseItem.h; sourceTree = "<group>"; };
E6D8DE8D27A942910006A3A9 /* WLInboxItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLInboxItemViewController.h; sourceTree = "<group>"; };
E6D8DE8E27A942910006A3A9 /* WLInboxItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLInboxItem.m; sourceTree = "<group>"; };
E6D8DE8F27A942910006A3A9 /* WLAPSItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLAPSItem.h; sourceTree = "<group>"; };
E6D8DE9027A942910006A3A9 /* WLBeacon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLBeacon.m; sourceTree = "<group>"; };
E6D8DE9127A942910006A3A9 /* WLInboxItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLInboxItemViewController.m; sourceTree = "<group>"; };
E6D8DE9227A942910006A3A9 /* WLBaseItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLBaseItem.m; sourceTree = "<group>"; };
E6D8DE9327A942910006A3A9 /* WLInboxItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLInboxItem.h; sourceTree = "<group>"; };
E6D8DE9427A942910006A3A9 /* WLAPSItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLAPSItem.m; sourceTree = "<group>"; };
E6D8DE9527A942910006A3A9 /* WLEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLEvent.m; sourceTree = "<group>"; };
E6D8DE9727A942910006A3A9 /* warp_white_back_button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "warp_white_back_button@2x.png"; sourceTree = "<group>"; };
E6D8DE9827A942910006A3A9 /* warp_white_forward_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = warp_white_forward_button.png; sourceTree = "<group>"; };
E6D8DE9927A942910006A3A9 /* warp_white_back_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = warp_white_back_button.png; sourceTree = "<group>"; };
E6D8DE9A27A942910006A3A9 /* warp_white_close_button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "warp_white_close_button@2x.png"; sourceTree = "<group>"; };
E6D8DE9B27A942910006A3A9 /* warp_white_forward_button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "warp_white_forward_button@2x.png"; sourceTree = "<group>"; };
E6D8DE9C27A942910006A3A9 /* warp_white_close_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = warp_white_close_button.png; sourceTree = "<group>"; };
E6D8DE9E27A942910006A3A9 /* WLPushManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLPushManager.m; sourceTree = "<group>"; };
E6D8DE9F27A942910006A3A9 /* WLBeaconManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLBeaconManager.m; sourceTree = "<group>"; };
E6D8DEA027A942910006A3A9 /* WLLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLLocationManager.m; sourceTree = "<group>"; };
E6D8DEA127A942910006A3A9 /* WLAnalyticsManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLAnalyticsManager.h; sourceTree = "<group>"; };
E6D8DEA227A942910006A3A9 /* WLUserManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLUserManager.h; sourceTree = "<group>"; };
E6D8DEA327A942910006A3A9 /* WLBeaconManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLBeaconManager.h; sourceTree = "<group>"; };
E6D8DEA427A942910006A3A9 /* WLPushManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLPushManager.h; sourceTree = "<group>"; };
E6D8DEA527A942910006A3A9 /* WLAnalyticsManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLAnalyticsManager.m; sourceTree = "<group>"; };
E6D8DEA627A942910006A3A9 /* WLLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLLocationManager.h; sourceTree = "<group>"; };
E6D8DEA727A942910006A3A9 /* WLUserManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLUserManager.m; sourceTree = "<group>"; };
E6D8DEA927A942910006A3A9 /* WLUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLUtils.m; sourceTree = "<group>"; };
E6D8DEAA27A942910006A3A9 /* UIViewController+WLAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+WLAdditions.h"; sourceTree = "<group>"; };
E6D8DEAB27A942910006A3A9 /* UIViewController+WLAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+WLAdditions.m"; sourceTree = "<group>"; };
E6D8DEAC27A942910006A3A9 /* WLUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLUtils.h; sourceTree = "<group>"; };
E6D8DEAD27A942910006A3A9 /* Warply.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Warply.m; sourceTree = "<group>"; };
E6D8DEAF27A942910006A3A9 /* WLAPPActionHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLAPPActionHandler.m; sourceTree = "<group>"; };
E6D8DEB027A942910006A3A9 /* WLSMSActionHanlder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLSMSActionHanlder.h; sourceTree = "<group>"; };
E6D8DEB127A942910006A3A9 /* WLSMSActionHandlerDeprecated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLSMSActionHandlerDeprecated.m; sourceTree = "<group>"; };
E6D8DEB227A942910006A3A9 /* WLSMSActionHandlerDeprecated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLSMSActionHandlerDeprecated.h; sourceTree = "<group>"; };
E6D8DEB327A942910006A3A9 /* WLSMSActionHanlder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLSMSActionHanlder.m; sourceTree = "<group>"; };
E6D8DEB427A942910006A3A9 /* WLAPPActionHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLAPPActionHandler.h; sourceTree = "<group>"; };
E6D8DEB527A942910006A3A9 /* WLGlobals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLGlobals.h; sourceTree = "<group>"; };
E6D8DEB827A942910006A3A9 /* NSString+SSToolkitAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+SSToolkitAdditions.h"; sourceTree = "<group>"; };
E6D8DEB927A942910006A3A9 /* NSData+SSToolkitAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+SSToolkitAdditions.m"; sourceTree = "<group>"; };
E6D8DEBA27A942910006A3A9 /* NSData+SSToolkitAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+SSToolkitAdditions.h"; sourceTree = "<group>"; };
E6D8DEBB27A942910006A3A9 /* NSString+SSToolkitAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+SSToolkitAdditions.m"; sourceTree = "<group>"; };
E6D8DEBD27A942910006A3A9 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIProgressView+AFNetworking.m"; sourceTree = "<group>"; };
E6D8DEBE27A942910006A3A9 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+AFNetworking.h"; sourceTree = "<group>"; };
E6D8DEBF27A942910006A3A9 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIRefreshControl+AFNetworking.m"; sourceTree = "<group>"; };
E6D8DEC027A942910006A3A9 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+AFNetworking.h"; sourceTree = "<group>"; };
E6D8DEC127A942910006A3A9 /* AFImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFImageDownloader.h; sourceTree = "<group>"; };
E6D8DEC227A942910006A3A9 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkActivityIndicatorManager.m; sourceTree = "<group>"; };
E6D8DEC327A942910006A3A9 /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFAutoPurgingImageCache.h; sourceTree = "<group>"; };
E6D8DEC427A942910006A3A9 /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWebView+AFNetworking.h"; sourceTree = "<group>"; };
E6D8DEC527A942910006A3A9 /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIActivityIndicatorView+AFNetworking.h"; sourceTree = "<group>"; };
E6D8DEC627A942910006A3A9 /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+AFNetworking.h"; sourceTree = "<group>"; };
E6D8DEC727A942910006A3A9 /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIProgressView+AFNetworking.h"; sourceTree = "<group>"; };
E6D8DEC827A942910006A3A9 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+AFNetworking.m"; sourceTree = "<group>"; };
E6D8DEC927A942910006A3A9 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIKit+AFNetworking.h"; sourceTree = "<group>"; };
E6D8DECA27A942910006A3A9 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIRefreshControl+AFNetworking.h"; sourceTree = "<group>"; };
E6D8DECB27A942910006A3A9 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+AFNetworking.m"; sourceTree = "<group>"; };
E6D8DECC27A942910006A3A9 /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIActivityIndicatorView+AFNetworking.m"; sourceTree = "<group>"; };
E6D8DECD27A942910006A3A9 /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWebView+AFNetworking.m"; sourceTree = "<group>"; };
E6D8DECE27A942910006A3A9 /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFAutoPurgingImageCache.m; sourceTree = "<group>"; };
E6D8DECF27A942910006A3A9 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkActivityIndicatorManager.h; sourceTree = "<group>"; };
E6D8DED027A942910006A3A9 /* AFImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFImageDownloader.m; sourceTree = "<group>"; };
E6D8DED227A942910006A3A9 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
E6D8DED327A942910006A3A9 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
E6D8DED427A942910006A3A9 /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
E6D8DED527A942910006A3A9 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
E6D8DED627A942910006A3A9 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
E6D8DED727A942910006A3A9 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
E6D8DED827A942910006A3A9 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
E6D8DED927A942910006A3A9 /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
E6D8DEDA27A942910006A3A9 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
E6D8DEDB27A942910006A3A9 /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
E6D8DEDC27A942910006A3A9 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
E6D8DEDD27A942910006A3A9 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
E6D8DEDE27A942910006A3A9 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
E6D8DEE027A942910006A3A9 /* FMDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabase.h; sourceTree = "<group>"; };
E6D8DEE127A942910006A3A9 /* FMDatabaseQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabaseQueue.m; sourceTree = "<group>"; };
E6D8DEE227A942910006A3A9 /* FMResultSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMResultSet.h; sourceTree = "<group>"; };
E6D8DEE327A942910006A3A9 /* FMDatabasePool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabasePool.h; sourceTree = "<group>"; };
E6D8DEE427A942910006A3A9 /* FMDatabaseAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabaseAdditions.m; sourceTree = "<group>"; };
E6D8DEE527A942910006A3A9 /* FMDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabase.m; sourceTree = "<group>"; };
E6D8DEE627A942910006A3A9 /* FMDatabaseQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabaseQueue.h; sourceTree = "<group>"; };
E6D8DEE727A942910006A3A9 /* FMDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDB.h; sourceTree = "<group>"; };
E6D8DEE827A942910006A3A9 /* FMDatabaseAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabaseAdditions.h; sourceTree = "<group>"; };
E6D8DEE927A942910006A3A9 /* FMDatabasePool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabasePool.m; sourceTree = "<group>"; };
E6D8DEEA27A942910006A3A9 /* FMResultSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMResultSet.m; sourceTree = "<group>"; };
E6D8DEEB27A942910006A3A9 /* WLEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLEvent.h; sourceTree = "<group>"; };
E6D8DEEC27A942910006A3A9 /* Warply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Warply.h; sourceTree = "<group>"; };
E6D8DEED27A942920006A3A9 /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = SOURCE_ROOT; };
E6D8DF5C27A9429E0006A3A9 /* MyApi.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyApi.m; sourceTree = "<group>"; };
E6D8DF5E27A9429E0006A3A9 /* MyApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyApi.h; sourceTree = "<group>"; };
F2447FDBC0B149DFB9DC6E40 /* Pods-WarplySDKFrameworkIOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-WarplySDKFrameworkIOS.debug.xcconfig"; path = "Target Support Files/Pods-WarplySDKFrameworkIOS/Pods-WarplySDKFrameworkIOS.debug.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
E6D8DE6527A942010006A3A9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1EBB036F281BE3610062F663 /* RSBarcodes_Swift in Frameworks */,
260C6A1AFF7560C32E212F20 /* Pods_WarplySDKFrameworkIOS.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
870107DF603473A1B9FB618F /* Pods */ = {
isa = PBXGroup;
children = (
F2447FDBC0B149DFB9DC6E40 /* Pods-WarplySDKFrameworkIOS.debug.xcconfig */,
B9413513157AD76ECE896B81 /* Pods-WarplySDKFrameworkIOS.release.xcconfig */,
);
path = Pods;
sourceTree = "<group>";
};
9C6080DEB815BBC562F23AB4 /* Frameworks */ = {
isa = PBXGroup;
children = (
1353B8C484CC0649CAC2EB74 /* Pods_WarplySDKFrameworkIOS.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
E639EFA92808347700B9DD94 /* UIResources */ = {
isa = PBXGroup;
children = (
E639EFAA2808347700B9DD94 /* ic_back.png */,
);
path = UIResources;
sourceTree = SOURCE_ROOT;
};
E6D8DE5E27A942000006A3A9 = {
isa = PBXGroup;
children = (
E6D8DE6A27A942010006A3A9 /* WarplySDKFrameworkIOS */,
E6D8DE6927A942010006A3A9 /* Products */,
870107DF603473A1B9FB618F /* Pods */,
9C6080DEB815BBC562F23AB4 /* Frameworks */,
);
sourceTree = "<group>";
};
E6D8DE6927A942010006A3A9 /* Products */ = {
isa = PBXGroup;
children = (
E6D8DE6827A942010006A3A9 /* WarplySDKFrameworkIOS.framework */,
);
name = Products;
sourceTree = "<group>";
};
E6D8DE6A27A942010006A3A9 /* WarplySDKFrameworkIOS */ = {
isa = PBXGroup;
children = (
E639EFA92808347700B9DD94 /* UIResources */,
E639EFA0280810E300B9DD94 /* CouponsView.swift */,
E639EFA1280810E300B9DD94 /* CouponsViewInterface.swift */,
1EBEB02C280D69D800BF802C /* GiftsView.swift */,
1E98EC1328199C4F007524A0 /* AllGiftsView.swift */,
1E879E24281AC96A0089F489 /* OldCouponsView.swift */,
1E879E26281AC99F0089F489 /* OldCouponsViewInterface.swift */,
1E98EC1528199C86007524A0 /* AllGiftsViewInterface.swift */,
1E735FF1281067320050A298 /* CampaignWebview.swift */,
1E735FF32810681E0050A298 /* CampaignWebviewInterface.swift */,
1EBEB02E280D6AA500BF802C /* GiftsViewInterface.swift */,
E67D1EB7281055D900940F01 /* WalletViewInterface.swift */,
E67D1EBD2810573900940F01 /* WalletView.swift */,
E67D1EB9281055F800940F01 /* MoreForYouViewInterface.swift */,
E67D1EBF2810579F00940F01 /* MoreForYouView.swift */,
E67D1EC128113EED00940F01 /* CouponView.swift */,
1E7086642811A93F00704CA8 /* CouponBarcodeView.swift */,
1E7086662811A96E00704CA8 /* CouponBarcodeViewInterface.swift */,
E67D1EC328113EFD00940F01 /* CouponViewInterface.swift */,
E6D8DF5E27A9429E0006A3A9 /* MyApi.h */,
E6D8DF5C27A9429E0006A3A9 /* MyApi.m */,
E6D8DE7427A942910006A3A9 /* Helpers */,
E6D8DEED27A942920006A3A9 /* Media.xcassets */,
E6D8DE7727A942910006A3A9 /* Warply */,
E6D8DE6B27A942010006A3A9 /* WarplySDKFrameworkIOS.h */,
E6D8DE6C27A942010006A3A9 /* WarplySDKFrameworkIOS.docc */,
E655D05928058A72004F913C /* WarplySDKFrameworkIOS-Bridging-Header.h */,
E639EFA42808244E00B9DD94 /* MyEmptyClass.swift */,
E67D1EC528117F2400940F01 /* swiftApi.swift */,
);
path = WarplySDKFrameworkIOS;
sourceTree = "<group>";
};
E6D8DE7427A942910006A3A9 /* Helpers */ = {
isa = PBXGroup;
children = (
E6D8DE7527A942910006A3A9 /* WarplyReactMethods.m */,
E6D8DE7627A942910006A3A9 /* WarplyReactMethods.h */,
);
path = Helpers;
sourceTree = SOURCE_ROOT;
};
E6D8DE7727A942910006A3A9 /* Warply */ = {
isa = PBXGroup;
children = (
E6D8DE7827A942910006A3A9 /* nativeAds */,
E6D8DE8A27A942910006A3A9 /* inbox */,
E6D8DE9527A942910006A3A9 /* WLEvent.m */,
E6D8DE9627A942910006A3A9 /* resources */,
E6D8DE9D27A942910006A3A9 /* managers */,
E6D8DEA827A942910006A3A9 /* foundation */,
E6D8DEAD27A942910006A3A9 /* Warply.m */,
E6D8DEAE27A942910006A3A9 /* actions */,
E6D8DEB527A942910006A3A9 /* WLGlobals.h */,
E6D8DEB627A942910006A3A9 /* external */,
E6D8DEEB27A942910006A3A9 /* WLEvent.h */,
E6D8DEEC27A942910006A3A9 /* Warply.h */,
);
path = Warply;
sourceTree = SOURCE_ROOT;
};
E6D8DE7827A942910006A3A9 /* nativeAds */ = {
isa = PBXGroup;
children = (
E6D8DE7927A942910006A3A9 /* WLNativeAdCollectionViewCell.h */,
E6D8DE7A27A942910006A3A9 /* WLNativeVideoTableViewCell.xib */,
E6D8DE7B27A942910006A3A9 /* WLNativeAdTableViewCell.h */,
E6D8DE7C27A942910006A3A9 /* WLNativeVideoTableViewCell.m */,
E6D8DE7D27A942910006A3A9 /* WLCustomNativeCollectionViewCell.m */,
E6D8DE7E27A942910006A3A9 /* WLNativeAdsTableMode.m */,
E6D8DE7F27A942910006A3A9 /* WLCustomNativeAdTableViewCell.h */,
E6D8DE8027A942910006A3A9 /* WLNativeAdsCollectionMode.m */,
E6D8DE8127A942910006A3A9 /* WLNativeAdTableViewCell.m */,
E6D8DE8227A942910006A3A9 /* WLNativeAdCollectionViewCell.m */,
E6D8DE8327A942910006A3A9 /* WLNativeAdTableViewCell.xib */,
E6D8DE8427A942910006A3A9 /* WLNativeAdCollectionViewCell.xib */,
E6D8DE8527A942910006A3A9 /* WLCustomNativeAdTableViewCell.m */,
E6D8DE8627A942910006A3A9 /* WLNativeAdsTableMode.h */,
E6D8DE8727A942910006A3A9 /* WLCustomNativeCollectionViewCell.h */,
E6D8DE8827A942910006A3A9 /* WLNativeVideoTableViewCell.h */,
E6D8DE8927A942910006A3A9 /* WLNativeAdsCollectionMode.h */,
);
path = nativeAds;
sourceTree = "<group>";
};
E6D8DE8A27A942910006A3A9 /* inbox */ = {
isa = PBXGroup;
children = (
E6D8DE8B27A942910006A3A9 /* WLBeacon.h */,
E6D8DE8C27A942910006A3A9 /* WLBaseItem.h */,
E6D8DE8D27A942910006A3A9 /* WLInboxItemViewController.h */,
E6D8DE8E27A942910006A3A9 /* WLInboxItem.m */,
E6D8DE8F27A942910006A3A9 /* WLAPSItem.h */,
E6D8DE9027A942910006A3A9 /* WLBeacon.m */,
E6D8DE9127A942910006A3A9 /* WLInboxItemViewController.m */,
E6D8DE9227A942910006A3A9 /* WLBaseItem.m */,
E6D8DE9327A942910006A3A9 /* WLInboxItem.h */,
E6D8DE9427A942910006A3A9 /* WLAPSItem.m */,
);
path = inbox;
sourceTree = "<group>";
};
E6D8DE9627A942910006A3A9 /* resources */ = {
isa = PBXGroup;
children = (
E6D8DE9727A942910006A3A9 /* warp_white_back_button@2x.png */,
E6D8DE9827A942910006A3A9 /* warp_white_forward_button.png */,
E6D8DE9927A942910006A3A9 /* warp_white_back_button.png */,
E6D8DE9A27A942910006A3A9 /* warp_white_close_button@2x.png */,
E6D8DE9B27A942910006A3A9 /* warp_white_forward_button@2x.png */,
E6D8DE9C27A942910006A3A9 /* warp_white_close_button.png */,
);
path = resources;
sourceTree = "<group>";
};
E6D8DE9D27A942910006A3A9 /* managers */ = {
isa = PBXGroup;
children = (
E6D8DE9E27A942910006A3A9 /* WLPushManager.m */,
E6D8DE9F27A942910006A3A9 /* WLBeaconManager.m */,
E6D8DEA027A942910006A3A9 /* WLLocationManager.m */,
E6D8DEA127A942910006A3A9 /* WLAnalyticsManager.h */,
E6D8DEA227A942910006A3A9 /* WLUserManager.h */,
E6D8DEA327A942910006A3A9 /* WLBeaconManager.h */,
E6D8DEA427A942910006A3A9 /* WLPushManager.h */,
E6D8DEA527A942910006A3A9 /* WLAnalyticsManager.m */,
E6D8DEA627A942910006A3A9 /* WLLocationManager.h */,
E6D8DEA727A942910006A3A9 /* WLUserManager.m */,
);
path = managers;
sourceTree = "<group>";
};
E6D8DEA827A942910006A3A9 /* foundation */ = {
isa = PBXGroup;
children = (
E6D8DEA927A942910006A3A9 /* WLUtils.m */,
E6D8DEAA27A942910006A3A9 /* UIViewController+WLAdditions.h */,
E6D8DEAB27A942910006A3A9 /* UIViewController+WLAdditions.m */,
E6D8DEAC27A942910006A3A9 /* WLUtils.h */,
);
path = foundation;
sourceTree = "<group>";
};
E6D8DEAE27A942910006A3A9 /* actions */ = {
isa = PBXGroup;
children = (
E6D8DEAF27A942910006A3A9 /* WLAPPActionHandler.m */,
E6D8DEB027A942910006A3A9 /* WLSMSActionHanlder.h */,
E6D8DEB127A942910006A3A9 /* WLSMSActionHandlerDeprecated.m */,
E6D8DEB227A942910006A3A9 /* WLSMSActionHandlerDeprecated.h */,
E6D8DEB327A942910006A3A9 /* WLSMSActionHanlder.m */,
E6D8DEB427A942910006A3A9 /* WLAPPActionHandler.h */,
);
path = actions;
sourceTree = "<group>";
};
E6D8DEB627A942910006A3A9 /* external */ = {
isa = PBXGroup;
children = (
E6D8DEB727A942910006A3A9 /* sstoolkit */,
E6D8DEBC27A942910006A3A9 /* UIKit+AFNetworking */,
E6D8DED127A942910006A3A9 /* AFNetworking */,
E6D8DEDF27A942910006A3A9 /* fmdb */,
);
path = external;
sourceTree = "<group>";
};
E6D8DEB727A942910006A3A9 /* sstoolkit */ = {
isa = PBXGroup;
children = (
E6D8DEB827A942910006A3A9 /* NSString+SSToolkitAdditions.h */,
E6D8DEB927A942910006A3A9 /* NSData+SSToolkitAdditions.m */,
E6D8DEBA27A942910006A3A9 /* NSData+SSToolkitAdditions.h */,
E6D8DEBB27A942910006A3A9 /* NSString+SSToolkitAdditions.m */,
);
path = sstoolkit;
sourceTree = "<group>";
};
E6D8DEBC27A942910006A3A9 /* UIKit+AFNetworking */ = {
isa = PBXGroup;
children = (
E6D8DEBD27A942910006A3A9 /* UIProgressView+AFNetworking.m */,
E6D8DEBE27A942910006A3A9 /* UIButton+AFNetworking.h */,
E6D8DEBF27A942910006A3A9 /* UIRefreshControl+AFNetworking.m */,
E6D8DEC027A942910006A3A9 /* UIImageView+AFNetworking.h */,
E6D8DEC127A942910006A3A9 /* AFImageDownloader.h */,
E6D8DEC227A942910006A3A9 /* AFNetworkActivityIndicatorManager.m */,
E6D8DEC327A942910006A3A9 /* AFAutoPurgingImageCache.h */,
E6D8DEC427A942910006A3A9 /* UIWebView+AFNetworking.h */,
E6D8DEC527A942910006A3A9 /* UIActivityIndicatorView+AFNetworking.h */,
E6D8DEC627A942910006A3A9 /* UIImage+AFNetworking.h */,
E6D8DEC727A942910006A3A9 /* UIProgressView+AFNetworking.h */,
E6D8DEC827A942910006A3A9 /* UIImageView+AFNetworking.m */,
E6D8DEC927A942910006A3A9 /* UIKit+AFNetworking.h */,
E6D8DECA27A942910006A3A9 /* UIRefreshControl+AFNetworking.h */,
E6D8DECB27A942910006A3A9 /* UIButton+AFNetworking.m */,
E6D8DECC27A942910006A3A9 /* UIActivityIndicatorView+AFNetworking.m */,
E6D8DECD27A942910006A3A9 /* UIWebView+AFNetworking.m */,
E6D8DECE27A942910006A3A9 /* AFAutoPurgingImageCache.m */,
E6D8DECF27A942910006A3A9 /* AFNetworkActivityIndicatorManager.h */,
E6D8DED027A942910006A3A9 /* AFImageDownloader.m */,
);
path = "UIKit+AFNetworking";
sourceTree = "<group>";
};
E6D8DED127A942910006A3A9 /* AFNetworking */ = {
isa = PBXGroup;
children = (
E6D8DED227A942910006A3A9 /* AFSecurityPolicy.h */,
E6D8DED327A942910006A3A9 /* AFNetworkReachabilityManager.h */,
E6D8DED427A942910006A3A9 /* AFURLSessionManager.h */,
E6D8DED527A942910006A3A9 /* AFURLRequestSerialization.h */,
E6D8DED627A942910006A3A9 /* AFURLResponseSerialization.m */,
E6D8DED727A942910006A3A9 /* AFHTTPSessionManager.m */,
E6D8DED827A942910006A3A9 /* AFURLResponseSerialization.h */,
E6D8DED927A942910006A3A9 /* AFURLSessionManager.m */,
E6D8DEDA27A942910006A3A9 /* AFURLRequestSerialization.m */,
E6D8DEDB27A942910006A3A9 /* AFNetworking.h */,
E6D8DEDC27A942910006A3A9 /* AFNetworkReachabilityManager.m */,
E6D8DEDD27A942910006A3A9 /* AFSecurityPolicy.m */,
E6D8DEDE27A942910006A3A9 /* AFHTTPSessionManager.h */,
);
path = AFNetworking;
sourceTree = "<group>";
};
E6D8DEDF27A942910006A3A9 /* fmdb */ = {
isa = PBXGroup;
children = (
E6D8DEE027A942910006A3A9 /* FMDatabase.h */,
E6D8DEE127A942910006A3A9 /* FMDatabaseQueue.m */,
E6D8DEE227A942910006A3A9 /* FMResultSet.h */,
E6D8DEE327A942910006A3A9 /* FMDatabasePool.h */,
E6D8DEE427A942910006A3A9 /* FMDatabaseAdditions.m */,
E6D8DEE527A942910006A3A9 /* FMDatabase.m */,
E6D8DEE627A942910006A3A9 /* FMDatabaseQueue.h */,
E6D8DEE727A942910006A3A9 /* FMDB.h */,
E6D8DEE827A942910006A3A9 /* FMDatabaseAdditions.h */,
E6D8DEE927A942910006A3A9 /* FMDatabasePool.m */,
E6D8DEEA27A942910006A3A9 /* FMResultSet.m */,
);
path = fmdb;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
E6D8DE6327A942010006A3A9 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
E6D8DEEF27A942920006A3A9 /* WarplyReactMethods.h in Headers */,
E6D8DF0027A942920006A3A9 /* WLNativeAdsCollectionMode.h in Headers */,
E655D05A280590AD004F913C /* WarplySDKFrameworkIOS-Bridging-Header.h in Headers */,
E6D8DF3027A942920006A3A9 /* AFImageDownloader.h in Headers */,
E6D8DF4927A942920006A3A9 /* AFNetworking.h in Headers */,
E6D8DF5827A942920006A3A9 /* WLEvent.h in Headers */,
E6D8DF3927A942920006A3A9 /* UIRefreshControl+AFNetworking.h in Headers */,
E6D8DF1A27A942920006A3A9 /* WLLocationManager.h in Headers */,
E6D8DF2827A942920006A3A9 /* NSString+SSToolkitAdditions.h in Headers */,
E6D8DF1627A942920006A3A9 /* WLUserManager.h in Headers */,
E6D8DF2D27A942920006A3A9 /* UIButton+AFNetworking.h in Headers */,
E6D8DF2A27A942920006A3A9 /* NSData+SSToolkitAdditions.h in Headers */,
E6D8DF4027A942920006A3A9 /* AFSecurityPolicy.h in Headers */,
E6D8DF3427A942920006A3A9 /* UIActivityIndicatorView+AFNetworking.h in Headers */,
E6D8DF2F27A942920006A3A9 /* UIImageView+AFNetworking.h in Headers */,
E6D8DF5927A942920006A3A9 /* Warply.h in Headers */,
E6D8DF5327A942920006A3A9 /* FMDatabaseQueue.h in Headers */,
E6D8DF1827A942920006A3A9 /* WLPushManager.h in Headers */,
E6D8DF5427A942920006A3A9 /* FMDB.h in Headers */,
E6D8DF0327A942920006A3A9 /* WLInboxItemViewController.h in Headers */,
E6D8DEF627A942920006A3A9 /* WLCustomNativeAdTableViewCell.h in Headers */,
E6D8DF4D27A942920006A3A9 /* FMDatabase.h in Headers */,
E6D8DF0127A942920006A3A9 /* WLBeacon.h in Headers */,
E6D8DF4C27A942920006A3A9 /* AFHTTPSessionManager.h in Headers */,
E6D8DF1727A942920006A3A9 /* WLBeaconManager.h in Headers */,
E6D8DF4127A942920006A3A9 /* AFNetworkReachabilityManager.h in Headers */,
E6D8DF0527A942920006A3A9 /* WLAPSItem.h in Headers */,
E6D8DF1D27A942920006A3A9 /* UIViewController+WLAdditions.h in Headers */,
E6D8DEF227A942920006A3A9 /* WLNativeAdTableViewCell.h in Headers */,
E6D8DF5527A942920006A3A9 /* FMDatabaseAdditions.h in Headers */,
E6D8DF5027A942920006A3A9 /* FMDatabasePool.h in Headers */,
E6D8DF2727A942920006A3A9 /* WLGlobals.h in Headers */,
E6D8DF1F27A942920006A3A9 /* WLUtils.h in Headers */,
E6D8DF0227A942920006A3A9 /* WLBaseItem.h in Headers */,
E6D8DF3527A942920006A3A9 /* UIImage+AFNetworking.h in Headers */,
E6D8DF3827A942920006A3A9 /* UIKit+AFNetworking.h in Headers */,
E6D8DF4F27A942920006A3A9 /* FMResultSet.h in Headers */,
E6D8DEFD27A942920006A3A9 /* WLNativeAdsTableMode.h in Headers */,
E6D8DF2427A942920006A3A9 /* WLSMSActionHandlerDeprecated.h in Headers */,
E6D8DF3627A942920006A3A9 /* UIProgressView+AFNetworking.h in Headers */,
E6D8DEF027A942920006A3A9 /* WLNativeAdCollectionViewCell.h in Headers */,
E6D8DF4327A942920006A3A9 /* AFURLRequestSerialization.h in Headers */,
E6D8DF2227A942920006A3A9 /* WLSMSActionHanlder.h in Headers */,
E6D8DF2627A942920006A3A9 /* WLAPPActionHandler.h in Headers */,
E6D8DF4227A942920006A3A9 /* AFURLSessionManager.h in Headers */,
E6D8DF1527A942920006A3A9 /* WLAnalyticsManager.h in Headers */,
E6D8DF6227A9429E0006A3A9 /* MyApi.h in Headers */,
E6D8DF3227A942920006A3A9 /* AFAutoPurgingImageCache.h in Headers */,
E6D8DEFE27A942920006A3A9 /* WLCustomNativeCollectionViewCell.h in Headers */,
E6D8DF0927A942920006A3A9 /* WLInboxItem.h in Headers */,
E6D8DEFF27A942920006A3A9 /* WLNativeVideoTableViewCell.h in Headers */,
E6D8DF3E27A942920006A3A9 /* AFNetworkActivityIndicatorManager.h in Headers */,
E6D8DE6E27A942010006A3A9 /* WarplySDKFrameworkIOS.h in Headers */,
E6D8DF3327A942920006A3A9 /* UIWebView+AFNetworking.h in Headers */,
E6D8DF4627A942920006A3A9 /* AFURLResponseSerialization.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
E6D8DE6727A942010006A3A9 /* WarplySDKFrameworkIOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = E6D8DE7127A942010006A3A9 /* Build configuration list for PBXNativeTarget "WarplySDKFrameworkIOS" */;
buildPhases = (
B6F4FCE999118FC36FA21688 /* [CP] Check Pods Manifest.lock */,
E6D8DE6327A942010006A3A9 /* Headers */,
E6D8DE6427A942010006A3A9 /* Sources */,
E6D8DE6527A942010006A3A9 /* Frameworks */,
E6D8DE6627A942010006A3A9 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = WarplySDKFrameworkIOS;
packageProductDependencies = (
1EBB036E281BE3610062F663 /* RSBarcodes_Swift */,
);
productName = WarplySDKFrameworkIOS;
productReference = E6D8DE6827A942010006A3A9 /* WarplySDKFrameworkIOS.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
E6D8DE5F27A942010006A3A9 /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = 1;
LastUpgradeCheck = 1310;
TargetAttributes = {
E6D8DE6727A942010006A3A9 = {
CreatedOnToolsVersion = 13.1;
LastSwiftMigration = 1310;
};
};
};
buildConfigurationList = E6D8DE6227A942010006A3A9 /* Build configuration list for PBXProject "WarplySDKFrameworkIOS" */;
compatibilityVersion = "Xcode 13.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = E6D8DE5E27A942000006A3A9;
packageReferences = (
1EBB036D281BE3610062F663 /* XCRemoteSwiftPackageReference "RSBarcodes_Swift" */,
);
productRefGroup = E6D8DE6927A942010006A3A9 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
E6D8DE6727A942010006A3A9 /* WarplySDKFrameworkIOS */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
E6D8DE6627A942010006A3A9 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E6D8DF5A27A942920006A3A9 /* Media.xcassets in Resources */,
E6D8DF1127A942920006A3A9 /* warp_white_close_button.png in Resources */,
E6D8DF0E27A942920006A3A9 /* warp_white_back_button.png in Resources */,
E6D8DF0F27A942920006A3A9 /* warp_white_close_button@2x.png in Resources */,
E6D8DF0D27A942920006A3A9 /* warp_white_forward_button.png in Resources */,
E6D8DEFA27A942920006A3A9 /* WLNativeAdTableViewCell.xib in Resources */,
E639EFAB2808347700B9DD94 /* ic_back.png in Resources */,
E6D8DF1027A942920006A3A9 /* warp_white_forward_button@2x.png in Resources */,
E6D8DEF127A942920006A3A9 /* WLNativeVideoTableViewCell.xib in Resources */,
E6D8DEFB27A942920006A3A9 /* WLNativeAdCollectionViewCell.xib in Resources */,
E6D8DF0C27A942920006A3A9 /* warp_white_back_button@2x.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
B6F4FCE999118FC36FA21688 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputFileListPaths = (
);
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-WarplySDKFrameworkIOS-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
E6D8DE6427A942010006A3A9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
1E879E27281AC99F0089F489 /* OldCouponsViewInterface.swift in Sources */,
E6D8DF0B27A942920006A3A9 /* WLEvent.m in Sources */,
E6D8DF1E27A942920006A3A9 /* UIViewController+WLAdditions.m in Sources */,
E6D8DF2E27A942920006A3A9 /* UIRefreshControl+AFNetworking.m in Sources */,
E6D8DF4827A942920006A3A9 /* AFURLRequestSerialization.m in Sources */,
E67D1EC228113EED00940F01 /* CouponView.swift in Sources */,
1E7086672811A96E00704CA8 /* CouponBarcodeViewInterface.swift in Sources */,
1E98EC1428199C4F007524A0 /* AllGiftsView.swift in Sources */,
E6D8DEF327A942920006A3A9 /* WLNativeVideoTableViewCell.m in Sources */,
E6D8DF2527A942920006A3A9 /* WLSMSActionHanlder.m in Sources */,
E67D1EBE2810573900940F01 /* WalletView.swift in Sources */,
E6D8DF5727A942920006A3A9 /* FMResultSet.m in Sources */,
E67D1EC428113EFD00940F01 /* CouponViewInterface.swift in Sources */,
E6D8DF3A27A942920006A3A9 /* UIButton+AFNetworking.m in Sources */,
E6D8DF0627A942920006A3A9 /* WLBeacon.m in Sources */,
1E735FF2281067320050A298 /* CampaignWebview.swift in Sources */,
E6D8DF2927A942920006A3A9 /* NSData+SSToolkitAdditions.m in Sources */,
1EBEB02D280D69D800BF802C /* GiftsView.swift in Sources */,
E67D1EC02810579F00940F01 /* MoreForYouView.swift in Sources */,
E6D8DEFC27A942920006A3A9 /* WLCustomNativeAdTableViewCell.m in Sources */,
1E735FF42810681E0050A298 /* CampaignWebviewInterface.swift in Sources */,
E639EFA3280810E300B9DD94 /* CouponsViewInterface.swift in Sources */,
1EBEB02F280D6AA500BF802C /* GiftsViewInterface.swift in Sources */,
E67D1EBA281055F800940F01 /* MoreForYouViewInterface.swift in Sources */,
E6D8DF4A27A942920006A3A9 /* AFNetworkReachabilityManager.m in Sources */,
E6D8DF4B27A942920006A3A9 /* AFSecurityPolicy.m in Sources */,
E6D8DF1327A942920006A3A9 /* WLBeaconManager.m in Sources */,
E6D8DF0427A942920006A3A9 /* WLInboxItem.m in Sources */,
E6D8DF5127A942920006A3A9 /* FMDatabaseAdditions.m in Sources */,
1E879E25281AC96A0089F489 /* OldCouponsView.swift in Sources */,
E6D8DF2127A942920006A3A9 /* WLAPPActionHandler.m in Sources */,
E6D8DF5627A942920006A3A9 /* FMDatabasePool.m in Sources */,
E6D8DF4527A942920006A3A9 /* AFHTTPSessionManager.m in Sources */,
E6D8DF3B27A942920006A3A9 /* UIActivityIndicatorView+AFNetworking.m in Sources */,
E6D8DF3727A942920006A3A9 /* UIImageView+AFNetworking.m in Sources */,
E67D1EB8281055D900940F01 /* WalletViewInterface.swift in Sources */,
E6D8DF3127A942920006A3A9 /* AFNetworkActivityIndicatorManager.m in Sources */,
E6D8DF3D27A942920006A3A9 /* AFAutoPurgingImageCache.m in Sources */,
E6D8DF0A27A942920006A3A9 /* WLAPSItem.m in Sources */,
E6D8DF2C27A942920006A3A9 /* UIProgressView+AFNetworking.m in Sources */,
E6D8DF3C27A942920006A3A9 /* UIWebView+AFNetworking.m in Sources */,
E639EFA2280810E300B9DD94 /* CouponsView.swift in Sources */,
1E98EC1628199C86007524A0 /* AllGiftsViewInterface.swift in Sources */,
E6D8DF1427A942920006A3A9 /* WLLocationManager.m in Sources */,
E6D8DF6027A9429E0006A3A9 /* MyApi.m in Sources */,
E6D8DF3F27A942920006A3A9 /* AFImageDownloader.m in Sources */,
E6D8DEF727A942920006A3A9 /* WLNativeAdsCollectionMode.m in Sources */,
E6D8DEF427A942920006A3A9 /* WLCustomNativeCollectionViewCell.m in Sources */,
E6D8DF2B27A942920006A3A9 /* NSString+SSToolkitAdditions.m in Sources */,
E6D8DF4727A942920006A3A9 /* AFURLSessionManager.m in Sources */,
E6D8DF1927A942920006A3A9 /* WLAnalyticsManager.m in Sources */,
E67D1EC828119ED300940F01 /* swiftApi.swift in Sources */,
E6D8DF5227A942920006A3A9 /* FMDatabase.m in Sources */,
E6D8DF1227A942920006A3A9 /* WLPushManager.m in Sources */,
1E7086652811A93F00704CA8 /* CouponBarcodeView.swift in Sources */,
E6D8DEF827A942920006A3A9 /* WLNativeAdTableViewCell.m in Sources */,
E6D8DE6D27A942010006A3A9 /* WarplySDKFrameworkIOS.docc in Sources */,
E6D8DF4427A942920006A3A9 /* AFURLResponseSerialization.m in Sources */,
E6D8DEF527A942920006A3A9 /* WLNativeAdsTableMode.m in Sources */,
E6D8DF1C27A942920006A3A9 /* WLUtils.m in Sources */,
E639EFA52808244E00B9DD94 /* MyEmptyClass.swift in Sources */,
E6D8DF1B27A942920006A3A9 /* WLUserManager.m in Sources */,
E6D8DF2027A942920006A3A9 /* Warply.m in Sources */,
E6D8DF2327A942920006A3A9 /* WLSMSActionHandlerDeprecated.m in Sources */,
E6D8DEEE27A942920006A3A9 /* WarplyReactMethods.m in Sources */,
E6D8DEF927A942920006A3A9 /* WLNativeAdCollectionViewCell.m in Sources */,
E6D8DF4E27A942920006A3A9 /* FMDatabaseQueue.m in Sources */,
E6D8DF0827A942920006A3A9 /* WLBaseItem.m in Sources */,
E6D8DF0727A942920006A3A9 /* WLInboxItemViewController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
E6D8DE6F27A942010006A3A9 /* 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++17";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"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 = 15.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
E6D8DE7027A942010006A3A9 /* 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++17";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_ENABLE_OBJC_WEAK = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
GCC_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 = 15.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
E6D8DE7227A942010006A3A9 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = F2447FDBC0B149DFB9DC6E40 /* Pods-WarplySDKFrameworkIOS.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DEVELOPMENT_ASSET_PATHS = Media.xcassets;
DEVELOPMENT_TEAM = VW5AF53FLP;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_NSHumanReadableCopyright = "";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = framework.warp.ly.WarplySDKFrameworkIOS;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_OBJC_BRIDGING_HEADER = "";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
E6D8DE7327A942010006A3A9 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = B9413513157AD76ECE896B81 /* Pods-WarplySDKFrameworkIOS.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DEVELOPMENT_ASSET_PATHS = Media.xcassets;
DEVELOPMENT_TEAM = VW5AF53FLP;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_NSHumanReadableCopyright = "";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = framework.warp.ly.WarplySDKFrameworkIOS;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_OBJC_BRIDGING_HEADER = "";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
E6D8DE6227A942010006A3A9 /* Build configuration list for PBXProject "WarplySDKFrameworkIOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E6D8DE6F27A942010006A3A9 /* Debug */,
E6D8DE7027A942010006A3A9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
E6D8DE7127A942010006A3A9 /* Build configuration list for PBXNativeTarget "WarplySDKFrameworkIOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E6D8DE7227A942010006A3A9 /* Debug */,
E6D8DE7327A942010006A3A9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
/* Begin XCRemoteSwiftPackageReference section */
1EBB036D281BE3610062F663 /* XCRemoteSwiftPackageReference "RSBarcodes_Swift" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/yeahdongcn/RSBarcodes_Swift";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 5.0.0;
};
};
/* End XCRemoteSwiftPackageReference section */
/* Begin XCSwiftPackageProductDependency section */
1EBB036E281BE3610062F663 /* RSBarcodes_Swift */ = {
isa = XCSwiftPackageProductDependency;
package = 1EBB036D281BE3610062F663 /* XCRemoteSwiftPackageReference "RSBarcodes_Swift" */;
productName = RSBarcodes_Swift;
};
/* End XCSwiftPackageProductDependency section */
};
rootObject = E6D8DE5F27A942010006A3A9 /* Project object */;
}