-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1312 lines (1300 loc) · 84.2 KB
/
Copy pathproject.pbxproj
File metadata and controls
1312 lines (1300 loc) · 84.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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
46BD3246E1289AF018ED4FEB /* CodePushSha256Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C09E6C954EFE879F5C40F34A /* CodePushSha256Tests.swift */; };
BBC7F97A68E454FB38953FC4 /* CodePushDiffManifestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9645879798B46D35D8D824F8 /* CodePushDiffManifestTests.swift */; };
3643F3729205426163367671 /* CodePushBinaryDiffPatcherTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F42FA68BF21AED765F55E71A /* CodePushBinaryDiffPatcherTests.swift */; };
B75F8EB77C01BA01704CAD97 /* CodePushSha256.m in Sources */ = {isa = PBXBuildFile; fileRef = 62708BC475E46556136816C9 /* CodePushSha256.m */; };
A2206CF91ED7FE901C630AB4 /* CodePushSha256.m in Sources */ = {isa = PBXBuildFile; fileRef = 62708BC475E46556136816C9 /* CodePushSha256.m */; };
6663AFF6236CD01E20CBDD80 /* CodePushSha256.m in Sources */ = {isa = PBXBuildFile; fileRef = 62708BC475E46556136816C9 /* CodePushSha256.m */; };
6A57E1B401615DA251D0F91F /* CodePushSha256.h in Headers */ = {isa = PBXBuildFile; fileRef = B7CE82B73092943E0F67E825 /* CodePushSha256.h */; };
B0E0E947B133B742F6B41FBF /* CodePushSha256.h in Headers */ = {isa = PBXBuildFile; fileRef = B7CE82B73092943E0F67E825 /* CodePushSha256.h */; };
CED0A6936F6F8C354302F246 /* CodePushDiffManifest.m in Sources */ = {isa = PBXBuildFile; fileRef = 49166671F067D5F6429B262B /* CodePushDiffManifest.m */; };
CD32522E04D0F0E86DCC7BBE /* CodePushDiffManifest.m in Sources */ = {isa = PBXBuildFile; fileRef = 49166671F067D5F6429B262B /* CodePushDiffManifest.m */; };
0E9314F338AC505D2E33C1A3 /* CodePushDiffManifest.m in Sources */ = {isa = PBXBuildFile; fileRef = 49166671F067D5F6429B262B /* CodePushDiffManifest.m */; };
C11A2DB29D3D814B1A7891DF /* CodePushDiffManifest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A092598DCE51279CA317823 /* CodePushDiffManifest.h */; };
4693408DCB9ACB8E02BF69B1 /* CodePushDiffManifest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A092598DCE51279CA317823 /* CodePushDiffManifest.h */; };
1993F82DF6330426AC5CBC2E /* CodePushBinaryDiffPatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9414C770C70E1B1319F24B12 /* CodePushBinaryDiffPatcher.m */; };
F41E2EFAD0D322F7D14D7125 /* CodePushBinaryDiffPatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9414C770C70E1B1319F24B12 /* CodePushBinaryDiffPatcher.m */; };
D5BC8B1BF7D2DA03BB888FCC /* CodePushBinaryDiffPatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9414C770C70E1B1319F24B12 /* CodePushBinaryDiffPatcher.m */; };
E5C712D353D9164F04A2F456 /* CodePushBinaryDiffPatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F588BE40F9B3092085C5B63 /* CodePushBinaryDiffPatcher.h */; };
469472C57F1D5FF7C0274268 /* CodePushBinaryDiffPatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F588BE40F9B3092085C5B63 /* CodePushBinaryDiffPatcher.h */; };
0ABCB5DEFE01A7A15552A498 /* file_for_patch.c in Sources */ = {isa = PBXBuildFile; fileRef = 70779807AB59EA4711737F4E /* file_for_patch.c */; };
08B8B3B8260E70B7ECA85451 /* bspatch_bridge.c in Sources */ = {isa = PBXBuildFile; fileRef = A430CBE260F09A3233110E28 /* bspatch_bridge.c */; };
A75C1A7A555663186E25AA3D /* libHDiffPatch/HPatch/patch.c in Sources */ = {isa = PBXBuildFile; fileRef = 827016DF6E52E356F4B89D18 /* libHDiffPatch/HPatch/patch.c */; };
D8C294C1D2625E79BC302CCC /* bsdiff_wrapper/bspatch_wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DC7989C75C72A774EF3685F /* bsdiff_wrapper/bspatch_wrapper.c */; };
78E9CECCB820DC4BA09BF09A /* file_for_patch.c in Sources */ = {isa = PBXBuildFile; fileRef = 70779807AB59EA4711737F4E /* file_for_patch.c */; };
13BE3DEE1AC21097009241FE /* CodePush.m in Sources */ = {isa = PBXBuildFile; fileRef = 13BE3DED1AC21097009241FE /* CodePush.m */; };
1B23B9141BF9267B000BB2F0 /* RCTConvert+CodePushInstallMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B23B9131BF9267B000BB2F0 /* RCTConvert+CodePushInstallMode.m */; };
1B762E901C9A5E9A006EF800 /* CodePushErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B762E8F1C9A5E9A006EF800 /* CodePushErrorUtils.m */; };
1BCC09A71CC19EB700DDC0DD /* RCTConvert+CodePushUpdateState.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BCC09A61CC19EB700DDC0DD /* RCTConvert+CodePushUpdateState.m */; };
3221E4512C8ABE1300268379 /* ZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E42A2C8ABE1300268379 /* ZipArchive.h */; };
3221E4522C8ABE1300268379 /* ZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E42A2C8ABE1300268379 /* ZipArchive.h */; };
3221E4532C8ABE1300268379 /* mz_strm_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E42C2C8ABE1300268379 /* mz_strm_os_posix.c */; };
3221E4542C8ABE1300268379 /* mz_strm_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E42C2C8ABE1300268379 /* mz_strm_os_posix.c */; };
3221E4552C8ABE1300268379 /* mz_strm_pkcrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E42D2C8ABE1300268379 /* mz_strm_pkcrypt.c */; };
3221E4562C8ABE1300268379 /* mz_strm_pkcrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E42D2C8ABE1300268379 /* mz_strm_pkcrypt.c */; };
3221E4572C8ABE1300268379 /* mz_strm_wzaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E42E2C8ABE1300268379 /* mz_strm_wzaes.h */; };
3221E4582C8ABE1300268379 /* mz_strm_wzaes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E42E2C8ABE1300268379 /* mz_strm_wzaes.h */; };
3221E4592C8ABE1300268379 /* mz_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E42F2C8ABE1300268379 /* mz_compat.h */; };
3221E45A2C8ABE1300268379 /* mz_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E42F2C8ABE1300268379 /* mz_compat.h */; };
3221E45B2C8ABE1300268379 /* mz_strm_zlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4302C8ABE1300268379 /* mz_strm_zlib.c */; };
3221E45C2C8ABE1300268379 /* mz_strm_zlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4302C8ABE1300268379 /* mz_strm_zlib.c */; };
3221E45D2C8ABE1300268379 /* mz_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4312C8ABE1300268379 /* mz_zip.c */; };
3221E45E2C8ABE1300268379 /* mz_zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4312C8ABE1300268379 /* mz_zip.c */; };
3221E45F2C8ABE1300268379 /* mz_os.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4322C8ABE1300268379 /* mz_os.h */; };
3221E4602C8ABE1300268379 /* mz_os.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4322C8ABE1300268379 /* mz_os.h */; };
3221E4612C8ABE1300268379 /* mz_zip_rw.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4342C8ABE1300268379 /* mz_zip_rw.c */; };
3221E4622C8ABE1300268379 /* mz_zip_rw.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4342C8ABE1300268379 /* mz_zip_rw.c */; };
3221E4632C8ABE1300268379 /* mz_strm_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4352C8ABE1300268379 /* mz_strm_split.h */; };
3221E4642C8ABE1300268379 /* mz_strm_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4352C8ABE1300268379 /* mz_strm_split.h */; };
3221E4652C8ABE1300268379 /* mz_strm_buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4362C8ABE1300268379 /* mz_strm_buf.h */; };
3221E4662C8ABE1300268379 /* mz_strm_buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4362C8ABE1300268379 /* mz_strm_buf.h */; };
3221E4672C8ABE1300268379 /* mz_crypt_apple.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4372C8ABE1300268379 /* mz_crypt_apple.c */; };
3221E4682C8ABE1300268379 /* mz_crypt_apple.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4372C8ABE1300268379 /* mz_crypt_apple.c */; };
3221E4692C8ABE1300268379 /* mz_strm.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4382C8ABE1300268379 /* mz_strm.h */; };
3221E46A2C8ABE1300268379 /* mz_strm.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4382C8ABE1300268379 /* mz_strm.h */; };
3221E46B2C8ABE1300268379 /* mz_strm_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4392C8ABE1300268379 /* mz_strm_mem.c */; };
3221E46C2C8ABE1300268379 /* mz_strm_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4392C8ABE1300268379 /* mz_strm_mem.c */; };
3221E46D2C8ABE1300268379 /* mz_crypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E43A2C8ABE1300268379 /* mz_crypt.c */; };
3221E46E2C8ABE1300268379 /* mz_crypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E43A2C8ABE1300268379 /* mz_crypt.c */; };
3221E46F2C8ABE1300268379 /* mz_strm_wzaes.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E43B2C8ABE1300268379 /* mz_strm_wzaes.c */; };
3221E4702C8ABE1300268379 /* mz_strm_wzaes.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E43B2C8ABE1300268379 /* mz_strm_wzaes.c */; };
3221E4712C8ABE1300268379 /* mz_strm_zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E43C2C8ABE1300268379 /* mz_strm_zlib.h */; };
3221E4722C8ABE1300268379 /* mz_strm_zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E43C2C8ABE1300268379 /* mz_strm_zlib.h */; };
3221E4732C8ABE1300268379 /* mz_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E43D2C8ABE1300268379 /* mz_compat.c */; };
3221E4742C8ABE1300268379 /* mz_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E43D2C8ABE1300268379 /* mz_compat.c */; };
3221E4752C8ABE1300268379 /* mz_strm_pkcrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E43E2C8ABE1300268379 /* mz_strm_pkcrypt.h */; };
3221E4762C8ABE1300268379 /* mz_strm_pkcrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E43E2C8ABE1300268379 /* mz_strm_pkcrypt.h */; };
3221E4772C8ABE1300268379 /* mz_zip_rw.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E43F2C8ABE1300268379 /* mz_zip_rw.h */; };
3221E4782C8ABE1300268379 /* mz_zip_rw.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E43F2C8ABE1300268379 /* mz_zip_rw.h */; };
3221E4792C8ABE1300268379 /* mz_os.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4402C8ABE1300268379 /* mz_os.c */; };
3221E47A2C8ABE1300268379 /* mz_os.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4402C8ABE1300268379 /* mz_os.c */; };
3221E47B2C8ABE1400268379 /* mz_zip.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4412C8ABE1300268379 /* mz_zip.h */; };
3221E47C2C8ABE1400268379 /* mz_zip.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4412C8ABE1300268379 /* mz_zip.h */; };
3221E47D2C8ABE1400268379 /* mz_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4422C8ABE1300268379 /* mz_os_posix.c */; };
3221E47E2C8ABE1400268379 /* mz_os_posix.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4422C8ABE1300268379 /* mz_os_posix.c */; };
3221E47F2C8ABE1400268379 /* mz.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4432C8ABE1300268379 /* mz.h */; };
3221E4802C8ABE1400268379 /* mz.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4432C8ABE1300268379 /* mz.h */; };
3221E4812C8ABE1400268379 /* mz_strm_buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4442C8ABE1300268379 /* mz_strm_buf.c */; };
3221E4822C8ABE1400268379 /* mz_strm_buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4442C8ABE1300268379 /* mz_strm_buf.c */; };
3221E4832C8ABE1400268379 /* mz_strm_split.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4452C8ABE1300268379 /* mz_strm_split.c */; };
3221E4842C8ABE1400268379 /* mz_strm_split.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4452C8ABE1300268379 /* mz_strm_split.c */; };
3221E4852C8ABE1400268379 /* mz_crypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4462C8ABE1300268379 /* mz_crypt.h */; };
3221E4862C8ABE1400268379 /* mz_crypt.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4462C8ABE1300268379 /* mz_crypt.h */; };
3221E4872C8ABE1400268379 /* mz_strm_mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4472C8ABE1300268379 /* mz_strm_mem.h */; };
3221E4882C8ABE1400268379 /* mz_strm_mem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4472C8ABE1300268379 /* mz_strm_mem.h */; };
3221E4892C8ABE1400268379 /* mz_strm.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4482C8ABE1300268379 /* mz_strm.c */; };
3221E48A2C8ABE1400268379 /* mz_strm.c in Sources */ = {isa = PBXBuildFile; fileRef = 3221E4482C8ABE1300268379 /* mz_strm.c */; };
3221E48B2C8ABE1400268379 /* mz_strm_os.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4492C8ABE1300268379 /* mz_strm_os.h */; };
3221E48C2C8ABE1400268379 /* mz_strm_os.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E4492C8ABE1300268379 /* mz_strm_os.h */; };
3221E48D2C8ABE1400268379 /* SSZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E44A2C8ABE1300268379 /* SSZipArchive.h */; };
3221E48E2C8ABE1400268379 /* SSZipArchive.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E44A2C8ABE1300268379 /* SSZipArchive.h */; };
3221E48F2C8ABE1400268379 /* SSZipCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E44E2C8ABE1300268379 /* SSZipCommon.h */; };
3221E4902C8ABE1400268379 /* SSZipCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 3221E44E2C8ABE1300268379 /* SSZipCommon.h */; };
3221E4912C8ABE1400268379 /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = 3221E44F2C8ABE1300268379 /* SSZipArchive.m */; };
3221E4922C8ABE1400268379 /* SSZipArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = 3221E44F2C8ABE1300268379 /* SSZipArchive.m */; };
47F66D5AF3C3185E1A3E3B15 /* bspatch_bridge.c in Sources */ = {isa = PBXBuildFile; fileRef = A430CBE260F09A3233110E28 /* bspatch_bridge.c */; };
540D20121C7684FE00D6EF41 /* CodePushUpdateUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 540D20111C7684FE00D6EF41 /* CodePushUpdateUtils.m */; };
5421FE311C58AD5A00986A55 /* CodePushTelemetryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5421FE301C58AD5A00986A55 /* CodePushTelemetryManager.m */; };
5498D8F61D21F14100B5EB43 /* CodePushUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5498D8F51D21F14100B5EB43 /* CodePushUtils.m */; };
54FFEDE01BF550630061DD23 /* CodePushDownloadHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FFEDDF1BF550630061DD23 /* CodePushDownloadHandler.m */; };
5C6B00FACE8707503D366F7C /* Fixtures in Resources */ = {isa = PBXBuildFile; fileRef = E74D80ECD8DD03C4C0772B7B /* Fixtures */; };
6463C82D1EBA0CFB0095B8CD /* CodePushUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5498D8F51D21F14100B5EB43 /* CodePushUtils.m */; };
6463C82E1EBA0CFB0095B8CD /* CodePush.m in Sources */ = {isa = PBXBuildFile; fileRef = 13BE3DED1AC21097009241FE /* CodePush.m */; };
6463C82F1EBA0CFB0095B8CD /* CodePushConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 81D51F391B6181C2000DA084 /* CodePushConfig.m */; };
6463C8301EBA0CFB0095B8CD /* CodePushDownloadHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FFEDDF1BF550630061DD23 /* CodePushDownloadHandler.m */; };
6463C8311EBA0CFB0095B8CD /* CodePushErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B762E8F1C9A5E9A006EF800 /* CodePushErrorUtils.m */; };
6463C8321EBA0CFB0095B8CD /* CodePushPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 810D4E6C1B96935000B397E9 /* CodePushPackage.m */; };
6463C8331EBA0CFB0095B8CD /* CodePushTelemetryManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5421FE301C58AD5A00986A55 /* CodePushTelemetryManager.m */; };
6463C8341EBA0CFB0095B8CD /* CodePushUpdateUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 540D20111C7684FE00D6EF41 /* CodePushUpdateUtils.m */; };
6463C8351EBA0CFB0095B8CD /* RCTConvert+CodePushInstallMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B23B9131BF9267B000BB2F0 /* RCTConvert+CodePushInstallMode.m */; };
6463C8361EBA0CFB0095B8CD /* RCTConvert+CodePushUpdateState.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BCC09A61CC19EB700DDC0DD /* RCTConvert+CodePushUpdateState.m */; };
6463C8451EBA0D1F0095B8CD /* CodePush.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 13BE3DEC1AC21097009241FE /* CodePush.h */; };
6463C8471EBA0D290095B8CD /* CodePush.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BE3DEC1AC21097009241FE /* CodePush.h */; };
810D4E6D1B96935000B397E9 /* CodePushPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 810D4E6C1B96935000B397E9 /* CodePushPackage.m */; };
81D51F3A1B6181C2000DA084 /* CodePushConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 81D51F391B6181C2000DA084 /* CodePushConfig.m */; };
8482F84C1E24C58300F793DB /* CodePush.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 13BE3DEC1AC21097009241FE /* CodePush.h */; };
8482F84E1E24C66300F793DB /* CodePush.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BE3DEC1AC21097009241FE /* CodePush.h */; };
A88F11124A2120A8373A8B61 /* bsdiff_wrapper/bspatch_wrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DC7989C75C72A774EF3685F /* bsdiff_wrapper/bspatch_wrapper.c */; };
B5B50F91FAAF80444988E284 /* BSPatchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95D6DD0EACAC8D095880DFD0 /* BSPatchTests.swift */; };
DC983F1C71E0E7131BB343C5 /* libHDiffPatch/HPatch/patch.c in Sources */ = {isa = PBXBuildFile; fileRef = 827016DF6E52E356F4B89D18 /* libHDiffPatch/HPatch/patch.c */; };
F85736761F4F03BF00C9C00A /* MF_Base64Additions.h in Headers */ = {isa = PBXBuildFile; fileRef = F85736731F4F03BF00C9C00A /* MF_Base64Additions.h */; };
F85736771F4F03BF00C9C00A /* MF_Base64Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = F85736741F4F03BF00C9C00A /* MF_Base64Additions.m */; };
F886644D1F4AD1EE0036D01B /* JWTAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664151F4AD1EE0036D01B /* JWTAlgorithm.h */; };
F886644E1F4AD1EE0036D01B /* JWTAlgorithmFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664161F4AD1EE0036D01B /* JWTAlgorithmFactory.h */; };
F886644F1F4AD1EE0036D01B /* JWTAlgorithmFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664171F4AD1EE0036D01B /* JWTAlgorithmFactory.m */; };
F88664501F4AD1EE0036D01B /* JWTAlgorithmNone.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664181F4AD1EE0036D01B /* JWTAlgorithmNone.h */; };
F88664511F4AD1EE0036D01B /* JWTAlgorithmNone.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664191F4AD1EE0036D01B /* JWTAlgorithmNone.m */; };
F88664521F4AD1EE0036D01B /* JWTAlgorithmESBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F886641B1F4AD1EE0036D01B /* JWTAlgorithmESBase.h */; };
F88664531F4AD1EE0036D01B /* JWTAlgorithmESBase.m in Sources */ = {isa = PBXBuildFile; fileRef = F886641C1F4AD1EE0036D01B /* JWTAlgorithmESBase.m */; };
F88664541F4AD1EE0036D01B /* JWTAlgorithmDataHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = F886641E1F4AD1EE0036D01B /* JWTAlgorithmDataHolder.h */; };
F88664551F4AD1EE0036D01B /* JWTAlgorithmDataHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = F886641F1F4AD1EE0036D01B /* JWTAlgorithmDataHolder.m */; };
F88664561F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664201F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.h */; };
F88664571F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664211F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.m */; };
F88664581F4AD1EE0036D01B /* JWTAlgorithmHSBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664231F4AD1EE0036D01B /* JWTAlgorithmHSBase.h */; };
F88664591F4AD1EE0036D01B /* JWTAlgorithmHSBase.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664241F4AD1EE0036D01B /* JWTAlgorithmHSBase.m */; };
F886645A1F4AD1EE0036D01B /* JWTAlgorithmRSBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664261F4AD1EE0036D01B /* JWTAlgorithmRSBase.h */; };
F886645B1F4AD1EE0036D01B /* JWTAlgorithmRSBase.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664271F4AD1EE0036D01B /* JWTAlgorithmRSBase.m */; };
F886645C1F4AD1EE0036D01B /* JWTRSAlgorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664281F4AD1EE0036D01B /* JWTRSAlgorithm.h */; };
F886645D1F4AD1EE0036D01B /* JWTCryptoKey.h in Headers */ = {isa = PBXBuildFile; fileRef = F886642A1F4AD1EE0036D01B /* JWTCryptoKey.h */; };
F886645E1F4AD1EE0036D01B /* JWTCryptoKey.m in Sources */ = {isa = PBXBuildFile; fileRef = F886642B1F4AD1EE0036D01B /* JWTCryptoKey.m */; };
F886645F1F4AD1EE0036D01B /* JWTCryptoKeyExtractor.h in Headers */ = {isa = PBXBuildFile; fileRef = F886642C1F4AD1EE0036D01B /* JWTCryptoKeyExtractor.h */; };
F88664601F4AD1EE0036D01B /* JWTCryptoKeyExtractor.m in Sources */ = {isa = PBXBuildFile; fileRef = F886642D1F4AD1EE0036D01B /* JWTCryptoKeyExtractor.m */; };
F88664611F4AD1EE0036D01B /* JWTCryptoSecurity.h in Headers */ = {isa = PBXBuildFile; fileRef = F886642E1F4AD1EE0036D01B /* JWTCryptoSecurity.h */; };
F88664621F4AD1EE0036D01B /* JWTCryptoSecurity.m in Sources */ = {isa = PBXBuildFile; fileRef = F886642F1F4AD1EE0036D01B /* JWTCryptoSecurity.m */; };
F88664631F4AD1EE0036D01B /* JWTClaim.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664311F4AD1EE0036D01B /* JWTClaim.h */; };
F88664641F4AD1EE0036D01B /* JWTClaim.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664321F4AD1EE0036D01B /* JWTClaim.m */; };
F88664651F4AD1EE0036D01B /* JWTClaimsSet.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664331F4AD1EE0036D01B /* JWTClaimsSet.h */; };
F88664661F4AD1EE0036D01B /* JWTClaimsSet.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664341F4AD1EE0036D01B /* JWTClaimsSet.m */; };
F88664671F4AD1EE0036D01B /* JWTClaimsSetSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664351F4AD1EE0036D01B /* JWTClaimsSetSerializer.h */; };
F88664681F4AD1EE0036D01B /* JWTClaimsSetSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664361F4AD1EE0036D01B /* JWTClaimsSetSerializer.m */; };
F88664691F4AD1EE0036D01B /* JWTClaimsSetVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664371F4AD1EE0036D01B /* JWTClaimsSetVerifier.h */; };
F886646A1F4AD1EE0036D01B /* JWTClaimsSetVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664381F4AD1EE0036D01B /* JWTClaimsSetVerifier.m */; };
F886646B1F4AD1EE0036D01B /* JWTCoding+ResultTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = F886643A1F4AD1EE0036D01B /* JWTCoding+ResultTypes.h */; };
F886646C1F4AD1EE0036D01B /* JWTCoding+ResultTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = F886643B1F4AD1EE0036D01B /* JWTCoding+ResultTypes.m */; };
F886646D1F4AD1EE0036D01B /* JWTCoding+VersionOne.h in Headers */ = {isa = PBXBuildFile; fileRef = F886643C1F4AD1EE0036D01B /* JWTCoding+VersionOne.h */; };
F886646E1F4AD1EE0036D01B /* JWTCoding+VersionOne.m in Sources */ = {isa = PBXBuildFile; fileRef = F886643D1F4AD1EE0036D01B /* JWTCoding+VersionOne.m */; };
F886646F1F4AD1EE0036D01B /* JWTCoding+VersionThree.h in Headers */ = {isa = PBXBuildFile; fileRef = F886643E1F4AD1EE0036D01B /* JWTCoding+VersionThree.h */; };
F88664701F4AD1EE0036D01B /* JWTCoding+VersionThree.m in Sources */ = {isa = PBXBuildFile; fileRef = F886643F1F4AD1EE0036D01B /* JWTCoding+VersionThree.m */; };
F88664711F4AD1EE0036D01B /* JWTCoding+VersionTwo.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664401F4AD1EE0036D01B /* JWTCoding+VersionTwo.h */; };
F88664721F4AD1EE0036D01B /* JWTCoding+VersionTwo.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664411F4AD1EE0036D01B /* JWTCoding+VersionTwo.m */; };
F88664731F4AD1EE0036D01B /* JWTCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664421F4AD1EE0036D01B /* JWTCoding.h */; };
F88664741F4AD1EE0036D01B /* JWTCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664431F4AD1EE0036D01B /* JWTCoding.m */; };
F88664751F4AD1EE0036D01B /* JWT.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664451F4AD1EE0036D01B /* JWT.h */; };
F88664761F4AD1EE0036D01B /* JWTBase64Coder.h in Headers */ = {isa = PBXBuildFile; fileRef = F88664481F4AD1EE0036D01B /* JWTBase64Coder.h */; };
F88664771F4AD1EE0036D01B /* JWTBase64Coder.m in Sources */ = {isa = PBXBuildFile; fileRef = F88664491F4AD1EE0036D01B /* JWTBase64Coder.m */; };
F88664781F4AD1EE0036D01B /* JWTDeprecations.h in Headers */ = {isa = PBXBuildFile; fileRef = F886644A1F4AD1EE0036D01B /* JWTDeprecations.h */; };
F88664791F4AD1EE0036D01B /* JWTErrorDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = F886644B1F4AD1EE0036D01B /* JWTErrorDescription.h */; };
F886647A1F4AD1EF0036D01B /* JWTErrorDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = F886644C1F4AD1EE0036D01B /* JWTErrorDescription.m */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
58B511D91A9E6C8500147676 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = include/CodePush;
dstSubfolderSpec = 16;
files = (
8482F84C1E24C58300F793DB /* CodePush.h in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6463C8221EBA0CB60095B8CD /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
6463C8451EBA0D1F0095B8CD /* CodePush.h in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
C09E6C954EFE879F5C40F34A /* CodePushSha256Tests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CodePushSha256Tests.swift; sourceTree = "<group>"; };
9645879798B46D35D8D824F8 /* CodePushDiffManifestTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CodePushDiffManifestTests.swift; sourceTree = "<group>"; };
F42FA68BF21AED765F55E71A /* CodePushBinaryDiffPatcherTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = CodePushBinaryDiffPatcherTests.swift; sourceTree = "<group>"; };
B7CE82B73092943E0F67E825 /* CodePushSha256.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CodePushSha256.h; path = CodePush/CodePushSha256.h; sourceTree = "<group>"; };
62708BC475E46556136816C9 /* CodePushSha256.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushSha256.m; path = CodePush/CodePushSha256.m; sourceTree = "<group>"; };
2A092598DCE51279CA317823 /* CodePushDiffManifest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CodePushDiffManifest.h; path = CodePush/CodePushDiffManifest.h; sourceTree = "<group>"; };
49166671F067D5F6429B262B /* CodePushDiffManifest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushDiffManifest.m; path = CodePush/CodePushDiffManifest.m; sourceTree = "<group>"; };
0F588BE40F9B3092085C5B63 /* CodePushBinaryDiffPatcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CodePushBinaryDiffPatcher.h; path = CodePush/CodePushBinaryDiffPatcher.h; sourceTree = "<group>"; };
9414C770C70E1B1319F24B12 /* CodePushBinaryDiffPatcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushBinaryDiffPatcher.m; path = CodePush/CodePushBinaryDiffPatcher.m; sourceTree = "<group>"; };
0BF68F85125CF81D7EB65ABB /* bspatch_bridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = bspatch_bridge.h; sourceTree = "<group>"; };
0DC7989C75C72A774EF3685F /* bsdiff_wrapper/bspatch_wrapper.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = bsdiff_wrapper/bspatch_wrapper.c; sourceTree = "<group>"; };
134814201AA4EA6300B7C361 /* libCodePush.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libCodePush.a; sourceTree = BUILT_PRODUCTS_DIR; };
13BE3DEC1AC21097009241FE /* CodePush.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CodePush.h; path = CodePush/CodePush.h; sourceTree = "<group>"; };
13BE3DED1AC21097009241FE /* CodePush.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePush.m; path = CodePush/CodePush.m; sourceTree = "<group>"; };
1B23B9131BF9267B000BB2F0 /* RCTConvert+CodePushInstallMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+CodePushInstallMode.m"; path = "CodePush/RCTConvert+CodePushInstallMode.m"; sourceTree = "<group>"; };
1B762E8F1C9A5E9A006EF800 /* CodePushErrorUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushErrorUtils.m; path = CodePush/CodePushErrorUtils.m; sourceTree = "<group>"; };
1BCC09A61CC19EB700DDC0DD /* RCTConvert+CodePushUpdateState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+CodePushUpdateState.m"; path = "CodePush/RCTConvert+CodePushUpdateState.m"; sourceTree = "<group>"; };
3221E42A2C8ABE1300268379 /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZipArchive.h; sourceTree = "<group>"; };
3221E42C2C8ABE1300268379 /* mz_strm_os_posix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_strm_os_posix.c; sourceTree = "<group>"; };
3221E42D2C8ABE1300268379 /* mz_strm_pkcrypt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_strm_pkcrypt.c; sourceTree = "<group>"; };
3221E42E2C8ABE1300268379 /* mz_strm_wzaes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_strm_wzaes.h; sourceTree = "<group>"; };
3221E42F2C8ABE1300268379 /* mz_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_compat.h; sourceTree = "<group>"; };
3221E4302C8ABE1300268379 /* mz_strm_zlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_strm_zlib.c; sourceTree = "<group>"; };
3221E4312C8ABE1300268379 /* mz_zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_zip.c; sourceTree = "<group>"; };
3221E4322C8ABE1300268379 /* mz_os.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_os.h; sourceTree = "<group>"; };
3221E4332C8ABE1300268379 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
3221E4342C8ABE1300268379 /* mz_zip_rw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_zip_rw.c; sourceTree = "<group>"; };
3221E4352C8ABE1300268379 /* mz_strm_split.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_strm_split.h; sourceTree = "<group>"; };
3221E4362C8ABE1300268379 /* mz_strm_buf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_strm_buf.h; sourceTree = "<group>"; };
3221E4372C8ABE1300268379 /* mz_crypt_apple.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_crypt_apple.c; sourceTree = "<group>"; };
3221E4382C8ABE1300268379 /* mz_strm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_strm.h; sourceTree = "<group>"; };
3221E4392C8ABE1300268379 /* mz_strm_mem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_strm_mem.c; sourceTree = "<group>"; };
3221E43A2C8ABE1300268379 /* mz_crypt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_crypt.c; sourceTree = "<group>"; };
3221E43B2C8ABE1300268379 /* mz_strm_wzaes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_strm_wzaes.c; sourceTree = "<group>"; };
3221E43C2C8ABE1300268379 /* mz_strm_zlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_strm_zlib.h; sourceTree = "<group>"; };
3221E43D2C8ABE1300268379 /* mz_compat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_compat.c; sourceTree = "<group>"; };
3221E43E2C8ABE1300268379 /* mz_strm_pkcrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_strm_pkcrypt.h; sourceTree = "<group>"; };
3221E43F2C8ABE1300268379 /* mz_zip_rw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_zip_rw.h; sourceTree = "<group>"; };
3221E4402C8ABE1300268379 /* mz_os.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_os.c; sourceTree = "<group>"; };
3221E4412C8ABE1300268379 /* mz_zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_zip.h; sourceTree = "<group>"; };
3221E4422C8ABE1300268379 /* mz_os_posix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_os_posix.c; sourceTree = "<group>"; };
3221E4432C8ABE1300268379 /* mz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz.h; sourceTree = "<group>"; };
3221E4442C8ABE1300268379 /* mz_strm_buf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_strm_buf.c; sourceTree = "<group>"; };
3221E4452C8ABE1300268379 /* mz_strm_split.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_strm_split.c; sourceTree = "<group>"; };
3221E4462C8ABE1300268379 /* mz_crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_crypt.h; sourceTree = "<group>"; };
3221E4472C8ABE1300268379 /* mz_strm_mem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_strm_mem.h; sourceTree = "<group>"; };
3221E4482C8ABE1300268379 /* mz_strm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mz_strm.c; sourceTree = "<group>"; };
3221E4492C8ABE1300268379 /* mz_strm_os.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mz_strm_os.h; sourceTree = "<group>"; };
3221E44A2C8ABE1300268379 /* SSZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSZipArchive.h; sourceTree = "<group>"; };
3221E44B2C8ABE1300268379 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
3221E44D2C8ABE1300268379 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
3221E44E2C8ABE1300268379 /* SSZipCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSZipCommon.h; sourceTree = "<group>"; };
3221E44F2C8ABE1300268379 /* SSZipArchive.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSZipArchive.m; sourceTree = "<group>"; };
3221E4502C8ABE1300268379 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4AB96C756000A7E833CBA8B7 /* CodePushTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CodePushTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
540D20111C7684FE00D6EF41 /* CodePushUpdateUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushUpdateUtils.m; path = CodePush/CodePushUpdateUtils.m; sourceTree = "<group>"; };
5421FE301C58AD5A00986A55 /* CodePushTelemetryManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushTelemetryManager.m; path = CodePush/CodePushTelemetryManager.m; sourceTree = "<group>"; };
5498D8F51D21F14100B5EB43 /* CodePushUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushUtils.m; path = CodePush/CodePushUtils.m; sourceTree = "<group>"; };
54FFEDDF1BF550630061DD23 /* CodePushDownloadHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushDownloadHandler.m; path = CodePush/CodePushDownloadHandler.m; sourceTree = "<group>"; };
70779807AB59EA4711737F4E /* file_for_patch.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = file_for_patch.c; sourceTree = "<group>"; };
810D4E6C1B96935000B397E9 /* CodePushPackage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushPackage.m; path = CodePush/CodePushPackage.m; sourceTree = "<group>"; };
81D51F391B6181C2000DA084 /* CodePushConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodePushConfig.m; path = CodePush/CodePushConfig.m; sourceTree = "<group>"; };
827016DF6E52E356F4B89D18 /* libHDiffPatch/HPatch/patch.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = libHDiffPatch/HPatch/patch.c; sourceTree = "<group>"; };
95D6DD0EACAC8D095880DFD0 /* BSPatchTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = BSPatchTests.swift; sourceTree = "<group>"; };
A430CBE260F09A3233110E28 /* bspatch_bridge.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; path = bspatch_bridge.c; sourceTree = "<group>"; };
E74D80ECD8DD03C4C0772B7B /* Fixtures */ = {isa = PBXFileReference; explicitFileType = folder; includeInIndex = 0; path = Fixtures; sourceTree = "<group>"; };
E9FA144425AE78B97AD6C870 /* CodePushTests-Bridging-Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CodePushTests-Bridging-Header.h"; sourceTree = "<group>"; };
F85736731F4F03BF00C9C00A /* MF_Base64Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MF_Base64Additions.h; sourceTree = "<group>"; };
F85736741F4F03BF00C9C00A /* MF_Base64Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MF_Base64Additions.m; sourceTree = "<group>"; };
F85736751F4F03BF00C9C00A /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
F85736791F4F155300C9C00A /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
F857367A1F4F155300C9C00A /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
F88664151F4AD1EE0036D01B /* JWTAlgorithm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTAlgorithm.h; sourceTree = "<group>"; };
F88664161F4AD1EE0036D01B /* JWTAlgorithmFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTAlgorithmFactory.h; sourceTree = "<group>"; };
F88664171F4AD1EE0036D01B /* JWTAlgorithmFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTAlgorithmFactory.m; sourceTree = "<group>"; };
F88664181F4AD1EE0036D01B /* JWTAlgorithmNone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTAlgorithmNone.h; sourceTree = "<group>"; };
F88664191F4AD1EE0036D01B /* JWTAlgorithmNone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTAlgorithmNone.m; sourceTree = "<group>"; };
F886641B1F4AD1EE0036D01B /* JWTAlgorithmESBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTAlgorithmESBase.h; sourceTree = "<group>"; };
F886641C1F4AD1EE0036D01B /* JWTAlgorithmESBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTAlgorithmESBase.m; sourceTree = "<group>"; };
F886641E1F4AD1EE0036D01B /* JWTAlgorithmDataHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTAlgorithmDataHolder.h; sourceTree = "<group>"; };
F886641F1F4AD1EE0036D01B /* JWTAlgorithmDataHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTAlgorithmDataHolder.m; sourceTree = "<group>"; };
F88664201F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTAlgorithmDataHolderChain.h; sourceTree = "<group>"; };
F88664211F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTAlgorithmDataHolderChain.m; sourceTree = "<group>"; };
F88664231F4AD1EE0036D01B /* JWTAlgorithmHSBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTAlgorithmHSBase.h; sourceTree = "<group>"; };
F88664241F4AD1EE0036D01B /* JWTAlgorithmHSBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTAlgorithmHSBase.m; sourceTree = "<group>"; };
F88664261F4AD1EE0036D01B /* JWTAlgorithmRSBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTAlgorithmRSBase.h; sourceTree = "<group>"; };
F88664271F4AD1EE0036D01B /* JWTAlgorithmRSBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTAlgorithmRSBase.m; sourceTree = "<group>"; };
F88664281F4AD1EE0036D01B /* JWTRSAlgorithm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTRSAlgorithm.h; sourceTree = "<group>"; };
F886642A1F4AD1EE0036D01B /* JWTCryptoKey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTCryptoKey.h; sourceTree = "<group>"; };
F886642B1F4AD1EE0036D01B /* JWTCryptoKey.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTCryptoKey.m; sourceTree = "<group>"; };
F886642C1F4AD1EE0036D01B /* JWTCryptoKeyExtractor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTCryptoKeyExtractor.h; sourceTree = "<group>"; };
F886642D1F4AD1EE0036D01B /* JWTCryptoKeyExtractor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTCryptoKeyExtractor.m; sourceTree = "<group>"; };
F886642E1F4AD1EE0036D01B /* JWTCryptoSecurity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTCryptoSecurity.h; sourceTree = "<group>"; };
F886642F1F4AD1EE0036D01B /* JWTCryptoSecurity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTCryptoSecurity.m; sourceTree = "<group>"; };
F88664311F4AD1EE0036D01B /* JWTClaim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTClaim.h; sourceTree = "<group>"; };
F88664321F4AD1EE0036D01B /* JWTClaim.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTClaim.m; sourceTree = "<group>"; };
F88664331F4AD1EE0036D01B /* JWTClaimsSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTClaimsSet.h; sourceTree = "<group>"; };
F88664341F4AD1EE0036D01B /* JWTClaimsSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTClaimsSet.m; sourceTree = "<group>"; };
F88664351F4AD1EE0036D01B /* JWTClaimsSetSerializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTClaimsSetSerializer.h; sourceTree = "<group>"; };
F88664361F4AD1EE0036D01B /* JWTClaimsSetSerializer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTClaimsSetSerializer.m; sourceTree = "<group>"; };
F88664371F4AD1EE0036D01B /* JWTClaimsSetVerifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTClaimsSetVerifier.h; sourceTree = "<group>"; };
F88664381F4AD1EE0036D01B /* JWTClaimsSetVerifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTClaimsSetVerifier.m; sourceTree = "<group>"; };
F886643A1F4AD1EE0036D01B /* JWTCoding+ResultTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "JWTCoding+ResultTypes.h"; sourceTree = "<group>"; };
F886643B1F4AD1EE0036D01B /* JWTCoding+ResultTypes.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "JWTCoding+ResultTypes.m"; sourceTree = "<group>"; };
F886643C1F4AD1EE0036D01B /* JWTCoding+VersionOne.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "JWTCoding+VersionOne.h"; sourceTree = "<group>"; };
F886643D1F4AD1EE0036D01B /* JWTCoding+VersionOne.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "JWTCoding+VersionOne.m"; sourceTree = "<group>"; };
F886643E1F4AD1EE0036D01B /* JWTCoding+VersionThree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "JWTCoding+VersionThree.h"; sourceTree = "<group>"; };
F886643F1F4AD1EE0036D01B /* JWTCoding+VersionThree.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "JWTCoding+VersionThree.m"; sourceTree = "<group>"; };
F88664401F4AD1EE0036D01B /* JWTCoding+VersionTwo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "JWTCoding+VersionTwo.h"; sourceTree = "<group>"; };
F88664411F4AD1EE0036D01B /* JWTCoding+VersionTwo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "JWTCoding+VersionTwo.m"; sourceTree = "<group>"; };
F88664421F4AD1EE0036D01B /* JWTCoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTCoding.h; sourceTree = "<group>"; };
F88664431F4AD1EE0036D01B /* JWTCoding.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTCoding.m; sourceTree = "<group>"; };
F88664451F4AD1EE0036D01B /* JWT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWT.h; sourceTree = "<group>"; };
F88664461F4AD1EE0036D01B /* Map.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = Map.modulemap; sourceTree = "<group>"; };
F88664481F4AD1EE0036D01B /* JWTBase64Coder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTBase64Coder.h; sourceTree = "<group>"; };
F88664491F4AD1EE0036D01B /* JWTBase64Coder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTBase64Coder.m; sourceTree = "<group>"; };
F886644A1F4AD1EE0036D01B /* JWTDeprecations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTDeprecations.h; sourceTree = "<group>"; };
F886644B1F4AD1EE0036D01B /* JWTErrorDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWTErrorDescription.h; sourceTree = "<group>"; };
F886644C1F4AD1EE0036D01B /* JWTErrorDescription.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWTErrorDescription.m; sourceTree = "<group>"; };
F886647B1F4ADB500036D01B /* libCodePush.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libCodePush.a; sourceTree = BUILT_PRODUCTS_DIR; };
FF90DEF92C5A808600CA8692 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
58B511D81A9E6C8500147676 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
6463C8211EBA0CB60095B8CD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
92F210124F3F87350E684641 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
134814211AA4EA7D00B7C361 /* Products */ = {
isa = PBXGroup;
children = (
134814201AA4EA6300B7C361 /* libCodePush.a */,
4AB96C756000A7E833CBA8B7 /* CodePushTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
2EB4092D590839720984EE01 /* RepoRoot */ = {
isa = PBXGroup;
children = (
66FDDF29DBB202771A6A06DD /* shared-diffpatch */,
41A7D02DA375C6871A90065B /* third_party-hdiffpatch */,
);
name = RepoRoot;
path = ..;
sourceTree = "<group>";
};
3221E4282C8ABE1300268379 /* SSZipArchive */ = {
isa = PBXGroup;
children = (
3221E4292C8ABE1300268379 /* include */,
3221E42B2C8ABE1300268379 /* minizip */,
3221E44A2C8ABE1300268379 /* SSZipArchive.h */,
3221E44B2C8ABE1300268379 /* README.md */,
3221E44C2C8ABE1300268379 /* Supporting Files */,
3221E44E2C8ABE1300268379 /* SSZipCommon.h */,
3221E44F2C8ABE1300268379 /* SSZipArchive.m */,
3221E4502C8ABE1300268379 /* Info.plist */,
);
name = SSZipArchive;
path = CodePush/SSZipArchive;
sourceTree = "<group>";
};
3221E4292C8ABE1300268379 /* include */ = {
isa = PBXGroup;
children = (
3221E42A2C8ABE1300268379 /* ZipArchive.h */,
);
path = include;
sourceTree = "<group>";
};
3221E42B2C8ABE1300268379 /* minizip */ = {
isa = PBXGroup;
children = (
3221E42C2C8ABE1300268379 /* mz_strm_os_posix.c */,
3221E42D2C8ABE1300268379 /* mz_strm_pkcrypt.c */,
3221E42E2C8ABE1300268379 /* mz_strm_wzaes.h */,
3221E42F2C8ABE1300268379 /* mz_compat.h */,
3221E4302C8ABE1300268379 /* mz_strm_zlib.c */,
3221E4312C8ABE1300268379 /* mz_zip.c */,
3221E4322C8ABE1300268379 /* mz_os.h */,
3221E4332C8ABE1300268379 /* LICENSE */,
3221E4342C8ABE1300268379 /* mz_zip_rw.c */,
3221E4352C8ABE1300268379 /* mz_strm_split.h */,
3221E4362C8ABE1300268379 /* mz_strm_buf.h */,
3221E4372C8ABE1300268379 /* mz_crypt_apple.c */,
3221E4382C8ABE1300268379 /* mz_strm.h */,
3221E4392C8ABE1300268379 /* mz_strm_mem.c */,
3221E43A2C8ABE1300268379 /* mz_crypt.c */,
3221E43B2C8ABE1300268379 /* mz_strm_wzaes.c */,
3221E43C2C8ABE1300268379 /* mz_strm_zlib.h */,
3221E43D2C8ABE1300268379 /* mz_compat.c */,
3221E43E2C8ABE1300268379 /* mz_strm_pkcrypt.h */,
3221E43F2C8ABE1300268379 /* mz_zip_rw.h */,
3221E4402C8ABE1300268379 /* mz_os.c */,
3221E4412C8ABE1300268379 /* mz_zip.h */,
3221E4422C8ABE1300268379 /* mz_os_posix.c */,
3221E4432C8ABE1300268379 /* mz.h */,
3221E4442C8ABE1300268379 /* mz_strm_buf.c */,
3221E4452C8ABE1300268379 /* mz_strm_split.c */,
3221E4462C8ABE1300268379 /* mz_crypt.h */,
3221E4472C8ABE1300268379 /* mz_strm_mem.h */,
3221E4482C8ABE1300268379 /* mz_strm.c */,
3221E4492C8ABE1300268379 /* mz_strm_os.h */,
);
path = minizip;
sourceTree = "<group>";
};
3221E44C2C8ABE1300268379 /* Supporting Files */ = {
isa = PBXGroup;
children = (
3221E44D2C8ABE1300268379 /* PrivacyInfo.xcprivacy */,
);
path = "Supporting Files";
sourceTree = "<group>";
};
41A7D02DA375C6871A90065B /* third_party-hdiffpatch */ = {
isa = PBXGroup;
children = (
827016DF6E52E356F4B89D18 /* libHDiffPatch/HPatch/patch.c */,
0DC7989C75C72A774EF3685F /* bsdiff_wrapper/bspatch_wrapper.c */,
70779807AB59EA4711737F4E /* file_for_patch.c */,
);
name = "third_party-hdiffpatch";
path = shared/third_party/hdiffpatch;
sourceTree = "<group>";
};
58B511D21A9E6C8500147676 = {
isa = PBXGroup;
children = (
FF90DEF92C5A808600CA8692 /* PrivacyInfo.xcprivacy */,
5498D8F51D21F14100B5EB43 /* CodePushUtils.m */,
13BE3DEC1AC21097009241FE /* CodePush.h */,
13BE3DED1AC21097009241FE /* CodePush.m */,
81D51F391B6181C2000DA084 /* CodePushConfig.m */,
54FFEDDF1BF550630061DD23 /* CodePushDownloadHandler.m */,
1B762E8F1C9A5E9A006EF800 /* CodePushErrorUtils.m */,
810D4E6C1B96935000B397E9 /* CodePushPackage.m */,
B7CE82B73092943E0F67E825 /* CodePushSha256.h */,
62708BC475E46556136816C9 /* CodePushSha256.m */,
2A092598DCE51279CA317823 /* CodePushDiffManifest.h */,
49166671F067D5F6429B262B /* CodePushDiffManifest.m */,
0F588BE40F9B3092085C5B63 /* CodePushBinaryDiffPatcher.h */,
9414C770C70E1B1319F24B12 /* CodePushBinaryDiffPatcher.m */,
5421FE301C58AD5A00986A55 /* CodePushTelemetryManager.m */,
540D20111C7684FE00D6EF41 /* CodePushUpdateUtils.m */,
1B23B9131BF9267B000BB2F0 /* RCTConvert+CodePushInstallMode.m */,
1BCC09A61CC19EB700DDC0DD /* RCTConvert+CodePushUpdateState.m */,
F85736711F4F03BF00C9C00A /* Base64 */,
F88664111F4AD1EE0036D01B /* JWT */,
3221E4282C8ABE1300268379 /* SSZipArchive */,
134814211AA4EA7D00B7C361 /* Products */,
C31BB4D5018A48D5288C5137 /* Frameworks */,
F886647B1F4ADB500036D01B /* libCodePush.a */,
2EB4092D590839720984EE01 /* RepoRoot */,
C283376E6F60830C5CB41994 /* CodePushTests */,
);
sourceTree = "<group>";
};
66FDDF29DBB202771A6A06DD /* shared-diffpatch */ = {
isa = PBXGroup;
children = (
A430CBE260F09A3233110E28 /* bspatch_bridge.c */,
0BF68F85125CF81D7EB65ABB /* bspatch_bridge.h */,
);
name = "shared-diffpatch";
path = shared/diffpatch;
sourceTree = "<group>";
};
C283376E6F60830C5CB41994 /* CodePushTests */ = {
isa = PBXGroup;
children = (
95D6DD0EACAC8D095880DFD0 /* BSPatchTests.swift */,
C09E6C954EFE879F5C40F34A /* CodePushSha256Tests.swift */,
9645879798B46D35D8D824F8 /* CodePushDiffManifestTests.swift */,
F42FA68BF21AED765F55E71A /* CodePushBinaryDiffPatcherTests.swift */,
E9FA144425AE78B97AD6C870 /* CodePushTests-Bridging-Header.h */,
E74D80ECD8DD03C4C0772B7B /* Fixtures */,
);
path = CodePushTests;
sourceTree = "<group>";
};
C31BB4D5018A48D5288C5137 /* Frameworks */ = {
isa = PBXGroup;
children = (
);
name = Frameworks;
sourceTree = "<group>";
};
F85736711F4F03BF00C9C00A /* Base64 */ = {
isa = PBXGroup;
children = (
F85736721F4F03BF00C9C00A /* Base64 */,
F85736751F4F03BF00C9C00A /* README.md */,
);
name = Base64;
path = CodePush/Base64;
sourceTree = "<group>";
};
F85736721F4F03BF00C9C00A /* Base64 */ = {
isa = PBXGroup;
children = (
F85736731F4F03BF00C9C00A /* MF_Base64Additions.h */,
F85736741F4F03BF00C9C00A /* MF_Base64Additions.m */,
);
path = Base64;
sourceTree = "<group>";
};
F88664111F4AD1EE0036D01B /* JWT */ = {
isa = PBXGroup;
children = (
F85736791F4F155300C9C00A /* LICENSE */,
F857367A1F4F155300C9C00A /* README.md */,
F88664121F4AD1EE0036D01B /* Core */,
);
name = JWT;
path = CodePush/JWT;
sourceTree = "<group>";
};
F88664121F4AD1EE0036D01B /* Core */ = {
isa = PBXGroup;
children = (
F88664131F4AD1EE0036D01B /* Algorithms */,
F88664301F4AD1EE0036D01B /* ClaimSet */,
F88664391F4AD1EE0036D01B /* Coding */,
F88664441F4AD1EE0036D01B /* FrameworkSupplement */,
F88664471F4AD1EE0036D01B /* Supplement */,
);
path = Core;
sourceTree = "<group>";
};
F88664131F4AD1EE0036D01B /* Algorithms */ = {
isa = PBXGroup;
children = (
F88664141F4AD1EE0036D01B /* Base */,
F886641A1F4AD1EE0036D01B /* ESFamily */,
F886641D1F4AD1EE0036D01B /* Holders */,
F88664221F4AD1EE0036D01B /* HSFamily */,
F88664251F4AD1EE0036D01B /* RSFamily */,
);
path = Algorithms;
sourceTree = "<group>";
};
F88664141F4AD1EE0036D01B /* Base */ = {
isa = PBXGroup;
children = (
F88664151F4AD1EE0036D01B /* JWTAlgorithm.h */,
F88664161F4AD1EE0036D01B /* JWTAlgorithmFactory.h */,
F88664171F4AD1EE0036D01B /* JWTAlgorithmFactory.m */,
F88664181F4AD1EE0036D01B /* JWTAlgorithmNone.h */,
F88664191F4AD1EE0036D01B /* JWTAlgorithmNone.m */,
);
path = Base;
sourceTree = "<group>";
};
F886641A1F4AD1EE0036D01B /* ESFamily */ = {
isa = PBXGroup;
children = (
F886641B1F4AD1EE0036D01B /* JWTAlgorithmESBase.h */,
F886641C1F4AD1EE0036D01B /* JWTAlgorithmESBase.m */,
);
path = ESFamily;
sourceTree = "<group>";
};
F886641D1F4AD1EE0036D01B /* Holders */ = {
isa = PBXGroup;
children = (
F886641E1F4AD1EE0036D01B /* JWTAlgorithmDataHolder.h */,
F886641F1F4AD1EE0036D01B /* JWTAlgorithmDataHolder.m */,
F88664201F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.h */,
F88664211F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.m */,
);
path = Holders;
sourceTree = "<group>";
};
F88664221F4AD1EE0036D01B /* HSFamily */ = {
isa = PBXGroup;
children = (
F88664231F4AD1EE0036D01B /* JWTAlgorithmHSBase.h */,
F88664241F4AD1EE0036D01B /* JWTAlgorithmHSBase.m */,
);
path = HSFamily;
sourceTree = "<group>";
};
F88664251F4AD1EE0036D01B /* RSFamily */ = {
isa = PBXGroup;
children = (
F88664261F4AD1EE0036D01B /* JWTAlgorithmRSBase.h */,
F88664271F4AD1EE0036D01B /* JWTAlgorithmRSBase.m */,
F88664281F4AD1EE0036D01B /* JWTRSAlgorithm.h */,
F88664291F4AD1EE0036D01B /* RSKeys */,
);
path = RSFamily;
sourceTree = "<group>";
};
F88664291F4AD1EE0036D01B /* RSKeys */ = {
isa = PBXGroup;
children = (
F886642A1F4AD1EE0036D01B /* JWTCryptoKey.h */,
F886642B1F4AD1EE0036D01B /* JWTCryptoKey.m */,
F886642C1F4AD1EE0036D01B /* JWTCryptoKeyExtractor.h */,
F886642D1F4AD1EE0036D01B /* JWTCryptoKeyExtractor.m */,
F886642E1F4AD1EE0036D01B /* JWTCryptoSecurity.h */,
F886642F1F4AD1EE0036D01B /* JWTCryptoSecurity.m */,
);
path = RSKeys;
sourceTree = "<group>";
};
F88664301F4AD1EE0036D01B /* ClaimSet */ = {
isa = PBXGroup;
children = (
F88664311F4AD1EE0036D01B /* JWTClaim.h */,
F88664321F4AD1EE0036D01B /* JWTClaim.m */,
F88664331F4AD1EE0036D01B /* JWTClaimsSet.h */,
F88664341F4AD1EE0036D01B /* JWTClaimsSet.m */,
F88664351F4AD1EE0036D01B /* JWTClaimsSetSerializer.h */,
F88664361F4AD1EE0036D01B /* JWTClaimsSetSerializer.m */,
F88664371F4AD1EE0036D01B /* JWTClaimsSetVerifier.h */,
F88664381F4AD1EE0036D01B /* JWTClaimsSetVerifier.m */,
);
path = ClaimSet;
sourceTree = "<group>";
};
F88664391F4AD1EE0036D01B /* Coding */ = {
isa = PBXGroup;
children = (
F886643A1F4AD1EE0036D01B /* JWTCoding+ResultTypes.h */,
F886643B1F4AD1EE0036D01B /* JWTCoding+ResultTypes.m */,
F886643C1F4AD1EE0036D01B /* JWTCoding+VersionOne.h */,
F886643D1F4AD1EE0036D01B /* JWTCoding+VersionOne.m */,
F886643E1F4AD1EE0036D01B /* JWTCoding+VersionThree.h */,
F886643F1F4AD1EE0036D01B /* JWTCoding+VersionThree.m */,
F88664401F4AD1EE0036D01B /* JWTCoding+VersionTwo.h */,
F88664411F4AD1EE0036D01B /* JWTCoding+VersionTwo.m */,
F88664421F4AD1EE0036D01B /* JWTCoding.h */,
F88664431F4AD1EE0036D01B /* JWTCoding.m */,
);
path = Coding;
sourceTree = "<group>";
};
F88664441F4AD1EE0036D01B /* FrameworkSupplement */ = {
isa = PBXGroup;
children = (
F88664451F4AD1EE0036D01B /* JWT.h */,
F88664461F4AD1EE0036D01B /* Map.modulemap */,
);
path = FrameworkSupplement;
sourceTree = "<group>";
};
F88664471F4AD1EE0036D01B /* Supplement */ = {
isa = PBXGroup;
children = (
F88664481F4AD1EE0036D01B /* JWTBase64Coder.h */,
F88664491F4AD1EE0036D01B /* JWTBase64Coder.m */,
F886644A1F4AD1EE0036D01B /* JWTDeprecations.h */,
F886644B1F4AD1EE0036D01B /* JWTErrorDescription.h */,
F886644C1F4AD1EE0036D01B /* JWTErrorDescription.m */,
);
path = Supplement;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
6463C8461EBA0D230095B8CD /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
3221E4662C8ABE1300268379 /* mz_strm_buf.h in Headers */,
3221E48E2C8ABE1400268379 /* SSZipArchive.h in Headers */,
3221E4762C8ABE1300268379 /* mz_strm_pkcrypt.h in Headers */,
3221E4642C8ABE1300268379 /* mz_strm_split.h in Headers */,
6463C8471EBA0D290095B8CD /* CodePush.h in Headers */,
B0E0E947B133B742F6B41FBF /* CodePushSha256.h in Headers */,
4693408DCB9ACB8E02BF69B1 /* CodePushDiffManifest.h in Headers */,
469472C57F1D5FF7C0274268 /* CodePushBinaryDiffPatcher.h in Headers */,
3221E46A2C8ABE1300268379 /* mz_strm.h in Headers */,
3221E4782C8ABE1300268379 /* mz_zip_rw.h in Headers */,
3221E4802C8ABE1400268379 /* mz.h in Headers */,
3221E4602C8ABE1300268379 /* mz_os.h in Headers */,
3221E4882C8ABE1400268379 /* mz_strm_mem.h in Headers */,
3221E4862C8ABE1400268379 /* mz_crypt.h in Headers */,
3221E4902C8ABE1400268379 /* SSZipCommon.h in Headers */,
3221E4582C8ABE1300268379 /* mz_strm_wzaes.h in Headers */,
3221E4522C8ABE1300268379 /* ZipArchive.h in Headers */,
3221E4722C8ABE1300268379 /* mz_strm_zlib.h in Headers */,
3221E45A2C8ABE1300268379 /* mz_compat.h in Headers */,
3221E47C2C8ABE1400268379 /* mz_zip.h in Headers */,
3221E48C2C8ABE1400268379 /* mz_strm_os.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8482F84D1E24C65E00F793DB /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
3221E4712C8ABE1300268379 /* mz_strm_zlib.h in Headers */,
3221E48B2C8ABE1400268379 /* mz_strm_os.h in Headers */,
F88664791F4AD1EE0036D01B /* JWTErrorDescription.h in Headers */,
F85736761F4F03BF00C9C00A /* MF_Base64Additions.h in Headers */,
F88664541F4AD1EE0036D01B /* JWTAlgorithmDataHolder.h in Headers */,
F88664501F4AD1EE0036D01B /* JWTAlgorithmNone.h in Headers */,
F88664671F4AD1EE0036D01B /* JWTClaimsSetSerializer.h in Headers */,
F88664521F4AD1EE0036D01B /* JWTAlgorithmESBase.h in Headers */,
F88664781F4AD1EE0036D01B /* JWTDeprecations.h in Headers */,
3221E4852C8ABE1400268379 /* mz_crypt.h in Headers */,
3221E4512C8ABE1300268379 /* ZipArchive.h in Headers */,
F88664631F4AD1EE0036D01B /* JWTClaim.h in Headers */,
F886645A1F4AD1EE0036D01B /* JWTAlgorithmRSBase.h in Headers */,
F886645F1F4AD1EE0036D01B /* JWTCryptoKeyExtractor.h in Headers */,
F88664651F4AD1EE0036D01B /* JWTClaimsSet.h in Headers */,
F886644E1F4AD1EE0036D01B /* JWTAlgorithmFactory.h in Headers */,
F886645C1F4AD1EE0036D01B /* JWTRSAlgorithm.h in Headers */,
F88664731F4AD1EE0036D01B /* JWTCoding.h in Headers */,
3221E45F2C8ABE1300268379 /* mz_os.h in Headers */,
3221E4872C8ABE1400268379 /* mz_strm_mem.h in Headers */,
3221E48D2C8ABE1400268379 /* SSZipArchive.h in Headers */,
F88664581F4AD1EE0036D01B /* JWTAlgorithmHSBase.h in Headers */,
F886646D1F4AD1EE0036D01B /* JWTCoding+VersionOne.h in Headers */,
3221E47F2C8ABE1400268379 /* mz.h in Headers */,
F88664761F4AD1EE0036D01B /* JWTBase64Coder.h in Headers */,
F88664561F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.h in Headers */,
3221E4592C8ABE1300268379 /* mz_compat.h in Headers */,
F886644D1F4AD1EE0036D01B /* JWTAlgorithm.h in Headers */,
F88664611F4AD1EE0036D01B /* JWTCryptoSecurity.h in Headers */,
3221E48F2C8ABE1400268379 /* SSZipCommon.h in Headers */,
F88664751F4AD1EE0036D01B /* JWT.h in Headers */,
F886645D1F4AD1EE0036D01B /* JWTCryptoKey.h in Headers */,
3221E4692C8ABE1300268379 /* mz_strm.h in Headers */,
3221E4772C8ABE1300268379 /* mz_zip_rw.h in Headers */,
F886646F1F4AD1EE0036D01B /* JWTCoding+VersionThree.h in Headers */,
F88664691F4AD1EE0036D01B /* JWTClaimsSetVerifier.h in Headers */,
3221E4572C8ABE1300268379 /* mz_strm_wzaes.h in Headers */,
3221E4632C8ABE1300268379 /* mz_strm_split.h in Headers */,
3221E4752C8ABE1300268379 /* mz_strm_pkcrypt.h in Headers */,
8482F84E1E24C66300F793DB /* CodePush.h in Headers */,
6A57E1B401615DA251D0F91F /* CodePushSha256.h in Headers */,
C11A2DB29D3D814B1A7891DF /* CodePushDiffManifest.h in Headers */,
E5C712D353D9164F04A2F456 /* CodePushBinaryDiffPatcher.h in Headers */,
F88664711F4AD1EE0036D01B /* JWTCoding+VersionTwo.h in Headers */,
F886646B1F4AD1EE0036D01B /* JWTCoding+ResultTypes.h in Headers */,
3221E4652C8ABE1300268379 /* mz_strm_buf.h in Headers */,
3221E47B2C8ABE1400268379 /* mz_zip.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
58B511DA1A9E6C8500147676 /* CodePush */ = {
isa = PBXNativeTarget;
buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "CodePush" */;
buildPhases = (
58B511D71A9E6C8500147676 /* Sources */,
58B511D81A9E6C8500147676 /* Frameworks */,
58B511D91A9E6C8500147676 /* CopyFiles */,
8482F84D1E24C65E00F793DB /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = CodePush;
productName = RCTDataManager;
productReference = 134814201AA4EA6300B7C361 /* libCodePush.a */;
productType = "com.apple.product-type.library.static";
};
6463C8231EBA0CB60095B8CD /* CodePush-tvOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 6463C82C1EBA0CB60095B8CD /* Build configuration list for PBXNativeTarget "CodePush-tvOS" */;
buildPhases = (
6463C8201EBA0CB60095B8CD /* Sources */,
6463C8211EBA0CB60095B8CD /* Frameworks */,
6463C8221EBA0CB60095B8CD /* CopyFiles */,
6463C8461EBA0D230095B8CD /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = "CodePush-tvOS";
productName = "CodePush-tvOS";
productReference = F886647B1F4ADB500036D01B /* libCodePush.a */;
productType = "com.apple.product-type.library.static";
};
9750B3DE460E834FF67380BD /* CodePushTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = A11B0911B46B588F8C213676 /* Build configuration list for PBXNativeTarget "CodePushTests" */;
buildPhases = (
7F757C5E9DC4CC7D30C29506 /* Sources */,
92F210124F3F87350E684641 /* Frameworks */,
C50E6815B9794CFCD65A8F0C /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = CodePushTests;
productName = CodePushTests;
productReference = 4AB96C756000A7E833CBA8B7 /* CodePushTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
58B511D31A9E6C8500147676 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1000;
ORGANIZATIONNAME = Microsoft;
TargetAttributes = {
58B511DA1A9E6C8500147676 = {
CreatedOnToolsVersion = 6.1.1;
};
6463C8231EBA0CB60095B8CD = {
CreatedOnToolsVersion = 8.3.2;
ProvisioningStyle = Automatic;
};
9750B3DE460E834FF67380BD = {
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "CodePush" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
);
mainGroup = 58B511D21A9E6C8500147676;
productRefGroup = 58B511D21A9E6C8500147676;
projectDirPath = "";
projectRoot = "";
targets = (
58B511DA1A9E6C8500147676 /* CodePush */,
6463C8231EBA0CB60095B8CD /* CodePush-tvOS */,
9750B3DE460E834FF67380BD /* CodePushTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
C50E6815B9794CFCD65A8F0C /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5C6B00FACE8707503D366F7C /* Fixtures in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
58B511D71A9E6C8500147676 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
08B8B3B8260E70B7ECA85451 /* bspatch_bridge.c in Sources */,
A75C1A7A555663186E25AA3D /* libHDiffPatch/HPatch/patch.c in Sources */,
D8C294C1D2625E79BC302CCC /* bsdiff_wrapper/bspatch_wrapper.c in Sources */,
78E9CECCB820DC4BA09BF09A /* file_for_patch.c in Sources */,
3221E47D2C8ABE1400268379 /* mz_os_posix.c in Sources */,
3221E4792C8ABE1300268379 /* mz_os.c in Sources */,
F88664621F4AD1EE0036D01B /* JWTCryptoSecurity.m in Sources */,
F88664701F4AD1EE0036D01B /* JWTCoding+VersionThree.m in Sources */,
540D20121C7684FE00D6EF41 /* CodePushUpdateUtils.m in Sources */,
3221E4812C8ABE1400268379 /* mz_strm_buf.c in Sources */,
3221E46D2C8ABE1300268379 /* mz_crypt.c in Sources */,
F886646E1F4AD1EE0036D01B /* JWTCoding+VersionOne.m in Sources */,
1BCC09A71CC19EB700DDC0DD /* RCTConvert+CodePushUpdateState.m in Sources */,
F88664661F4AD1EE0036D01B /* JWTClaimsSet.m in Sources */,
3221E4892C8ABE1400268379 /* mz_strm.c in Sources */,
1B23B9141BF9267B000BB2F0 /* RCTConvert+CodePushInstallMode.m in Sources */,
F886645E1F4AD1EE0036D01B /* JWTCryptoKey.m in Sources */,
81D51F3A1B6181C2000DA084 /* CodePushConfig.m in Sources */,
3221E4732C8ABE1300268379 /* mz_compat.c in Sources */,
F886646A1F4AD1EE0036D01B /* JWTClaimsSetVerifier.m in Sources */,
3221E45B2C8ABE1300268379 /* mz_strm_zlib.c in Sources */,
3221E46B2C8ABE1300268379 /* mz_strm_mem.c in Sources */,
54FFEDE01BF550630061DD23 /* CodePushDownloadHandler.m in Sources */,
3221E4672C8ABE1300268379 /* mz_crypt_apple.c in Sources */,
3221E4912C8ABE1400268379 /* SSZipArchive.m in Sources */,
F88664551F4AD1EE0036D01B /* JWTAlgorithmDataHolder.m in Sources */,
F88664681F4AD1EE0036D01B /* JWTClaimsSetSerializer.m in Sources */,
5421FE311C58AD5A00986A55 /* CodePushTelemetryManager.m in Sources */,
F886646C1F4AD1EE0036D01B /* JWTCoding+ResultTypes.m in Sources */,
3221E46F2C8ABE1300268379 /* mz_strm_wzaes.c in Sources */,
F88664601F4AD1EE0036D01B /* JWTCryptoKeyExtractor.m in Sources */,
F88664571F4AD1EE0036D01B /* JWTAlgorithmDataHolderChain.m in Sources */,
13BE3DEE1AC21097009241FE /* CodePush.m in Sources */,
F85736771F4F03BF00C9C00A /* MF_Base64Additions.m in Sources */,
F88664641F4AD1EE0036D01B /* JWTClaim.m in Sources */,
F88664741F4AD1EE0036D01B /* JWTCoding.m in Sources */,
3221E45D2C8ABE1300268379 /* mz_zip.c in Sources */,
1B762E901C9A5E9A006EF800 /* CodePushErrorUtils.m in Sources */,
F886645B1F4AD1EE0036D01B /* JWTAlgorithmRSBase.m in Sources */,
3221E4832C8ABE1400268379 /* mz_strm_split.c in Sources */,
F886647A1F4AD1EF0036D01B /* JWTErrorDescription.m in Sources */,
F886644F1F4AD1EE0036D01B /* JWTAlgorithmFactory.m in Sources */,
F88664591F4AD1EE0036D01B /* JWTAlgorithmHSBase.m in Sources */,
F88664771F4AD1EE0036D01B /* JWTBase64Coder.m in Sources */,
F88664511F4AD1EE0036D01B /* JWTAlgorithmNone.m in Sources */,
5498D8F61D21F14100B5EB43 /* CodePushUtils.m in Sources */,
3221E4612C8ABE1300268379 /* mz_zip_rw.c in Sources */,
810D4E6D1B96935000B397E9 /* CodePushPackage.m in Sources */,
B75F8EB77C01BA01704CAD97 /* CodePushSha256.m in Sources */,
CED0A6936F6F8C354302F246 /* CodePushDiffManifest.m in Sources */,
1993F82DF6330426AC5CBC2E /* CodePushBinaryDiffPatcher.m in Sources */,
3221E4552C8ABE1300268379 /* mz_strm_pkcrypt.c in Sources */,
F88664531F4AD1EE0036D01B /* JWTAlgorithmESBase.m in Sources */,
3221E4532C8ABE1300268379 /* mz_strm_os_posix.c in Sources */,
F88664721F4AD1EE0036D01B /* JWTCoding+VersionTwo.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6463C8201EBA0CB60095B8CD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
3221E47E2C8ABE1400268379 /* mz_os_posix.c in Sources */,
3221E46C2C8ABE1300268379 /* mz_strm_mem.c in Sources */,
3221E4922C8ABE1400268379 /* SSZipArchive.m in Sources */,
3221E4822C8ABE1400268379 /* mz_strm_buf.c in Sources */,
3221E45E2C8ABE1300268379 /* mz_zip.c in Sources */,
6463C82D1EBA0CFB0095B8CD /* CodePushUtils.m in Sources */,
6463C82E1EBA0CFB0095B8CD /* CodePush.m in Sources */,
6463C82F1EBA0CFB0095B8CD /* CodePushConfig.m in Sources */,
6463C8301EBA0CFB0095B8CD /* CodePushDownloadHandler.m in Sources */,
6463C8311EBA0CFB0095B8CD /* CodePushErrorUtils.m in Sources */,
3221E46E2C8ABE1300268379 /* mz_crypt.c in Sources */,
6463C8321EBA0CFB0095B8CD /* CodePushPackage.m in Sources */,
A2206CF91ED7FE901C630AB4 /* CodePushSha256.m in Sources */,
CD32522E04D0F0E86DCC7BBE /* CodePushDiffManifest.m in Sources */,
F41E2EFAD0D322F7D14D7125 /* CodePushBinaryDiffPatcher.m in Sources */,
6463C8331EBA0CFB0095B8CD /* CodePushTelemetryManager.m in Sources */,
6463C8341EBA0CFB0095B8CD /* CodePushUpdateUtils.m in Sources */,
3221E45C2C8ABE1300268379 /* mz_strm_zlib.c in Sources */,
3221E4682C8ABE1300268379 /* mz_crypt_apple.c in Sources */,
3221E4842C8ABE1400268379 /* mz_strm_split.c in Sources */,
3221E48A2C8ABE1400268379 /* mz_strm.c in Sources */,
6463C8351EBA0CFB0095B8CD /* RCTConvert+CodePushInstallMode.m in Sources */,
3221E4742C8ABE1300268379 /* mz_compat.c in Sources */,
3221E4542C8ABE1300268379 /* mz_strm_os_posix.c in Sources */,
3221E4702C8ABE1300268379 /* mz_strm_wzaes.c in Sources */,
3221E4562C8ABE1300268379 /* mz_strm_pkcrypt.c in Sources */,
3221E47A2C8ABE1300268379 /* mz_os.c in Sources */,
3221E4622C8ABE1300268379 /* mz_zip_rw.c in Sources */,
6463C8361EBA0CFB0095B8CD /* RCTConvert+CodePushUpdateState.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7F757C5E9DC4CC7D30C29506 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B5B50F91FAAF80444988E284 /* BSPatchTests.swift in Sources */,
46BD3246E1289AF018ED4FEB /* CodePushSha256Tests.swift in Sources */,
BBC7F97A68E454FB38953FC4 /* CodePushDiffManifestTests.swift in Sources */,
3643F3729205426163367671 /* CodePushBinaryDiffPatcherTests.swift in Sources */,
47F66D5AF3C3185E1A3E3B15 /* bspatch_bridge.c in Sources */,
6663AFF6236CD01E20CBDD80 /* CodePushSha256.m in Sources */,
0E9314F338AC505D2E33C1A3 /* CodePushDiffManifest.m in Sources */,
D5BC8B1BF7D2DA03BB888FCC /* CodePushBinaryDiffPatcher.m in Sources */,
DC983F1C71E0E7131BB343C5 /* libHDiffPatch/HPatch/patch.c in Sources */,
A88F11124A2120A8373A8B61 /* bsdiff_wrapper/bspatch_wrapper.c in Sources */,
0ABCB5DEFE01A7A15552A498 /* file_for_patch.c in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin XCBuildConfiguration section */
4E5D9A15C8BA6CEA802EA38B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
GCC_PREPROCESSOR_DEFINITIONS = (