project.pbxproj
303 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
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00E356F31AD99517003FC87E /* metroAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* metroAppTests.m */; };
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
1BE79E0122BA5DD000292369 /* AMapFoundationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79DDB22BA5DD000292369 /* AMapFoundationKit.framework */; };
1BE79E0222BA5DD000292369 /* AMapFoundationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79DDB22BA5DD000292369 /* AMapFoundationKit.framework */; };
1BE79E0322BA5DD000292369 /* AMapLocationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0022BA5DD000292369 /* AMapLocationKit.framework */; };
1BE79E0422BA5DD000292369 /* AMapLocationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0022BA5DD000292369 /* AMapLocationKit.framework */; };
1BE79E0622BA5E0300292369 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0522BA5E0300292369 /* ExternalAccessory.framework */; };
1BE79E0822BA5E0E00292369 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0722BA5E0E00292369 /* MapKit.framework */; };
1BE79E0A22BA5E2400292369 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0922BA5E2400292369 /* libc++.tbd */; };
1BE79E0C22BA5E3400292369 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0B22BA5E3400292369 /* GLKit.framework */; };
1BE79E0F22BA5E6A00292369 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0522BA5E0300292369 /* ExternalAccessory.framework */; };
1BE79E1022BA5E7000292369 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0722BA5E0E00292369 /* MapKit.framework */; };
1BE79E1122BA5E8200292369 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0922BA5E2400292369 /* libc++.tbd */; };
1BE79E1222BA5E8900292369 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0B22BA5E3400292369 /* GLKit.framework */; };
1BFC23572176D8CB00AE76D9 /* RequestData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFC23332176D8C700AE76D9 /* RequestData.m */; };
1BFC23582176D8CB00AE76D9 /* RequestData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFC23332176D8C700AE76D9 /* RequestData.m */; };
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
2DCD954D1E0B4F2C00145EB5 /* metroAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* metroAppTests.m */; };
6C10B7F3208DF75C00B414B4 /* XNCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F2208DF75C00B414B4 /* XNCameraManager.m */; };
6C10B7F9208DF8F800B414B4 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F6208DF8F800B414B4 /* MBProgressHUD.m */; };
6C10B7FA208DF8F800B414B4 /* xn_base_Client_AF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F8208DF8F800B414B4 /* xn_base_Client_AF.m */; };
6C10B802208DF90100B414B4 /* BaseResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FD208DF90100B414B4 /* BaseResponse.m */; };
6C10B803208DF90100B414B4 /* BaseDomain.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FE208DF90100B414B4 /* BaseDomain.m */; };
6C10B804208DF90100B414B4 /* BaseRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FF208DF90100B414B4 /* BaseRequest.m */; };
6C10B81B208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81A208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m */; };
6C10B81E208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81D208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m */; };
6C10B821208DF96D00B414B4 /* FileUploadInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81F208DF96D00B414B4 /* FileUploadInfo.m */; };
6C10B8D6208ED74D00B414B4 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CD208ED74D00B414B4 /* AFURLResponseSerialization.m */; };
6C10B8D7208ED74D00B414B4 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CE208ED74D00B414B4 /* AFHTTPSessionManager.m */; };
6C10B8D8208ED74D00B414B4 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D0208ED74D00B414B4 /* AFURLSessionManager.m */; };
6C10B8D9208ED74D00B414B4 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D1208ED74D00B414B4 /* AFURLRequestSerialization.m */; };
6C10B8DA208ED74D00B414B4 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D3208ED74D00B414B4 /* AFNetworkReachabilityManager.m */; };
6C10B8DB208ED74D00B414B4 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D4208ED74D00B414B4 /* AFSecurityPolicy.m */; };
6C1E517F2099A1910002AA8D /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37720887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m */; };
6C1E51802099A1910002AA8D /* ZLPhotoBrowserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F520886F6100CA7B75 /* ZLPhotoBrowserCell.m */; };
6C1E51812099A1910002AA8D /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E72088805800CA7B75 /* UIImage+WebP.m */; };
6C1E51822099A1910002AA8D /* SelectCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37220887D3500CA7B75 /* SelectCollectionCell.m */; };
6C1E51832099A1910002AA8D /* BaseDomain.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FE208DF90100B414B4 /* BaseDomain.m */; };
6C1E51842099A1910002AA8D /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F62088805800CA7B75 /* SDWebImageDownloader.m */; };
6C1E51852099A1910002AA8D /* ZLEditVideoController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32020886F6100CA7B75 /* ZLEditVideoController.m */; };
6C1E51862099A1910002AA8D /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40D2088805800CA7B75 /* NSImage+WebCache.m */; };
6C1E51872099A1910002AA8D /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F6208DF8F800B414B4 /* MBProgressHUD.m */; };
6C1E51882099A1910002AA8D /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38420887D6C00CA7B75 /* MASCompositeConstraint.m */; };
6C1E518A2099A1910002AA8D /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38D20887D6C00CA7B75 /* MASViewConstraint.m */; };
6C1E518B2099A1910002AA8D /* BaseRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FF208DF90100B414B4 /* BaseRequest.m */; };
6C1E518C2099A1910002AA8D /* ZLPhotoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2FA20886F6100CA7B75 /* ZLPhotoManager.m */; };
6C1E518D2099A1910002AA8D /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4142088805800CA7B75 /* UIView+WebCache.m */; };
6C1E518E2099A1910002AA8D /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F22088805800CA7B75 /* UIImage+ForceDecode.m */; };
6C1E51902099A1910002AA8D /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41A2088805800CA7B75 /* UIButton+WebCache.m */; };
6C1E51922099A1910002AA8D /* FileUploadInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81F208DF96D00B414B4 /* FileUploadInfo.m */; };
6C1E51932099A1910002AA8D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3ED2088805800CA7B75 /* SDWebImageManager.m */; };
6C1E51942099A1910002AA8D /* FileUploadAuthInfoGetRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81A208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m */; };
6C1E51952099A1910002AA8D /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40A2088805800CA7B75 /* NSData+ImageContentType.m */; };
6C1E51962099A1910002AA8D /* NSBundle+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4382088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m */; };
6C1E51972099A1910002AA8D /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FF2088805800CA7B75 /* SDWebImagePrefetcher.m */; };
6C1E51982099A1910002AA8D /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D4208ED74D00B414B4 /* AFSecurityPolicy.m */; };
6C1E519A2099A1910002AA8D /* ZLShowBigImgViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31A20886F6100CA7B75 /* ZLShowBigImgViewController.m */; };
6C1E519B2099A1910002AA8D /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38820887D6C00CA7B75 /* View+MASAdditions.m */; };
6C1E519C2099A1910002AA8D /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F02088805800CA7B75 /* SDWebImageFrame.m */; };
6C1E519D2099A1910002AA8D /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E82088805800CA7B75 /* MKAnnotationView+WebCache.m */; };
6C1E519E2099A1910002AA8D /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38620887D6C00CA7B75 /* MASLayoutConstraint.m */; };
6C1E519F2099A1910002AA8D /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FB2088805800CA7B75 /* UIImage+MultiFormat.m */; };
6C1E51A02099A1910002AA8D /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CE208ED74D00B414B4 /* AFHTTPSessionManager.m */; };
6C1E51A22099A1910002AA8D /* xn_base_Client_AF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F8208DF8F800B414B4 /* xn_base_Client_AF.m */; };
6C1E51A32099A1910002AA8D /* ZLBigImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F020886F6100CA7B75 /* ZLBigImageCell.m */; };
6C1E51A42099A1910002AA8D /* ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30820886F6100CA7B75 /* ZLPhotoBrowser.m */; };
6C1E51A52099A1910002AA8D /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41B2088805800CA7B75 /* SDWebImageWebPCoder.m */; };
6C1E51A62099A1910002AA8D /* ZLCustomCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30A20886F6100CA7B75 /* ZLCustomCamera.m */; };
6C1E51A82099A1910002AA8D /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40B2088805800CA7B75 /* UIImageView+WebCache.m */; };
6C1E51A92099A1910002AA8D /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4132088805800CA7B75 /* UIView+WebCacheOperation.m */; };
6C1E51AA2099A1910002AA8D /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3EF2088805800CA7B75 /* UIImageView+HighlightedWebCache.m */; };
6C1E51AC2099A1910002AA8D /* ZLEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */; };
6C1E51AD2099A1910002AA8D /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38E20887D6C00CA7B75 /* MASViewAttribute.m */; };
6C1E51B02099A1910002AA8D /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D1208ED74D00B414B4 /* AFURLRequestSerialization.m */; };
6C1E51B12099A1910002AA8D /* UIImage+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30C20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m */; };
6C1E51B42099A1910002AA8D /* UIButton+EnlargeTouchArea.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */; };
6C1E51B62099A1910002AA8D /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4082088805800CA7B75 /* SDWebImageDownloaderOperation.m */; };
6C1E51B72099A1910002AA8D /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FD2088805800CA7B75 /* SDWebImageCompat.m */; };
6C1E51B82099A1910002AA8D /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
6C1E51B92099A1910002AA8D /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F42088805800CA7B75 /* SDWebImageCodersManager.m */; };
6C1E51BA2099A1910002AA8D /* ZLPhotoActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE43B208887E600CA7B75 /* ZLPhotoActionSheet.m */; };
6C1E51BB2099A1910002AA8D /* ZLForceTouchPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F620886F6100CA7B75 /* ZLForceTouchPreviewController.m */; };
6C1E51BC2099A1910002AA8D /* ZLProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30320886F6100CA7B75 /* ZLProgressHUD.m */; };
6C1E51BD2099A1910002AA8D /* XNCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F2208DF75C00B414B4 /* XNCameraManager.m */; };
6C1E51BE2099A1910002AA8D /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38B20887D6C00CA7B75 /* MASConstraint.m */; };
6C1E51BF2099A1910002AA8D /* ZLPhotoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31F20886F6100CA7B75 /* ZLPhotoModel.m */; };
6C1E51C02099A1910002AA8D /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38520887D6C00CA7B75 /* MASConstraintMaker.m */; };
6C1E51C12099A1910002AA8D /* ZLThumbnailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31C20886F6100CA7B75 /* ZLThumbnailViewController.m */; };
6C1E51C22099A1910002AA8D /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4052088805800CA7B75 /* SDImageCache.m */; };
6C1E51C32099A1910002AA8D /* FileUploadAuthInfoGetResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81D208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m */; };
6C1E51C42099A1910002AA8D /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D0208ED74D00B414B4 /* AFURLSessionManager.m */; };
6C1E51C52099A1910002AA8D /* ZLNoAuthorityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31220886F6100CA7B75 /* ZLNoAuthorityViewController.m */; };
6C1E51C62099A1910002AA8D /* ToastUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30D20886F6100CA7B75 /* ToastUtils.m */; };
6C1E51C72099A1910002AA8D /* ZLPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30B20886F6100CA7B75 /* ZLPlayer.m */; };
6C1E51C82099A1910002AA8D /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F92088805800CA7B75 /* UIImage+GIF.m */; };
6C1E51CA2099A1910002AA8D /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4022088805800CA7B75 /* SDWebImageCoder.m */; };
6C1E51CB2099A1910002AA8D /* BaseResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FD208DF90100B414B4 /* BaseResponse.m */; };
6C1E51CC2099A1910002AA8D /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FC2088805800CA7B75 /* SDWebImageCoderHelper.m */; };
6C1E51CD2099A1910002AA8D /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38020887D6C00CA7B75 /* ViewController+MASAdditions.m */; };
6C1E51CE2099A1910002AA8D /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4162088805800CA7B75 /* SDWebImageImageIOCoder.m */; };
6C1E51CF2099A1910002AA8D /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4102088805800CA7B75 /* SDImageCacheConfig.m */; };
6C1E51D02099A1910002AA8D /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40E2088805800CA7B75 /* SDWebImageGIFCoder.m */; };
6C1E51D12099A1910002AA8D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
6C1E51D22099A1910002AA8D /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38720887D6C00CA7B75 /* NSArray+MASAdditions.m */; };
6C1E51D32099A1910002AA8D /* BlueToolManage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA2D8762068DF24004E9E33 /* BlueToolManage.m */; };
6C1E51D42099A1910002AA8D /* ZLCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31120886F6100CA7B75 /* ZLCollectionCell.m */; };
6C1E51D52099A1910002AA8D /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CD208ED74D00B414B4 /* AFURLResponseSerialization.m */; };
6C1E51D62099A1910002AA8D /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D3208ED74D00B414B4 /* AFNetworkReachabilityManager.m */; };
6C1E51D72099A1910002AA8D /* ZLPhotoConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32220886F6100CA7B75 /* ZLPhotoConfiguration.m */; };
6C1E51DB2099A1910002AA8D /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2DD2088666600CA7B75 /* libresolv.tbd */; };
6C1E51DE2099A1910002AA8D /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A4B207227E6009D733A /* AVFoundation.framework */; };
6C1E51DF2099A1910002AA8D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A49207227DD009D733A /* AudioToolbox.framework */; };
6C1E51E02099A1910002AA8D /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A47207227CF009D733A /* CoreMotion.framework */; };
6C1E51E12099A1910002AA8D /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A45207227C7009D733A /* OpenGLES.framework */; };
6C1E51E32099A1910002AA8D /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A92068E7C8004E9E33 /* CoreLocation.framework */; };
6C1E51E42099A1910002AA8D /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A72068E7C1004E9E33 /* CoreBluetooth.framework */; };
6C1E51E62099A1910002AA8D /* AliyunOSSiOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */; };
6C1E51EA2099A1910002AA8D /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */; };
6C1E51F32099A1910002AA8D /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
6C1E51F42099A1910002AA8D /* ZLPhotoBrowserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31820886F6100CA7B75 /* ZLPhotoBrowserCell.xib */; };
6C1E51F52099A1910002AA8D /* ZLPhotoBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31620886F6100CA7B75 /* ZLPhotoBrowser.bundle */; };
6C1E51F62099A1910002AA8D /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
6C2FC15723601AF400D66BEB /* UMAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15323601AF300D66BEB /* UMAnalytics.framework */; };
6C2FC15823601AF400D66BEB /* UMAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15323601AF300D66BEB /* UMAnalytics.framework */; };
6C2FC15923601AF400D66BEB /* UMPush.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15423601AF300D66BEB /* UMPush.framework */; };
6C2FC15A23601AF400D66BEB /* UMPush.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15423601AF300D66BEB /* UMPush.framework */; };
6C2FC15B23601AF400D66BEB /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15523601AF400D66BEB /* UMCommon.framework */; };
6C2FC15C23601AF400D66BEB /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15523601AF400D66BEB /* UMCommon.framework */; };
6C2FC15D23601AF400D66BEB /* SecurityEnvSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15623601AF400D66BEB /* SecurityEnvSDK.framework */; };
6C2FC15E23601AF400D66BEB /* SecurityEnvSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15623601AF400D66BEB /* SecurityEnvSDK.framework */; };
6C2FC16023601B0600D66BEB /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15F23601B0600D66BEB /* UserNotifications.framework */; };
6C2FC16123601B1100D66BEB /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15F23601B0600D66BEB /* UserNotifications.framework */; };
6C678A44207227AE009D733A /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A43207227AE009D733A /* CoreTelephony.framework */; };
6C678A46207227C7009D733A /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A45207227C7009D733A /* OpenGLES.framework */; };
6C678A48207227CF009D733A /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A47207227CF009D733A /* CoreMotion.framework */; };
6C678A4A207227DD009D733A /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A49207227DD009D733A /* AudioToolbox.framework */; };
6C678A4C207227E6009D733A /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A4B207227E6009D733A /* AVFoundation.framework */; };
6C678A4E207227F4009D733A /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A4D207227F4009D733A /* SystemConfiguration.framework */; };
6C70BD392373DCDC0057B094 /* libRCTBEEPickerManager.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD292373DC940057B094 /* libRCTBEEPickerManager.a */; };
6C70BD3A2373DCDC0057B094 /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2C2373DC940057B094 /* libRCTCamera.a */; };
6C70BD3B2373DCDC0057B094 /* libRCTVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD332373DC940057B094 /* libRCTVideo.a */; };
6C70BD3C2373DCDC0057B094 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A00AD23726F1000C80EA2 /* libReact.a */; };
6C70BD3D2373DCDC0057B094 /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD382373DC940057B094 /* libRNImagePicker.a */; };
6C70BD3E2373DCF50057B094 /* libRCTSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2F2373DC940057B094 /* libRCTSplashScreen.a */; };
6C70BD3F2373DD2C0057B094 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD242373DC940057B094 /* libBVLinearGradient.a */; };
6C70BD402373DD2C0057B094 /* libfishhook.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01732372738600C80EA2 /* libfishhook.a */; };
6C70BD412373DD2C0057B094 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01242372713600C80EA2 /* libRCTActionSheet.a */; };
6C70BD422373DD2C0057B094 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A012B2372716000C80EA2 /* libRCTAnimation.a */; };
6C70BD432373DD2C0057B094 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01332372719200C80EA2 /* libRCTGeolocation.a */; };
6C70BD442373DD2C0057B094 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A013A237271C400C80EA2 /* libRCTImage.a */; };
6C70BD452373DD2C0057B094 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A0143237271EA00C80EA2 /* libRCTLinking.a */; };
6C70BD462373DD2C0057B094 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A014C2372721A00C80EA2 /* libRCTNetwork.a */; };
6C70BD472373DD2C0057B094 /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01552372725800C80EA2 /* libRCTSettings.a */; };
6C70BD482373DD2C0057B094 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A015E237272C400C80EA2 /* libRCTText.a */; };
6C70BD492373DD2C0057B094 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01662372731800C80EA2 /* libRCTVibration.a */; };
6C70BD4A2373DD2C0057B094 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A016F2372738600C80EA2 /* libRCTWebSocket.a */; };
6C70BD4B2373DD540057B094 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD242373DC940057B094 /* libBVLinearGradient.a */; };
6C70BD4C2373DD540057B094 /* libfishhook.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01732372738600C80EA2 /* libfishhook.a */; };
6C70BD4D2373DD540057B094 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01242372713600C80EA2 /* libRCTActionSheet.a */; };
6C70BD4E2373DD540057B094 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A012B2372716000C80EA2 /* libRCTAnimation.a */; };
6C70BD4F2373DD540057B094 /* libRCTBEEPickerManager.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD292373DC940057B094 /* libRCTBEEPickerManager.a */; };
6C70BD502373DD540057B094 /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2C2373DC940057B094 /* libRCTCamera.a */; };
6C70BD512373DD540057B094 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01332372719200C80EA2 /* libRCTGeolocation.a */; };
6C70BD522373DD540057B094 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A013A237271C400C80EA2 /* libRCTImage.a */; };
6C70BD532373DD540057B094 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A0143237271EA00C80EA2 /* libRCTLinking.a */; };
6C70BD542373DD540057B094 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A014C2372721A00C80EA2 /* libRCTNetwork.a */; };
6C70BD552373DD540057B094 /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01552372725800C80EA2 /* libRCTSettings.a */; };
6C70BD562373DD540057B094 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A015E237272C400C80EA2 /* libRCTText.a */; };
6C70BD572373DD540057B094 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01662372731800C80EA2 /* libRCTVibration.a */; };
6C70BD582373DD540057B094 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A016F2372738600C80EA2 /* libRCTWebSocket.a */; };
6C70BD592373DD540057B094 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A00AD23726F1000C80EA2 /* libReact.a */; };
6C93B04E240A6D3700933BC0 /* IQTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B02D240A6D3700933BC0 /* IQTextView.m */; };
6C93B04F240A6D3700933BC0 /* IQTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B02D240A6D3700933BC0 /* IQTextView.m */; };
6C93B050240A6D3700933BC0 /* IQToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B031240A6D3700933BC0 /* IQToolbar.m */; };
6C93B051240A6D3700933BC0 /* IQToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B031240A6D3700933BC0 /* IQToolbar.m */; };
6C93B052240A6D3700933BC0 /* IQTitleBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B033240A6D3700933BC0 /* IQTitleBarButtonItem.m */; };
6C93B053240A6D3700933BC0 /* IQTitleBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B033240A6D3700933BC0 /* IQTitleBarButtonItem.m */; };
6C93B054240A6D3700933BC0 /* IQBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B034240A6D3700933BC0 /* IQBarButtonItem.m */; };
6C93B055240A6D3700933BC0 /* IQBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B034240A6D3700933BC0 /* IQBarButtonItem.m */; };
6C93B056240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B035240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m */; };
6C93B057240A6D3800933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B035240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m */; };
6C93B058240A6D3800933BC0 /* IQPreviousNextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B036240A6D3700933BC0 /* IQPreviousNextView.m */; };
6C93B059240A6D3800933BC0 /* IQPreviousNextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B036240A6D3700933BC0 /* IQPreviousNextView.m */; };
6C93B05A240A6D3800933BC0 /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B03E240A6D3700933BC0 /* IQKeyboardManager.bundle */; };
6C93B05B240A6D3800933BC0 /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B03E240A6D3700933BC0 /* IQKeyboardManager.bundle */; };
6C93B05C240A6D3800933BC0 /* IQKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B041240A6D3700933BC0 /* IQKeyboardManager.m */; };
6C93B05D240A6D3800933BC0 /* IQKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B041240A6D3700933BC0 /* IQKeyboardManager.m */; };
6C93B05E240A6D3800933BC0 /* IQNSArray+Sort.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B043240A6D3700933BC0 /* IQNSArray+Sort.m */; };
6C93B05F240A6D3800933BC0 /* IQNSArray+Sort.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B043240A6D3700933BC0 /* IQNSArray+Sort.m */; };
6C93B060240A6D3800933BC0 /* IQUITextFieldView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B045240A6D3700933BC0 /* IQUITextFieldView+Additions.m */; };
6C93B061240A6D3800933BC0 /* IQUITextFieldView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B045240A6D3700933BC0 /* IQUITextFieldView+Additions.m */; };
6C93B062240A6D3800933BC0 /* IQUIScrollView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B046240A6D3700933BC0 /* IQUIScrollView+Additions.m */; };
6C93B063240A6D3800933BC0 /* IQUIScrollView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B046240A6D3700933BC0 /* IQUIScrollView+Additions.m */; };
6C93B064240A6D3800933BC0 /* IQUIView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B047240A6D3700933BC0 /* IQUIView+Hierarchy.m */; };
6C93B065240A6D3800933BC0 /* IQUIView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B047240A6D3700933BC0 /* IQUIView+Hierarchy.m */; };
6C93B066240A6D3800933BC0 /* IQUIViewController+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04B240A6D3700933BC0 /* IQUIViewController+Additions.m */; };
6C93B067240A6D3800933BC0 /* IQUIViewController+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04B240A6D3700933BC0 /* IQUIViewController+Additions.m */; };
6C93B068240A6D3800933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04D240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.m */; };
6C93B069240A6D3800933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04D240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.m */; };
6C93B0A8240CA03A00933BC0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37720887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m */; };
6C93B0A9240CA03A00933BC0 /* IQUIScrollView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B046240A6D3700933BC0 /* IQUIScrollView+Additions.m */; };
6C93B0AA240CA03A00933BC0 /* ZLPhotoBrowserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F520886F6100CA7B75 /* ZLPhotoBrowserCell.m */; };
6C93B0AB240CA03A00933BC0 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E72088805800CA7B75 /* UIImage+WebP.m */; };
6C93B0AC240CA03A00933BC0 /* SelectCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37220887D3500CA7B75 /* SelectCollectionCell.m */; };
6C93B0AD240CA03A00933BC0 /* IQNSArray+Sort.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B043240A6D3700933BC0 /* IQNSArray+Sort.m */; };
6C93B0AE240CA03A00933BC0 /* BaseDomain.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FE208DF90100B414B4 /* BaseDomain.m */; };
6C93B0AF240CA03A00933BC0 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F62088805800CA7B75 /* SDWebImageDownloader.m */; };
6C93B0B0240CA03A00933BC0 /* ZLEditVideoController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32020886F6100CA7B75 /* ZLEditVideoController.m */; };
6C93B0B1240CA03A00933BC0 /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40D2088805800CA7B75 /* NSImage+WebCache.m */; };
6C93B0B2240CA03A00933BC0 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F6208DF8F800B414B4 /* MBProgressHUD.m */; };
6C93B0B3240CA03A00933BC0 /* IQPreviousNextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B036240A6D3700933BC0 /* IQPreviousNextView.m */; };
6C93B0B4240CA03A00933BC0 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38420887D6C00CA7B75 /* MASCompositeConstraint.m */; };
6C93B0B5240CA03A00933BC0 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38D20887D6C00CA7B75 /* MASViewConstraint.m */; };
6C93B0B6240CA03A00933BC0 /* BaseRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FF208DF90100B414B4 /* BaseRequest.m */; };
6C93B0B7240CA03A00933BC0 /* ZLPhotoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2FA20886F6100CA7B75 /* ZLPhotoManager.m */; };
6C93B0B8240CA03A00933BC0 /* IQTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B02D240A6D3700933BC0 /* IQTextView.m */; };
6C93B0B9240CA03A00933BC0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4142088805800CA7B75 /* UIView+WebCache.m */; };
6C93B0BA240CA03A00933BC0 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F22088805800CA7B75 /* UIImage+ForceDecode.m */; };
6C93B0BB240CA03A00933BC0 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41A2088805800CA7B75 /* UIButton+WebCache.m */; };
6C93B0BC240CA03A00933BC0 /* FileUploadInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81F208DF96D00B414B4 /* FileUploadInfo.m */; };
6C93B0BD240CA03A00933BC0 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3ED2088805800CA7B75 /* SDWebImageManager.m */; };
6C93B0BE240CA03A00933BC0 /* FileUploadAuthInfoGetRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81A208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m */; };
6C93B0BF240CA03A00933BC0 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40A2088805800CA7B75 /* NSData+ImageContentType.m */; };
6C93B0C0240CA03A00933BC0 /* NSBundle+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4382088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m */; };
6C93B0C1240CA03A00933BC0 /* IQUITextFieldView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B045240A6D3700933BC0 /* IQUITextFieldView+Additions.m */; };
6C93B0C2240CA03A00933BC0 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FF2088805800CA7B75 /* SDWebImagePrefetcher.m */; };
6C93B0C3240CA03A00933BC0 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D4208ED74D00B414B4 /* AFSecurityPolicy.m */; };
6C93B0C4240CA03A00933BC0 /* ZLShowBigImgViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31A20886F6100CA7B75 /* ZLShowBigImgViewController.m */; };
6C93B0C5240CA03A00933BC0 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38820887D6C00CA7B75 /* View+MASAdditions.m */; };
6C93B0C6240CA03A00933BC0 /* IQBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B034240A6D3700933BC0 /* IQBarButtonItem.m */; };
6C93B0C7240CA03A00933BC0 /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F02088805800CA7B75 /* SDWebImageFrame.m */; };
6C93B0C8240CA03A00933BC0 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E82088805800CA7B75 /* MKAnnotationView+WebCache.m */; };
6C93B0C9240CA03A00933BC0 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38620887D6C00CA7B75 /* MASLayoutConstraint.m */; };
6C93B0CA240CA03A00933BC0 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FB2088805800CA7B75 /* UIImage+MultiFormat.m */; };
6C93B0CB240CA03A00933BC0 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CE208ED74D00B414B4 /* AFHTTPSessionManager.m */; };
6C93B0CC240CA03A00933BC0 /* IQUIView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B047240A6D3700933BC0 /* IQUIView+Hierarchy.m */; };
6C93B0CD240CA03A00933BC0 /* xn_base_Client_AF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F8208DF8F800B414B4 /* xn_base_Client_AF.m */; };
6C93B0CE240CA03A00933BC0 /* ZLBigImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F020886F6100CA7B75 /* ZLBigImageCell.m */; };
6C93B0CF240CA03A00933BC0 /* ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30820886F6100CA7B75 /* ZLPhotoBrowser.m */; };
6C93B0D0240CA03A00933BC0 /* IQKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B041240A6D3700933BC0 /* IQKeyboardManager.m */; };
6C93B0D1240CA03A00933BC0 /* IQUIViewController+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04B240A6D3700933BC0 /* IQUIViewController+Additions.m */; };
6C93B0D2240CA03A00933BC0 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41B2088805800CA7B75 /* SDWebImageWebPCoder.m */; };
6C93B0D3240CA03A00933BC0 /* ZLCustomCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30A20886F6100CA7B75 /* ZLCustomCamera.m */; };
6C93B0D4240CA03A00933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B035240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m */; };
6C93B0D5240CA03A00933BC0 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40B2088805800CA7B75 /* UIImageView+WebCache.m */; };
6C93B0D6240CA03A00933BC0 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4132088805800CA7B75 /* UIView+WebCacheOperation.m */; };
6C93B0D7240CA03A00933BC0 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3EF2088805800CA7B75 /* UIImageView+HighlightedWebCache.m */; };
6C93B0D8240CA03A00933BC0 /* ZLEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */; };
6C93B0D9240CA03A00933BC0 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38E20887D6C00CA7B75 /* MASViewAttribute.m */; };
6C93B0DA240CA03A00933BC0 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D1208ED74D00B414B4 /* AFURLRequestSerialization.m */; };
6C93B0DB240CA03A00933BC0 /* UIImage+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30C20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m */; };
6C93B0DC240CA03A00933BC0 /* UIButton+EnlargeTouchArea.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */; };
6C93B0DD240CA03A00933BC0 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4082088805800CA7B75 /* SDWebImageDownloaderOperation.m */; };
6C93B0DE240CA03A00933BC0 /* IQTitleBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B033240A6D3700933BC0 /* IQTitleBarButtonItem.m */; };
6C93B0DF240CA03A00933BC0 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FD2088805800CA7B75 /* SDWebImageCompat.m */; };
6C93B0E0240CA03A00933BC0 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
6C93B0E1240CA03A00933BC0 /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F42088805800CA7B75 /* SDWebImageCodersManager.m */; };
6C93B0E2240CA03A00933BC0 /* ZLPhotoActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE43B208887E600CA7B75 /* ZLPhotoActionSheet.m */; };
6C93B0E3240CA03A00933BC0 /* ZLForceTouchPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F620886F6100CA7B75 /* ZLForceTouchPreviewController.m */; };
6C93B0E4240CA03A00933BC0 /* ZLProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30320886F6100CA7B75 /* ZLProgressHUD.m */; };
6C93B0E5240CA03A00933BC0 /* XNCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F2208DF75C00B414B4 /* XNCameraManager.m */; };
6C93B0E6240CA03A00933BC0 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38B20887D6C00CA7B75 /* MASConstraint.m */; };
6C93B0E7240CA03A00933BC0 /* ZLPhotoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31F20886F6100CA7B75 /* ZLPhotoModel.m */; };
6C93B0E8240CA03A00933BC0 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38520887D6C00CA7B75 /* MASConstraintMaker.m */; };
6C93B0E9240CA03A00933BC0 /* ZLThumbnailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31C20886F6100CA7B75 /* ZLThumbnailViewController.m */; };
6C93B0EA240CA03A00933BC0 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4052088805800CA7B75 /* SDImageCache.m */; };
6C93B0EB240CA03A00933BC0 /* IQToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B031240A6D3700933BC0 /* IQToolbar.m */; };
6C93B0EC240CA03A00933BC0 /* FileUploadAuthInfoGetResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81D208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m */; };
6C93B0ED240CA03A00933BC0 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D0208ED74D00B414B4 /* AFURLSessionManager.m */; };
6C93B0EE240CA03A00933BC0 /* ZLNoAuthorityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31220886F6100CA7B75 /* ZLNoAuthorityViewController.m */; };
6C93B0EF240CA03A00933BC0 /* ToastUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30D20886F6100CA7B75 /* ToastUtils.m */; };
6C93B0F0240CA03A00933BC0 /* ZLPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30B20886F6100CA7B75 /* ZLPlayer.m */; };
6C93B0F1240CA03A00933BC0 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F92088805800CA7B75 /* UIImage+GIF.m */; };
6C93B0F2240CA03A00933BC0 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4022088805800CA7B75 /* SDWebImageCoder.m */; };
6C93B0F3240CA03A00933BC0 /* BaseResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FD208DF90100B414B4 /* BaseResponse.m */; };
6C93B0F4240CA03A00933BC0 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FC2088805800CA7B75 /* SDWebImageCoderHelper.m */; };
6C93B0F5240CA03A00933BC0 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38020887D6C00CA7B75 /* ViewController+MASAdditions.m */; };
6C93B0F6240CA03A00933BC0 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4162088805800CA7B75 /* SDWebImageImageIOCoder.m */; };
6C93B0F7240CA03A00933BC0 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4102088805800CA7B75 /* SDImageCacheConfig.m */; };
6C93B0F8240CA03A00933BC0 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40E2088805800CA7B75 /* SDWebImageGIFCoder.m */; };
6C93B0F9240CA03A00933BC0 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
6C93B0FA240CA03A00933BC0 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38720887D6C00CA7B75 /* NSArray+MASAdditions.m */; };
6C93B0FB240CA03A00933BC0 /* BlueToolManage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA2D8762068DF24004E9E33 /* BlueToolManage.m */; };
6C93B0FC240CA03A00933BC0 /* ZLCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31120886F6100CA7B75 /* ZLCollectionCell.m */; };
6C93B0FD240CA03A00933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04D240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.m */; };
6C93B0FE240CA03A00933BC0 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CD208ED74D00B414B4 /* AFURLResponseSerialization.m */; };
6C93B0FF240CA03A00933BC0 /* RequestData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFC23332176D8C700AE76D9 /* RequestData.m */; };
6C93B100240CA03A00933BC0 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D3208ED74D00B414B4 /* AFNetworkReachabilityManager.m */; };
6C93B101240CA03A00933BC0 /* ZLPhotoConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32220886F6100CA7B75 /* ZLPhotoConfiguration.m */; };
6C93B103240CA03A00933BC0 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD242373DC940057B094 /* libBVLinearGradient.a */; };
6C93B104240CA03A00933BC0 /* libfishhook.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01732372738600C80EA2 /* libfishhook.a */; };
6C93B105240CA03A00933BC0 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01242372713600C80EA2 /* libRCTActionSheet.a */; };
6C93B106240CA03A00933BC0 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A012B2372716000C80EA2 /* libRCTAnimation.a */; };
6C93B107240CA03A00933BC0 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01332372719200C80EA2 /* libRCTGeolocation.a */; };
6C93B108240CA03A00933BC0 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A013A237271C400C80EA2 /* libRCTImage.a */; };
6C93B109240CA03A00933BC0 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A0143237271EA00C80EA2 /* libRCTLinking.a */; };
6C93B10A240CA03A00933BC0 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A014C2372721A00C80EA2 /* libRCTNetwork.a */; };
6C93B10B240CA03A00933BC0 /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01552372725800C80EA2 /* libRCTSettings.a */; };
6C93B10C240CA03A00933BC0 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A015E237272C400C80EA2 /* libRCTText.a */; };
6C93B10D240CA03A00933BC0 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01662372731800C80EA2 /* libRCTVibration.a */; };
6C93B10E240CA03A00933BC0 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A016F2372738600C80EA2 /* libRCTWebSocket.a */; };
6C93B10F240CA03A00933BC0 /* libRCTSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2F2373DC940057B094 /* libRCTSplashScreen.a */; };
6C93B110240CA03A00933BC0 /* libRCTBEEPickerManager.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD292373DC940057B094 /* libRCTBEEPickerManager.a */; };
6C93B111240CA03A00933BC0 /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2C2373DC940057B094 /* libRCTCamera.a */; };
6C93B112240CA03A00933BC0 /* libRCTVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD332373DC940057B094 /* libRCTVideo.a */; };
6C93B113240CA03A00933BC0 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A00AD23726F1000C80EA2 /* libReact.a */; };
6C93B114240CA03A00933BC0 /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD382373DC940057B094 /* libRNImagePicker.a */; };
6C93B115240CA03A00933BC0 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15F23601B0600D66BEB /* UserNotifications.framework */; };
6C93B116240CA03A00933BC0 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0B22BA5E3400292369 /* GLKit.framework */; };
6C93B117240CA03A00933BC0 /* UMAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15323601AF300D66BEB /* UMAnalytics.framework */; };
6C93B118240CA03A00933BC0 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C11720A14C7800269961 /* libz.tbd */; };
6C93B119240CA03A00933BC0 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0922BA5E2400292369 /* libc++.tbd */; };
6C93B11A240CA03A00933BC0 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0722BA5E0E00292369 /* MapKit.framework */; };
6C93B11B240CA03A00933BC0 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0522BA5E0300292369 /* ExternalAccessory.framework */; };
6C93B11C240CA03A00933BC0 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13A20A14CA000269961 /* libsqlite3.tbd */; };
6C93B11D240CA03A00933BC0 /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2DD2088666600CA7B75 /* libresolv.tbd */; };
6C93B11E240CA03A00933BC0 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A4B207227E6009D733A /* AVFoundation.framework */; };
6C93B11F240CA03A00933BC0 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A49207227DD009D733A /* AudioToolbox.framework */; };
6C93B120240CA03A00933BC0 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A47207227CF009D733A /* CoreMotion.framework */; };
6C93B121240CA03A00933BC0 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A45207227C7009D733A /* OpenGLES.framework */; };
6C93B122240CA03A00933BC0 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A92068E7C8004E9E33 /* CoreLocation.framework */; };
6C93B123240CA03A00933BC0 /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A72068E7C1004E9E33 /* CoreBluetooth.framework */; };
6C93B124240CA03A00933BC0 /* AliyunOSSiOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */; };
6C93B125240CA03A00933BC0 /* AMapLocationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0022BA5DD000292369 /* AMapLocationKit.framework */; };
6C93B126240CA03A00933BC0 /* AMapFoundationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79DDB22BA5DD000292369 /* AMapFoundationKit.framework */; };
6C93B127240CA03A00933BC0 /* UMPush.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15423601AF300D66BEB /* UMPush.framework */; };
6C93B128240CA03A00933BC0 /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15523601AF400D66BEB /* UMCommon.framework */; };
6C93B129240CA03A00933BC0 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */; };
6C93B12A240CA03A00933BC0 /* SecurityEnvSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15623601AF400D66BEB /* SecurityEnvSDK.framework */; };
6C93B12C240CA03A00933BC0 /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B03E240A6D3700933BC0 /* IQKeyboardManager.bundle */; };
6C93B12D240CA03A00933BC0 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
6C93B12E240CA03A00933BC0 /* ZLPhotoBrowserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31820886F6100CA7B75 /* ZLPhotoBrowserCell.xib */; };
6C93B12F240CA03A00933BC0 /* ZLPhotoBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31620886F6100CA7B75 /* ZLPhotoBrowser.bundle */; };
6C93B130240CA03A00933BC0 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
6C93B139240CA03E00933BC0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37720887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m */; };
6C93B13A240CA03E00933BC0 /* IQUIScrollView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B046240A6D3700933BC0 /* IQUIScrollView+Additions.m */; };
6C93B13B240CA03E00933BC0 /* ZLPhotoBrowserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F520886F6100CA7B75 /* ZLPhotoBrowserCell.m */; };
6C93B13C240CA03E00933BC0 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E72088805800CA7B75 /* UIImage+WebP.m */; };
6C93B13D240CA03E00933BC0 /* SelectCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37220887D3500CA7B75 /* SelectCollectionCell.m */; };
6C93B13E240CA03E00933BC0 /* IQNSArray+Sort.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B043240A6D3700933BC0 /* IQNSArray+Sort.m */; };
6C93B13F240CA03E00933BC0 /* BaseDomain.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FE208DF90100B414B4 /* BaseDomain.m */; };
6C93B140240CA03E00933BC0 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F62088805800CA7B75 /* SDWebImageDownloader.m */; };
6C93B141240CA03E00933BC0 /* ZLEditVideoController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32020886F6100CA7B75 /* ZLEditVideoController.m */; };
6C93B142240CA03E00933BC0 /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40D2088805800CA7B75 /* NSImage+WebCache.m */; };
6C93B143240CA03E00933BC0 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F6208DF8F800B414B4 /* MBProgressHUD.m */; };
6C93B144240CA03E00933BC0 /* IQPreviousNextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B036240A6D3700933BC0 /* IQPreviousNextView.m */; };
6C93B145240CA03E00933BC0 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38420887D6C00CA7B75 /* MASCompositeConstraint.m */; };
6C93B146240CA03E00933BC0 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38D20887D6C00CA7B75 /* MASViewConstraint.m */; };
6C93B147240CA03E00933BC0 /* BaseRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FF208DF90100B414B4 /* BaseRequest.m */; };
6C93B148240CA03E00933BC0 /* ZLPhotoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2FA20886F6100CA7B75 /* ZLPhotoManager.m */; };
6C93B149240CA03E00933BC0 /* IQTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B02D240A6D3700933BC0 /* IQTextView.m */; };
6C93B14A240CA03E00933BC0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4142088805800CA7B75 /* UIView+WebCache.m */; };
6C93B14B240CA03E00933BC0 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F22088805800CA7B75 /* UIImage+ForceDecode.m */; };
6C93B14C240CA03E00933BC0 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41A2088805800CA7B75 /* UIButton+WebCache.m */; };
6C93B14D240CA03E00933BC0 /* FileUploadInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81F208DF96D00B414B4 /* FileUploadInfo.m */; };
6C93B14E240CA03E00933BC0 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3ED2088805800CA7B75 /* SDWebImageManager.m */; };
6C93B14F240CA03E00933BC0 /* FileUploadAuthInfoGetRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81A208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m */; };
6C93B150240CA03E00933BC0 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40A2088805800CA7B75 /* NSData+ImageContentType.m */; };
6C93B151240CA03E00933BC0 /* NSBundle+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4382088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m */; };
6C93B152240CA03E00933BC0 /* IQUITextFieldView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B045240A6D3700933BC0 /* IQUITextFieldView+Additions.m */; };
6C93B153240CA03E00933BC0 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FF2088805800CA7B75 /* SDWebImagePrefetcher.m */; };
6C93B154240CA03E00933BC0 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D4208ED74D00B414B4 /* AFSecurityPolicy.m */; };
6C93B155240CA03E00933BC0 /* ZLShowBigImgViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31A20886F6100CA7B75 /* ZLShowBigImgViewController.m */; };
6C93B156240CA03E00933BC0 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38820887D6C00CA7B75 /* View+MASAdditions.m */; };
6C93B157240CA03E00933BC0 /* IQBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B034240A6D3700933BC0 /* IQBarButtonItem.m */; };
6C93B158240CA03E00933BC0 /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F02088805800CA7B75 /* SDWebImageFrame.m */; };
6C93B159240CA03E00933BC0 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E82088805800CA7B75 /* MKAnnotationView+WebCache.m */; };
6C93B15A240CA03E00933BC0 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38620887D6C00CA7B75 /* MASLayoutConstraint.m */; };
6C93B15B240CA03E00933BC0 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FB2088805800CA7B75 /* UIImage+MultiFormat.m */; };
6C93B15C240CA03E00933BC0 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CE208ED74D00B414B4 /* AFHTTPSessionManager.m */; };
6C93B15D240CA03E00933BC0 /* IQUIView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B047240A6D3700933BC0 /* IQUIView+Hierarchy.m */; };
6C93B15E240CA03E00933BC0 /* xn_base_Client_AF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F8208DF8F800B414B4 /* xn_base_Client_AF.m */; };
6C93B15F240CA03E00933BC0 /* ZLBigImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F020886F6100CA7B75 /* ZLBigImageCell.m */; };
6C93B160240CA03E00933BC0 /* ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30820886F6100CA7B75 /* ZLPhotoBrowser.m */; };
6C93B161240CA03E00933BC0 /* IQKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B041240A6D3700933BC0 /* IQKeyboardManager.m */; };
6C93B162240CA03E00933BC0 /* IQUIViewController+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04B240A6D3700933BC0 /* IQUIViewController+Additions.m */; };
6C93B163240CA03E00933BC0 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41B2088805800CA7B75 /* SDWebImageWebPCoder.m */; };
6C93B164240CA03E00933BC0 /* ZLCustomCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30A20886F6100CA7B75 /* ZLCustomCamera.m */; };
6C93B165240CA03E00933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B035240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m */; };
6C93B166240CA03E00933BC0 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40B2088805800CA7B75 /* UIImageView+WebCache.m */; };
6C93B167240CA03E00933BC0 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4132088805800CA7B75 /* UIView+WebCacheOperation.m */; };
6C93B168240CA03E00933BC0 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3EF2088805800CA7B75 /* UIImageView+HighlightedWebCache.m */; };
6C93B169240CA03E00933BC0 /* ZLEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */; };
6C93B16A240CA03E00933BC0 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38E20887D6C00CA7B75 /* MASViewAttribute.m */; };
6C93B16B240CA03E00933BC0 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D1208ED74D00B414B4 /* AFURLRequestSerialization.m */; };
6C93B16C240CA03E00933BC0 /* UIImage+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30C20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m */; };
6C93B16D240CA03E00933BC0 /* UIButton+EnlargeTouchArea.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */; };
6C93B16E240CA03E00933BC0 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4082088805800CA7B75 /* SDWebImageDownloaderOperation.m */; };
6C93B16F240CA03E00933BC0 /* IQTitleBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B033240A6D3700933BC0 /* IQTitleBarButtonItem.m */; };
6C93B170240CA03E00933BC0 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FD2088805800CA7B75 /* SDWebImageCompat.m */; };
6C93B171240CA03E00933BC0 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
6C93B172240CA03E00933BC0 /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F42088805800CA7B75 /* SDWebImageCodersManager.m */; };
6C93B173240CA03E00933BC0 /* ZLPhotoActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE43B208887E600CA7B75 /* ZLPhotoActionSheet.m */; };
6C93B174240CA03E00933BC0 /* ZLForceTouchPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F620886F6100CA7B75 /* ZLForceTouchPreviewController.m */; };
6C93B175240CA03E00933BC0 /* ZLProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30320886F6100CA7B75 /* ZLProgressHUD.m */; };
6C93B176240CA03E00933BC0 /* XNCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F2208DF75C00B414B4 /* XNCameraManager.m */; };
6C93B177240CA03E00933BC0 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38B20887D6C00CA7B75 /* MASConstraint.m */; };
6C93B178240CA03E00933BC0 /* ZLPhotoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31F20886F6100CA7B75 /* ZLPhotoModel.m */; };
6C93B179240CA03E00933BC0 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38520887D6C00CA7B75 /* MASConstraintMaker.m */; };
6C93B17A240CA03E00933BC0 /* ZLThumbnailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31C20886F6100CA7B75 /* ZLThumbnailViewController.m */; };
6C93B17B240CA03E00933BC0 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4052088805800CA7B75 /* SDImageCache.m */; };
6C93B17C240CA03E00933BC0 /* IQToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B031240A6D3700933BC0 /* IQToolbar.m */; };
6C93B17D240CA03E00933BC0 /* FileUploadAuthInfoGetResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81D208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m */; };
6C93B17E240CA03E00933BC0 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D0208ED74D00B414B4 /* AFURLSessionManager.m */; };
6C93B17F240CA03E00933BC0 /* ZLNoAuthorityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31220886F6100CA7B75 /* ZLNoAuthorityViewController.m */; };
6C93B180240CA03E00933BC0 /* ToastUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30D20886F6100CA7B75 /* ToastUtils.m */; };
6C93B181240CA03E00933BC0 /* ZLPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30B20886F6100CA7B75 /* ZLPlayer.m */; };
6C93B182240CA03E00933BC0 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F92088805800CA7B75 /* UIImage+GIF.m */; };
6C93B183240CA03E00933BC0 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4022088805800CA7B75 /* SDWebImageCoder.m */; };
6C93B184240CA03E00933BC0 /* BaseResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FD208DF90100B414B4 /* BaseResponse.m */; };
6C93B185240CA03E00933BC0 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FC2088805800CA7B75 /* SDWebImageCoderHelper.m */; };
6C93B186240CA03E00933BC0 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38020887D6C00CA7B75 /* ViewController+MASAdditions.m */; };
6C93B187240CA03E00933BC0 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4162088805800CA7B75 /* SDWebImageImageIOCoder.m */; };
6C93B188240CA03E00933BC0 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4102088805800CA7B75 /* SDImageCacheConfig.m */; };
6C93B189240CA03E00933BC0 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40E2088805800CA7B75 /* SDWebImageGIFCoder.m */; };
6C93B18A240CA03E00933BC0 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
6C93B18B240CA03E00933BC0 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38720887D6C00CA7B75 /* NSArray+MASAdditions.m */; };
6C93B18C240CA03E00933BC0 /* BlueToolManage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA2D8762068DF24004E9E33 /* BlueToolManage.m */; };
6C93B18D240CA03E00933BC0 /* ZLCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31120886F6100CA7B75 /* ZLCollectionCell.m */; };
6C93B18E240CA03E00933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04D240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.m */; };
6C93B18F240CA03E00933BC0 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CD208ED74D00B414B4 /* AFURLResponseSerialization.m */; };
6C93B190240CA03E00933BC0 /* RequestData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFC23332176D8C700AE76D9 /* RequestData.m */; };
6C93B191240CA03E00933BC0 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D3208ED74D00B414B4 /* AFNetworkReachabilityManager.m */; };
6C93B192240CA03E00933BC0 /* ZLPhotoConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32220886F6100CA7B75 /* ZLPhotoConfiguration.m */; };
6C93B194240CA03E00933BC0 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD242373DC940057B094 /* libBVLinearGradient.a */; };
6C93B195240CA03E00933BC0 /* libfishhook.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01732372738600C80EA2 /* libfishhook.a */; };
6C93B196240CA03E00933BC0 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01242372713600C80EA2 /* libRCTActionSheet.a */; };
6C93B197240CA03E00933BC0 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A012B2372716000C80EA2 /* libRCTAnimation.a */; };
6C93B198240CA03E00933BC0 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01332372719200C80EA2 /* libRCTGeolocation.a */; };
6C93B199240CA03E00933BC0 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A013A237271C400C80EA2 /* libRCTImage.a */; };
6C93B19A240CA03E00933BC0 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A0143237271EA00C80EA2 /* libRCTLinking.a */; };
6C93B19B240CA03E00933BC0 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A014C2372721A00C80EA2 /* libRCTNetwork.a */; };
6C93B19C240CA03E00933BC0 /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01552372725800C80EA2 /* libRCTSettings.a */; };
6C93B19D240CA03E00933BC0 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A015E237272C400C80EA2 /* libRCTText.a */; };
6C93B19E240CA03E00933BC0 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01662372731800C80EA2 /* libRCTVibration.a */; };
6C93B19F240CA03E00933BC0 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A016F2372738600C80EA2 /* libRCTWebSocket.a */; };
6C93B1A0240CA03E00933BC0 /* libRCTSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2F2373DC940057B094 /* libRCTSplashScreen.a */; };
6C93B1A1240CA03E00933BC0 /* libRCTBEEPickerManager.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD292373DC940057B094 /* libRCTBEEPickerManager.a */; };
6C93B1A2240CA03E00933BC0 /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2C2373DC940057B094 /* libRCTCamera.a */; };
6C93B1A3240CA03E00933BC0 /* libRCTVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD332373DC940057B094 /* libRCTVideo.a */; };
6C93B1A4240CA03E00933BC0 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A00AD23726F1000C80EA2 /* libReact.a */; };
6C93B1A5240CA03E00933BC0 /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD382373DC940057B094 /* libRNImagePicker.a */; };
6C93B1A6240CA03E00933BC0 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15F23601B0600D66BEB /* UserNotifications.framework */; };
6C93B1A7240CA03E00933BC0 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0B22BA5E3400292369 /* GLKit.framework */; };
6C93B1A8240CA03E00933BC0 /* UMAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15323601AF300D66BEB /* UMAnalytics.framework */; };
6C93B1A9240CA03E00933BC0 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C11720A14C7800269961 /* libz.tbd */; };
6C93B1AA240CA03E00933BC0 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0922BA5E2400292369 /* libc++.tbd */; };
6C93B1AB240CA03E00933BC0 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0722BA5E0E00292369 /* MapKit.framework */; };
6C93B1AC240CA03E00933BC0 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0522BA5E0300292369 /* ExternalAccessory.framework */; };
6C93B1AD240CA03E00933BC0 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13A20A14CA000269961 /* libsqlite3.tbd */; };
6C93B1AE240CA03E00933BC0 /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2DD2088666600CA7B75 /* libresolv.tbd */; };
6C93B1AF240CA03E00933BC0 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A4B207227E6009D733A /* AVFoundation.framework */; };
6C93B1B0240CA03E00933BC0 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A49207227DD009D733A /* AudioToolbox.framework */; };
6C93B1B1240CA03E00933BC0 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A47207227CF009D733A /* CoreMotion.framework */; };
6C93B1B2240CA03E00933BC0 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A45207227C7009D733A /* OpenGLES.framework */; };
6C93B1B3240CA03E00933BC0 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A92068E7C8004E9E33 /* CoreLocation.framework */; };
6C93B1B4240CA03E00933BC0 /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A72068E7C1004E9E33 /* CoreBluetooth.framework */; };
6C93B1B5240CA03E00933BC0 /* AliyunOSSiOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */; };
6C93B1B6240CA03E00933BC0 /* AMapLocationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0022BA5DD000292369 /* AMapLocationKit.framework */; };
6C93B1B7240CA03E00933BC0 /* AMapFoundationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79DDB22BA5DD000292369 /* AMapFoundationKit.framework */; };
6C93B1B8240CA03E00933BC0 /* UMPush.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15423601AF300D66BEB /* UMPush.framework */; };
6C93B1B9240CA03E00933BC0 /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15523601AF400D66BEB /* UMCommon.framework */; };
6C93B1BA240CA03E00933BC0 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */; };
6C93B1BB240CA03E00933BC0 /* SecurityEnvSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15623601AF400D66BEB /* SecurityEnvSDK.framework */; };
6C93B1BD240CA03E00933BC0 /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B03E240A6D3700933BC0 /* IQKeyboardManager.bundle */; };
6C93B1BE240CA03E00933BC0 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
6C93B1BF240CA03E00933BC0 /* ZLPhotoBrowserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31820886F6100CA7B75 /* ZLPhotoBrowserCell.xib */; };
6C93B1C0240CA03E00933BC0 /* ZLPhotoBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31620886F6100CA7B75 /* ZLPhotoBrowser.bundle */; };
6C93B1C1240CA03E00933BC0 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
6C93B1CA240CA04200933BC0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37720887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m */; };
6C93B1CB240CA04200933BC0 /* IQUIScrollView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B046240A6D3700933BC0 /* IQUIScrollView+Additions.m */; };
6C93B1CC240CA04200933BC0 /* ZLPhotoBrowserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F520886F6100CA7B75 /* ZLPhotoBrowserCell.m */; };
6C93B1CD240CA04200933BC0 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E72088805800CA7B75 /* UIImage+WebP.m */; };
6C93B1CE240CA04200933BC0 /* SelectCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37220887D3500CA7B75 /* SelectCollectionCell.m */; };
6C93B1CF240CA04200933BC0 /* IQNSArray+Sort.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B043240A6D3700933BC0 /* IQNSArray+Sort.m */; };
6C93B1D0240CA04200933BC0 /* BaseDomain.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FE208DF90100B414B4 /* BaseDomain.m */; };
6C93B1D1240CA04200933BC0 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F62088805800CA7B75 /* SDWebImageDownloader.m */; };
6C93B1D2240CA04200933BC0 /* ZLEditVideoController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32020886F6100CA7B75 /* ZLEditVideoController.m */; };
6C93B1D3240CA04200933BC0 /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40D2088805800CA7B75 /* NSImage+WebCache.m */; };
6C93B1D4240CA04200933BC0 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F6208DF8F800B414B4 /* MBProgressHUD.m */; };
6C93B1D5240CA04200933BC0 /* IQPreviousNextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B036240A6D3700933BC0 /* IQPreviousNextView.m */; };
6C93B1D6240CA04200933BC0 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38420887D6C00CA7B75 /* MASCompositeConstraint.m */; };
6C93B1D7240CA04200933BC0 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38D20887D6C00CA7B75 /* MASViewConstraint.m */; };
6C93B1D8240CA04200933BC0 /* BaseRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FF208DF90100B414B4 /* BaseRequest.m */; };
6C93B1D9240CA04200933BC0 /* ZLPhotoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2FA20886F6100CA7B75 /* ZLPhotoManager.m */; };
6C93B1DA240CA04200933BC0 /* IQTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B02D240A6D3700933BC0 /* IQTextView.m */; };
6C93B1DB240CA04200933BC0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4142088805800CA7B75 /* UIView+WebCache.m */; };
6C93B1DC240CA04200933BC0 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F22088805800CA7B75 /* UIImage+ForceDecode.m */; };
6C93B1DD240CA04200933BC0 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41A2088805800CA7B75 /* UIButton+WebCache.m */; };
6C93B1DE240CA04200933BC0 /* FileUploadInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81F208DF96D00B414B4 /* FileUploadInfo.m */; };
6C93B1DF240CA04200933BC0 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3ED2088805800CA7B75 /* SDWebImageManager.m */; };
6C93B1E0240CA04200933BC0 /* FileUploadAuthInfoGetRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81A208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m */; };
6C93B1E1240CA04200933BC0 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40A2088805800CA7B75 /* NSData+ImageContentType.m */; };
6C93B1E2240CA04200933BC0 /* NSBundle+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4382088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m */; };
6C93B1E3240CA04200933BC0 /* IQUITextFieldView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B045240A6D3700933BC0 /* IQUITextFieldView+Additions.m */; };
6C93B1E4240CA04200933BC0 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FF2088805800CA7B75 /* SDWebImagePrefetcher.m */; };
6C93B1E5240CA04200933BC0 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D4208ED74D00B414B4 /* AFSecurityPolicy.m */; };
6C93B1E6240CA04200933BC0 /* ZLShowBigImgViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31A20886F6100CA7B75 /* ZLShowBigImgViewController.m */; };
6C93B1E7240CA04200933BC0 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38820887D6C00CA7B75 /* View+MASAdditions.m */; };
6C93B1E8240CA04200933BC0 /* IQBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B034240A6D3700933BC0 /* IQBarButtonItem.m */; };
6C93B1E9240CA04200933BC0 /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F02088805800CA7B75 /* SDWebImageFrame.m */; };
6C93B1EA240CA04200933BC0 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E82088805800CA7B75 /* MKAnnotationView+WebCache.m */; };
6C93B1EB240CA04200933BC0 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38620887D6C00CA7B75 /* MASLayoutConstraint.m */; };
6C93B1EC240CA04200933BC0 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FB2088805800CA7B75 /* UIImage+MultiFormat.m */; };
6C93B1ED240CA04200933BC0 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CE208ED74D00B414B4 /* AFHTTPSessionManager.m */; };
6C93B1EE240CA04200933BC0 /* IQUIView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B047240A6D3700933BC0 /* IQUIView+Hierarchy.m */; };
6C93B1EF240CA04200933BC0 /* xn_base_Client_AF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F8208DF8F800B414B4 /* xn_base_Client_AF.m */; };
6C93B1F0240CA04200933BC0 /* ZLBigImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F020886F6100CA7B75 /* ZLBigImageCell.m */; };
6C93B1F1240CA04200933BC0 /* ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30820886F6100CA7B75 /* ZLPhotoBrowser.m */; };
6C93B1F2240CA04200933BC0 /* IQKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B041240A6D3700933BC0 /* IQKeyboardManager.m */; };
6C93B1F3240CA04200933BC0 /* IQUIViewController+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04B240A6D3700933BC0 /* IQUIViewController+Additions.m */; };
6C93B1F4240CA04200933BC0 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41B2088805800CA7B75 /* SDWebImageWebPCoder.m */; };
6C93B1F5240CA04200933BC0 /* ZLCustomCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30A20886F6100CA7B75 /* ZLCustomCamera.m */; };
6C93B1F6240CA04200933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B035240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m */; };
6C93B1F7240CA04200933BC0 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40B2088805800CA7B75 /* UIImageView+WebCache.m */; };
6C93B1F8240CA04200933BC0 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4132088805800CA7B75 /* UIView+WebCacheOperation.m */; };
6C93B1F9240CA04200933BC0 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3EF2088805800CA7B75 /* UIImageView+HighlightedWebCache.m */; };
6C93B1FA240CA04200933BC0 /* ZLEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */; };
6C93B1FB240CA04200933BC0 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38E20887D6C00CA7B75 /* MASViewAttribute.m */; };
6C93B1FC240CA04200933BC0 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D1208ED74D00B414B4 /* AFURLRequestSerialization.m */; };
6C93B1FD240CA04200933BC0 /* UIImage+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30C20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m */; };
6C93B1FE240CA04200933BC0 /* UIButton+EnlargeTouchArea.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */; };
6C93B1FF240CA04200933BC0 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4082088805800CA7B75 /* SDWebImageDownloaderOperation.m */; };
6C93B200240CA04200933BC0 /* IQTitleBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B033240A6D3700933BC0 /* IQTitleBarButtonItem.m */; };
6C93B201240CA04200933BC0 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FD2088805800CA7B75 /* SDWebImageCompat.m */; };
6C93B202240CA04200933BC0 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
6C93B203240CA04200933BC0 /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F42088805800CA7B75 /* SDWebImageCodersManager.m */; };
6C93B204240CA04200933BC0 /* ZLPhotoActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE43B208887E600CA7B75 /* ZLPhotoActionSheet.m */; };
6C93B205240CA04200933BC0 /* ZLForceTouchPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F620886F6100CA7B75 /* ZLForceTouchPreviewController.m */; };
6C93B206240CA04200933BC0 /* ZLProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30320886F6100CA7B75 /* ZLProgressHUD.m */; };
6C93B207240CA04200933BC0 /* XNCameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7F2208DF75C00B414B4 /* XNCameraManager.m */; };
6C93B208240CA04200933BC0 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38B20887D6C00CA7B75 /* MASConstraint.m */; };
6C93B209240CA04200933BC0 /* ZLPhotoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31F20886F6100CA7B75 /* ZLPhotoModel.m */; };
6C93B20A240CA04200933BC0 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38520887D6C00CA7B75 /* MASConstraintMaker.m */; };
6C93B20B240CA04200933BC0 /* ZLThumbnailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31C20886F6100CA7B75 /* ZLThumbnailViewController.m */; };
6C93B20C240CA04200933BC0 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4052088805800CA7B75 /* SDImageCache.m */; };
6C93B20D240CA04200933BC0 /* IQToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B031240A6D3700933BC0 /* IQToolbar.m */; };
6C93B20E240CA04200933BC0 /* FileUploadAuthInfoGetResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B81D208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m */; };
6C93B20F240CA04200933BC0 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D0208ED74D00B414B4 /* AFURLSessionManager.m */; };
6C93B210240CA04200933BC0 /* ZLNoAuthorityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31220886F6100CA7B75 /* ZLNoAuthorityViewController.m */; };
6C93B211240CA04200933BC0 /* ToastUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30D20886F6100CA7B75 /* ToastUtils.m */; };
6C93B212240CA04200933BC0 /* ZLPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30B20886F6100CA7B75 /* ZLPlayer.m */; };
6C93B213240CA04200933BC0 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F92088805800CA7B75 /* UIImage+GIF.m */; };
6C93B214240CA04200933BC0 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4022088805800CA7B75 /* SDWebImageCoder.m */; };
6C93B215240CA04200933BC0 /* BaseResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B7FD208DF90100B414B4 /* BaseResponse.m */; };
6C93B216240CA04200933BC0 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FC2088805800CA7B75 /* SDWebImageCoderHelper.m */; };
6C93B217240CA04200933BC0 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38020887D6C00CA7B75 /* ViewController+MASAdditions.m */; };
6C93B218240CA04200933BC0 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4162088805800CA7B75 /* SDWebImageImageIOCoder.m */; };
6C93B219240CA04200933BC0 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4102088805800CA7B75 /* SDImageCacheConfig.m */; };
6C93B21A240CA04200933BC0 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40E2088805800CA7B75 /* SDWebImageGIFCoder.m */; };
6C93B21B240CA04200933BC0 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
6C93B21C240CA04200933BC0 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38720887D6C00CA7B75 /* NSArray+MASAdditions.m */; };
6C93B21D240CA04200933BC0 /* BlueToolManage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA2D8762068DF24004E9E33 /* BlueToolManage.m */; };
6C93B21E240CA04200933BC0 /* ZLCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31120886F6100CA7B75 /* ZLCollectionCell.m */; };
6C93B21F240CA04200933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C93B04D240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.m */; };
6C93B220240CA04200933BC0 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8CD208ED74D00B414B4 /* AFURLResponseSerialization.m */; };
6C93B221240CA04200933BC0 /* RequestData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFC23332176D8C700AE76D9 /* RequestData.m */; };
6C93B222240CA04200933BC0 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C10B8D3208ED74D00B414B4 /* AFNetworkReachabilityManager.m */; };
6C93B223240CA04200933BC0 /* ZLPhotoConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32220886F6100CA7B75 /* ZLPhotoConfiguration.m */; };
6C93B225240CA04200933BC0 /* libBVLinearGradient.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD242373DC940057B094 /* libBVLinearGradient.a */; };
6C93B226240CA04200933BC0 /* libfishhook.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01732372738600C80EA2 /* libfishhook.a */; };
6C93B227240CA04200933BC0 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01242372713600C80EA2 /* libRCTActionSheet.a */; };
6C93B228240CA04200933BC0 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A012B2372716000C80EA2 /* libRCTAnimation.a */; };
6C93B229240CA04200933BC0 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01332372719200C80EA2 /* libRCTGeolocation.a */; };
6C93B22A240CA04200933BC0 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A013A237271C400C80EA2 /* libRCTImage.a */; };
6C93B22B240CA04200933BC0 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A0143237271EA00C80EA2 /* libRCTLinking.a */; };
6C93B22C240CA04200933BC0 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A014C2372721A00C80EA2 /* libRCTNetwork.a */; };
6C93B22D240CA04200933BC0 /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01552372725800C80EA2 /* libRCTSettings.a */; };
6C93B22E240CA04200933BC0 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A015E237272C400C80EA2 /* libRCTText.a */; };
6C93B22F240CA04200933BC0 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A01662372731800C80EA2 /* libRCTVibration.a */; };
6C93B230240CA04200933BC0 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A016F2372738600C80EA2 /* libRCTWebSocket.a */; };
6C93B231240CA04200933BC0 /* libRCTSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2F2373DC940057B094 /* libRCTSplashScreen.a */; };
6C93B232240CA04200933BC0 /* libRCTBEEPickerManager.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD292373DC940057B094 /* libRCTBEEPickerManager.a */; };
6C93B233240CA04200933BC0 /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD2C2373DC940057B094 /* libRCTCamera.a */; };
6C93B234240CA04200933BC0 /* libRCTVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD332373DC940057B094 /* libRCTVideo.a */; };
6C93B235240CA04200933BC0 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C4A00AD23726F1000C80EA2 /* libReact.a */; };
6C93B236240CA04200933BC0 /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C70BD382373DC940057B094 /* libRNImagePicker.a */; };
6C93B237240CA04200933BC0 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15F23601B0600D66BEB /* UserNotifications.framework */; };
6C93B238240CA04200933BC0 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0B22BA5E3400292369 /* GLKit.framework */; };
6C93B239240CA04200933BC0 /* UMAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15323601AF300D66BEB /* UMAnalytics.framework */; };
6C93B23A240CA04200933BC0 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C11720A14C7800269961 /* libz.tbd */; };
6C93B23B240CA04200933BC0 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0922BA5E2400292369 /* libc++.tbd */; };
6C93B23C240CA04200933BC0 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0722BA5E0E00292369 /* MapKit.framework */; };
6C93B23D240CA04200933BC0 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0522BA5E0300292369 /* ExternalAccessory.framework */; };
6C93B23E240CA04200933BC0 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13A20A14CA000269961 /* libsqlite3.tbd */; };
6C93B23F240CA04200933BC0 /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2DD2088666600CA7B75 /* libresolv.tbd */; };
6C93B240240CA04200933BC0 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A4B207227E6009D733A /* AVFoundation.framework */; };
6C93B241240CA04200933BC0 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A49207227DD009D733A /* AudioToolbox.framework */; };
6C93B242240CA04200933BC0 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A47207227CF009D733A /* CoreMotion.framework */; };
6C93B243240CA04200933BC0 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A45207227C7009D733A /* OpenGLES.framework */; };
6C93B244240CA04200933BC0 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A92068E7C8004E9E33 /* CoreLocation.framework */; };
6C93B245240CA04200933BC0 /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A72068E7C1004E9E33 /* CoreBluetooth.framework */; };
6C93B246240CA04200933BC0 /* AliyunOSSiOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */; };
6C93B247240CA04200933BC0 /* AMapLocationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79E0022BA5DD000292369 /* AMapLocationKit.framework */; };
6C93B248240CA04200933BC0 /* AMapFoundationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BE79DDB22BA5DD000292369 /* AMapFoundationKit.framework */; };
6C93B249240CA04200933BC0 /* UMPush.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15423601AF300D66BEB /* UMPush.framework */; };
6C93B24A240CA04200933BC0 /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15523601AF400D66BEB /* UMCommon.framework */; };
6C93B24B240CA04200933BC0 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */; };
6C93B24C240CA04200933BC0 /* SecurityEnvSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2FC15623601AF400D66BEB /* SecurityEnvSDK.framework */; };
6C93B24E240CA04200933BC0 /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B03E240A6D3700933BC0 /* IQKeyboardManager.bundle */; };
6C93B24F240CA04200933BC0 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
6C93B250240CA04200933BC0 /* ZLPhotoBrowserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31820886F6100CA7B75 /* ZLPhotoBrowserCell.xib */; };
6C93B251240CA04200933BC0 /* ZLPhotoBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31620886F6100CA7B75 /* ZLPhotoBrowser.bundle */; };
6C93B252240CA04200933BC0 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
6C93B263240CA23400933BC0 /* 犀牛企业云UAT.plist in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B25A240CA23400933BC0 /* 犀牛企业云UAT.plist */; };
6C93B265240CA23400933BC0 /* 平安地铁测试环境.plist in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B25B240CA23400933BC0 /* 平安地铁测试环境.plist */; };
6C93B3B5240CC88D00933BC0 /* 犀牛企业云开发.plist in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B25C240CA23400933BC0 /* 犀牛企业云开发.plist */; };
6C93B3B6240CC89F00933BC0 /* 犀牛企业云测试.plist in Resources */ = {isa = PBXBuildFile; fileRef = 6C93B25D240CA23400933BC0 /* 犀牛企业云测试.plist */; };
6CA2D8772068DF24004E9E33 /* BlueToolManage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA2D8762068DF24004E9E33 /* BlueToolManage.m */; };
6CA2D8A82068E7C1004E9E33 /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A72068E7C1004E9E33 /* CoreBluetooth.framework */; };
6CA2D8AA2068E7C9004E9E33 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A92068E7C8004E9E33 /* CoreLocation.framework */; };
6CA360FA240CCFCF00941ED7 /* 平安地铁生产环境.plist in Resources */ = {isa = PBXBuildFile; fileRef = 6CA360F9240CCFCF00941ED7 /* 平安地铁生产环境.plist */; };
6CC0C13920A14C7800269961 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C11720A14C7800269961 /* libz.tbd */; };
6CC0C1A920A19FD300269961 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C11720A14C7800269961 /* libz.tbd */; };
6CC0C1AA20A1A03500269961 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13A20A14CA000269961 /* libsqlite3.tbd */; };
6CC0C1AB20A1A04700269961 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13A20A14CA000269961 /* libsqlite3.tbd */; };
6CDEE2DC208864CA00CA7B75 /* AliyunOSSiOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */; };
6CDEE2DE2088666600CA7B75 /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2DD2088666600CA7B75 /* libresolv.tbd */; };
6CDEE34220886F6100CA7B75 /* ZLBigImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F020886F6100CA7B75 /* ZLBigImageCell.m */; };
6CDEE34320886F6100CA7B75 /* ZLPhotoBrowserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F520886F6100CA7B75 /* ZLPhotoBrowserCell.m */; };
6CDEE34420886F6100CA7B75 /* ZLForceTouchPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2F620886F6100CA7B75 /* ZLForceTouchPreviewController.m */; };
6CDEE34520886F6100CA7B75 /* ZLPhotoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE2FA20886F6100CA7B75 /* ZLPhotoManager.m */; };
6CDEE34720886F6100CA7B75 /* ZLProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30320886F6100CA7B75 /* ZLProgressHUD.m */; };
6CDEE34A20886F6100CA7B75 /* ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30820886F6100CA7B75 /* ZLPhotoBrowser.m */; };
6CDEE34B20886F6100CA7B75 /* ZLCustomCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30A20886F6100CA7B75 /* ZLCustomCamera.m */; };
6CDEE34C20886F6100CA7B75 /* ZLPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30B20886F6100CA7B75 /* ZLPlayer.m */; };
6CDEE34D20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30C20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m */; };
6CDEE34E20886F6200CA7B75 /* ToastUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30D20886F6100CA7B75 /* ToastUtils.m */; };
6CDEE34F20886F6200CA7B75 /* ZLEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */; };
6CDEE35120886F6200CA7B75 /* ZLCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31120886F6100CA7B75 /* ZLCollectionCell.m */; };
6CDEE35220886F6200CA7B75 /* ZLNoAuthorityViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31220886F6100CA7B75 /* ZLNoAuthorityViewController.m */; };
6CDEE35320886F6200CA7B75 /* UIButton+EnlargeTouchArea.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */; };
6CDEE35420886F6200CA7B75 /* ZLPhotoBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31620886F6100CA7B75 /* ZLPhotoBrowser.bundle */; };
6CDEE35620886F6200CA7B75 /* ZLPhotoBrowserCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE31820886F6100CA7B75 /* ZLPhotoBrowserCell.xib */; };
6CDEE35720886F6200CA7B75 /* ZLShowBigImgViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31A20886F6100CA7B75 /* ZLShowBigImgViewController.m */; };
6CDEE35820886F6200CA7B75 /* ZLThumbnailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31C20886F6100CA7B75 /* ZLThumbnailViewController.m */; };
6CDEE35A20886F6200CA7B75 /* ZLPhotoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31F20886F6100CA7B75 /* ZLPhotoModel.m */; };
6CDEE35B20886F6200CA7B75 /* ZLEditVideoController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32020886F6100CA7B75 /* ZLEditVideoController.m */; };
6CDEE35C20886F6200CA7B75 /* ZLPhotoConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE32220886F6100CA7B75 /* ZLPhotoConfiguration.m */; };
6CDEE37420887D3600CA7B75 /* SelectCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37220887D3500CA7B75 /* SelectCollectionCell.m */; };
6CDEE38F20887D6D00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE37720887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m */; };
6CDEE39020887D6D00CA7B75 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38020887D6C00CA7B75 /* ViewController+MASAdditions.m */; };
6CDEE39120887D6D00CA7B75 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38420887D6C00CA7B75 /* MASCompositeConstraint.m */; };
6CDEE39220887D6D00CA7B75 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38520887D6C00CA7B75 /* MASConstraintMaker.m */; };
6CDEE39320887D6D00CA7B75 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38620887D6C00CA7B75 /* MASLayoutConstraint.m */; };
6CDEE39420887D6D00CA7B75 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38720887D6C00CA7B75 /* NSArray+MASAdditions.m */; };
6CDEE39520887D6D00CA7B75 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38820887D6C00CA7B75 /* View+MASAdditions.m */; };
6CDEE39620887D6D00CA7B75 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38B20887D6C00CA7B75 /* MASConstraint.m */; };
6CDEE39720887D6D00CA7B75 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38D20887D6C00CA7B75 /* MASViewConstraint.m */; };
6CDEE39820887D6D00CA7B75 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38E20887D6C00CA7B75 /* MASViewAttribute.m */; };
6CDEE41D2088805800CA7B75 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E72088805800CA7B75 /* UIImage+WebP.m */; };
6CDEE41E2088805900CA7B75 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3E82088805800CA7B75 /* MKAnnotationView+WebCache.m */; };
6CDEE41F2088805900CA7B75 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3ED2088805800CA7B75 /* SDWebImageManager.m */; };
6CDEE4202088805900CA7B75 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3EF2088805800CA7B75 /* UIImageView+HighlightedWebCache.m */; };
6CDEE4212088805900CA7B75 /* SDWebImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F02088805800CA7B75 /* SDWebImageFrame.m */; };
6CDEE4222088805900CA7B75 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F22088805800CA7B75 /* UIImage+ForceDecode.m */; };
6CDEE4232088805900CA7B75 /* SDWebImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F42088805800CA7B75 /* SDWebImageCodersManager.m */; };
6CDEE4242088805900CA7B75 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F62088805800CA7B75 /* SDWebImageDownloader.m */; };
6CDEE4252088805900CA7B75 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3F92088805800CA7B75 /* UIImage+GIF.m */; };
6CDEE4262088805900CA7B75 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FB2088805800CA7B75 /* UIImage+MultiFormat.m */; };
6CDEE4272088805900CA7B75 /* SDWebImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FC2088805800CA7B75 /* SDWebImageCoderHelper.m */; };
6CDEE4282088805900CA7B75 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FD2088805800CA7B75 /* SDWebImageCompat.m */; };
6CDEE4292088805900CA7B75 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE3FF2088805800CA7B75 /* SDWebImagePrefetcher.m */; };
6CDEE42A2088805900CA7B75 /* SDWebImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4022088805800CA7B75 /* SDWebImageCoder.m */; };
6CDEE42B2088805900CA7B75 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4052088805800CA7B75 /* SDImageCache.m */; };
6CDEE42C2088805900CA7B75 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4082088805800CA7B75 /* SDWebImageDownloaderOperation.m */; };
6CDEE42D2088805900CA7B75 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40A2088805800CA7B75 /* NSData+ImageContentType.m */; };
6CDEE42E2088805900CA7B75 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40B2088805800CA7B75 /* UIImageView+WebCache.m */; };
6CDEE42F2088805900CA7B75 /* NSImage+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40D2088805800CA7B75 /* NSImage+WebCache.m */; };
6CDEE4302088805900CA7B75 /* SDWebImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE40E2088805800CA7B75 /* SDWebImageGIFCoder.m */; };
6CDEE4312088805900CA7B75 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4102088805800CA7B75 /* SDImageCacheConfig.m */; };
6CDEE4322088805900CA7B75 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4132088805800CA7B75 /* UIView+WebCacheOperation.m */; };
6CDEE4332088805900CA7B75 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4142088805800CA7B75 /* UIView+WebCache.m */; };
6CDEE4342088805900CA7B75 /* SDWebImageImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4162088805800CA7B75 /* SDWebImageImageIOCoder.m */; };
6CDEE4352088805900CA7B75 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41A2088805800CA7B75 /* UIButton+WebCache.m */; };
6CDEE4362088805900CA7B75 /* SDWebImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41B2088805800CA7B75 /* SDWebImageWebPCoder.m */; };
6CDEE4392088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE4382088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m */; };
6CDEE43C208887E600CA7B75 /* ZLPhotoActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE43B208887E600CA7B75 /* ZLPhotoActionSheet.m */; };
6CDEE4A5208DDC7900CA7B75 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */; };
A0F898A909A3412D9E4AA0B3 /* libRCTVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B18A660CBCB47E0915B2C9C /* libRCTVideo.a */; };
B8896D9FD26247EABAEEE92F /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8F0FD84ED5994267BAC9DE0C /* libRNImagePicker.a */; };
EC68E8C3660A497D921CE728 /* libRCTSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7222665F4D2845B880021C44 /* libRCTSplashScreen.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
remoteInfo = metroApp;
};
2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
remoteInfo = "metroApp-tvOS";
};
6C4A00AC23726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
remoteInfo = React;
};
6C4A00AE23726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
remoteInfo = "React-tvOS";
};
6C4A00B023726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
remoteInfo = yoga;
};
6C4A00B223726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
remoteInfo = "yoga-tvOS";
};
6C4A00B423726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
remoteInfo = cxxreact;
};
6C4A00B623726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
remoteInfo = "cxxreact-tvOS";
};
6C4A00B823726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
remoteInfo = jschelpers;
};
6C4A00BA23726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
remoteInfo = "jschelpers-tvOS";
};
6C4A00BC23726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
remoteInfo = jsinspector;
};
6C4A00BE23726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
remoteInfo = "jsinspector-tvOS";
};
6C4A00C023726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
remoteInfo = "third-party";
};
6C4A00C223726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
remoteInfo = "third-party-tvOS";
};
6C4A00C423726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 139D7E881E25C6D100323FB7;
remoteInfo = "double-conversion";
};
6C4A00C623726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D383D621EBD27B9005632C8;
remoteInfo = "double-conversion-tvOS";
};
6C4A00C823726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
remoteInfo = privatedata;
};
6C4A00CA23726F1000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
remoteInfo = "privatedata-tvOS";
};
6C4A01232372713600C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A011F2372713500C80EA2 /* RCTActionSheet.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTActionSheet;
};
6C4A012A2372716000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01252372716000C80EA2 /* RCTAnimation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTAnimation;
};
6C4A012C2372716000C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01252372716000C80EA2 /* RCTAnimation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
remoteInfo = "RCTAnimation-tvOS";
};
6C4A01322372719200C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A012E2372719200C80EA2 /* RCTGeolocation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTGeolocation;
};
6C4A0139237271C400C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A0134237271C300C80EA2 /* RCTImage.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
remoteInfo = RCTImage;
};
6C4A013B237271C400C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A0134237271C300C80EA2 /* RCTImage.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
remoteInfo = "RCTImage-tvOS";
};
6C4A0142237271EA00C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A013D237271E900C80EA2 /* RCTLinking.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTLinking;
};
6C4A0144237271EA00C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A013D237271E900C80EA2 /* RCTLinking.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28471D9B043800D4039D;
remoteInfo = "RCTLinking-tvOS";
};
6C4A014B2372721A00C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01462372721A00C80EA2 /* RCTNetwork.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B511DB1A9E6C8500147676;
remoteInfo = RCTNetwork;
};
6C4A014D2372721A00C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01462372721A00C80EA2 /* RCTNetwork.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
remoteInfo = "RCTNetwork-tvOS";
};
6C4A01542372725800C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A014F2372725800C80EA2 /* RCTSettings.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTSettings;
};
6C4A01562372725800C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A014F2372725800C80EA2 /* RCTSettings.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28611D9B046600D4039D;
remoteInfo = "RCTSettings-tvOS";
};
6C4A015D237272C400C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A0158237272C400C80EA2 /* RCTText.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B5119B1A9E6C1200147676;
remoteInfo = RCTText;
};
6C4A015F237272C400C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A0158237272C400C80EA2 /* RCTText.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
remoteInfo = "RCTText-tvOS";
};
6C4A01652372731800C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01612372731700C80EA2 /* RCTVibration.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
remoteInfo = RCTVibration;
};
6C4A016E2372738600C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01672372738600C80EA2 /* RCTWebSocket.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
remoteInfo = RCTWebSocket;
};
6C4A01702372738600C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01672372738600C80EA2 /* RCTWebSocket.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28881D9B049200D4039D;
remoteInfo = "RCTWebSocket-tvOS";
};
6C4A01722372738600C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01672372738600C80EA2 /* RCTWebSocket.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
remoteInfo = fishhook;
};
6C4A01742372738600C80EA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C4A01672372738600C80EA2 /* RCTWebSocket.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
remoteInfo = "fishhook-tvOS";
};
6C70BD232373DC940057B094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = CA186A64A4CE42DE9465B733 /* BVLinearGradient.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = BVLinearGradient;
};
6C70BD252373DC940057B094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = CA186A64A4CE42DE9465B733 /* BVLinearGradient.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 64AA15081EF7F30100718508;
remoteInfo = "BVLinearGradient-tvOS";
};
6C70BD282373DC940057B094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 82714E0743774A33B1DCDDC6 /* RCTBEEPickerManager.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 17D41E551D7EE0CA0031415E;
remoteInfo = RCTBEEPickerManager;
};
6C70BD2B2373DC940057B094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 60586726C68749478227D515 /* RCTCamera.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 4107012F1ACB723B00C6AA39;
remoteInfo = RCTCamera;
};
6C70BD2E2373DC940057B094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 493134705A8D4D158C54BD4C /* RCTSplashScreen.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3245CDED1BFEE35C00EABF68;
remoteInfo = RCTSplashScreen;
};
6C70BD322373DC940057B094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4D8024508B5149A1A46FC543 /* RCTVideo.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTVideo;
};
6C70BD342373DC940057B094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4D8024508B5149A1A46FC543 /* RCTVideo.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 641E28441F0EEC8500443AF6;
remoteInfo = "RCTVideo-tvOS";
};
6C70BD372373DC940057B094 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C5373ABA951E430B8EA0F91C /* RNImagePicker.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 014A3B5C1C6CF33500B6D375;
remoteInfo = RNImagePicker;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
00E356EE1AD99517003FC87E /* metroAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = metroAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
00E356F21AD99517003FC87E /* metroAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = metroAppTests.m; sourceTree = "<group>"; };
13B07F961A680F5B00A75B9A /* metroApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = metroApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = metroApp/AppDelegate.h; sourceTree = "<group>"; };
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = metroApp/AppDelegate.m; sourceTree = "<group>"; };
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = metroApp/Images.xcassets; sourceTree = "<group>"; };
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = metroApp/main.m; sourceTree = "<group>"; };
1BE79DDB22BA5DD000292369 /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = "<group>"; };
1BE79E0022BA5DD000292369 /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = "<group>"; };
1BE79E0522BA5E0300292369 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
1BE79E0722BA5E0E00292369 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
1BE79E0922BA5E2400292369 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
1BE79E0B22BA5E3400292369 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
1BE79E0D22BA5E3A00292369 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
1BFC23332176D8C700AE76D9 /* RequestData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RequestData.m; sourceTree = "<group>"; };
1BFC23562176D8CB00AE76D9 /* RequestData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RequestData.h; sourceTree = "<group>"; };
1BFC238A2176EA7300AE76D9 /* 平安地铁权限版.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "平安地铁权限版.entitlements"; sourceTree = "<group>"; };
2B18A660CBCB47E0915B2C9C /* libRCTVideo.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTVideo.a; sourceTree = "<group>"; };
2D02E47B1E0B4A5D006451C7 /* metroApp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "metroApp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
2D02E4901E0B4A5D006451C7 /* metroApp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "metroApp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
493134705A8D4D158C54BD4C /* RCTSplashScreen.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTSplashScreen.xcodeproj; path = "../node_modules/rn-splash-screen/ios/RCTSplashScreen.xcodeproj"; sourceTree = "<group>"; };
4D8024508B5149A1A46FC543 /* RCTVideo.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTVideo.xcodeproj; path = "../node_modules/react-native-video/ios/RCTVideo.xcodeproj"; sourceTree = "<group>"; };
60586726C68749478227D515 /* RCTCamera.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTCamera.xcodeproj; path = "../node_modules/react-native-camera/ios/RCTCamera.xcodeproj"; sourceTree = "<group>"; };
6C10B7F1208DF75C00B414B4 /* XNCameraManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XNCameraManager.h; sourceTree = "<group>"; };
6C10B7F2208DF75C00B414B4 /* XNCameraManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XNCameraManager.m; sourceTree = "<group>"; };
6C10B7F5208DF8F700B414B4 /* xn_base_Client_AF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xn_base_Client_AF.h; sourceTree = "<group>"; };
6C10B7F6208DF8F800B414B4 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
6C10B7F7208DF8F800B414B4 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
6C10B7F8208DF8F800B414B4 /* xn_base_Client_AF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = xn_base_Client_AF.m; sourceTree = "<group>"; };
6C10B7FC208DF90100B414B4 /* BaseRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseRequest.h; sourceTree = "<group>"; };
6C10B7FD208DF90100B414B4 /* BaseResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseResponse.m; sourceTree = "<group>"; };
6C10B7FE208DF90100B414B4 /* BaseDomain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseDomain.m; sourceTree = "<group>"; };
6C10B7FF208DF90100B414B4 /* BaseRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseRequest.m; sourceTree = "<group>"; };
6C10B800208DF90100B414B4 /* BaseResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseResponse.h; sourceTree = "<group>"; };
6C10B801208DF90100B414B4 /* BaseDomain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseDomain.h; sourceTree = "<group>"; };
6C10B819208DF95300B414B4 /* FileUploadAuthInfoGetRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileUploadAuthInfoGetRequest.h; sourceTree = "<group>"; };
6C10B81A208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FileUploadAuthInfoGetRequest.m; sourceTree = "<group>"; };
6C10B81C208DF96200B414B4 /* FileUploadAuthInfoGetResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileUploadAuthInfoGetResponse.h; sourceTree = "<group>"; };
6C10B81D208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FileUploadAuthInfoGetResponse.m; sourceTree = "<group>"; };
6C10B81F208DF96D00B414B4 /* FileUploadInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FileUploadInfo.m; sourceTree = "<group>"; };
6C10B820208DF96D00B414B4 /* FileUploadInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileUploadInfo.h; sourceTree = "<group>"; };
6C10B8C9208ED74D00B414B4 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
6C10B8CA208ED74D00B414B4 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
6C10B8CB208ED74D00B414B4 /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
6C10B8CC208ED74D00B414B4 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
6C10B8CD208ED74D00B414B4 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
6C10B8CE208ED74D00B414B4 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
6C10B8CF208ED74D00B414B4 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
6C10B8D0208ED74D00B414B4 /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
6C10B8D1208ED74D00B414B4 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
6C10B8D2208ED74D00B414B4 /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
6C10B8D3208ED74D00B414B4 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
6C10B8D4208ED74D00B414B4 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
6C10B8D5208ED74D00B414B4 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
6C1E51FC2099A1910002AA8D /* 平安地铁.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "平安地铁.app"; sourceTree = BUILT_PRODUCTS_DIR; };
6C2FC15323601AF300D66BEB /* UMAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UMAnalytics.framework; sourceTree = "<group>"; };
6C2FC15423601AF300D66BEB /* UMPush.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UMPush.framework; sourceTree = "<group>"; };
6C2FC15523601AF400D66BEB /* UMCommon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UMCommon.framework; sourceTree = "<group>"; };
6C2FC15623601AF400D66BEB /* SecurityEnvSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SecurityEnvSDK.framework; sourceTree = "<group>"; };
6C2FC15F23601B0600D66BEB /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
6C4A009923726F0F00C80EA2 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
6C4A011F2372713500C80EA2 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
6C4A01252372716000C80EA2 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
6C4A012E2372719200C80EA2 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
6C4A0134237271C300C80EA2 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
6C4A013D237271E900C80EA2 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
6C4A01462372721A00C80EA2 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
6C4A014F2372725800C80EA2 /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
6C4A0158237272C400C80EA2 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
6C4A01612372731700C80EA2 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
6C4A01672372738600C80EA2 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
6C678A43207227AE009D733A /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
6C678A45207227C7009D733A /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
6C678A47207227CF009D733A /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
6C678A49207227DD009D733A /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
6C678A4B207227E6009D733A /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
6C678A4D207227F4009D733A /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
6C93B02D240A6D3700933BC0 /* IQTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQTextView.m; sourceTree = "<group>"; };
6C93B02E240A6D3700933BC0 /* IQTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQTextView.h; sourceTree = "<group>"; };
6C93B030240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIView+IQKeyboardToolbar.h"; sourceTree = "<group>"; };
6C93B031240A6D3700933BC0 /* IQToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQToolbar.m; sourceTree = "<group>"; };
6C93B032240A6D3700933BC0 /* IQPreviousNextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQPreviousNextView.h; sourceTree = "<group>"; };
6C93B033240A6D3700933BC0 /* IQTitleBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQTitleBarButtonItem.m; sourceTree = "<group>"; };
6C93B034240A6D3700933BC0 /* IQBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQBarButtonItem.m; sourceTree = "<group>"; };
6C93B035240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIView+IQKeyboardToolbar.m"; sourceTree = "<group>"; };
6C93B036240A6D3700933BC0 /* IQPreviousNextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQPreviousNextView.m; sourceTree = "<group>"; };
6C93B037240A6D3700933BC0 /* IQToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQToolbar.h; sourceTree = "<group>"; };
6C93B038240A6D3700933BC0 /* IQBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQBarButtonItem.h; sourceTree = "<group>"; };
6C93B039240A6D3700933BC0 /* IQTitleBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQTitleBarButtonItem.h; sourceTree = "<group>"; };
6C93B03B240A6D3700933BC0 /* IQKeyboardManagerConstantsInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManagerConstantsInternal.h; sourceTree = "<group>"; };
6C93B03C240A6D3700933BC0 /* IQKeyboardManagerConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManagerConstants.h; sourceTree = "<group>"; };
6C93B03E240A6D3700933BC0 /* IQKeyboardManager.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = IQKeyboardManager.bundle; sourceTree = "<group>"; };
6C93B03F240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardReturnKeyHandler.h; sourceTree = "<group>"; };
6C93B040240A6D3700933BC0 /* IQKeyboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManager.h; sourceTree = "<group>"; };
6C93B041240A6D3700933BC0 /* IQKeyboardManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQKeyboardManager.m; sourceTree = "<group>"; };
6C93B043240A6D3700933BC0 /* IQNSArray+Sort.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQNSArray+Sort.m"; sourceTree = "<group>"; };
6C93B044240A6D3700933BC0 /* IQUIViewController+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIViewController+Additions.h"; sourceTree = "<group>"; };
6C93B045240A6D3700933BC0 /* IQUITextFieldView+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUITextFieldView+Additions.m"; sourceTree = "<group>"; };
6C93B046240A6D3700933BC0 /* IQUIScrollView+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIScrollView+Additions.m"; sourceTree = "<group>"; };
6C93B047240A6D3700933BC0 /* IQUIView+Hierarchy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIView+Hierarchy.m"; sourceTree = "<group>"; };
6C93B048240A6D3700933BC0 /* IQNSArray+Sort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQNSArray+Sort.h"; sourceTree = "<group>"; };
6C93B049240A6D3700933BC0 /* IQUIScrollView+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIScrollView+Additions.h"; sourceTree = "<group>"; };
6C93B04A240A6D3700933BC0 /* IQUITextFieldView+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUITextFieldView+Additions.h"; sourceTree = "<group>"; };
6C93B04B240A6D3700933BC0 /* IQUIViewController+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIViewController+Additions.m"; sourceTree = "<group>"; };
6C93B04C240A6D3700933BC0 /* IQUIView+Hierarchy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIView+Hierarchy.h"; sourceTree = "<group>"; };
6C93B04D240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQKeyboardReturnKeyHandler.m; sourceTree = "<group>"; };
6C93B135240CA03A00933BC0 /* 平安地铁.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "平安地铁.app"; sourceTree = BUILT_PRODUCTS_DIR; };
6C93B1C6240CA03E00933BC0 /* 平安地铁.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "平安地铁.app"; sourceTree = BUILT_PRODUCTS_DIR; };
6C93B257240CA04200933BC0 /* 平安地铁.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "平安地铁.app"; sourceTree = BUILT_PRODUCTS_DIR; };
6C93B25A240CA23400933BC0 /* 犀牛企业云UAT.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "犀牛企业云UAT.plist"; sourceTree = "<group>"; };
6C93B25B240CA23400933BC0 /* 平安地铁测试环境.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "平安地铁测试环境.plist"; sourceTree = "<group>"; };
6C93B25C240CA23400933BC0 /* 犀牛企业云开发.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "犀牛企业云开发.plist"; sourceTree = "<group>"; };
6C93B25D240CA23400933BC0 /* 犀牛企业云测试.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "犀牛企业云测试.plist"; sourceTree = "<group>"; };
6C93B2CC240CBB0B00933BC0 /* PrefixHeader.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
6CA2D8752068DF24004E9E33 /* BlueToolManage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BlueToolManage.h; sourceTree = "<group>"; };
6CA2D8762068DF24004E9E33 /* BlueToolManage.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BlueToolManage.m; sourceTree = "<group>"; };
6CA2D8A72068E7C1004E9E33 /* CoreBluetooth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreBluetooth.framework; path = System/Library/Frameworks/CoreBluetooth.framework; sourceTree = SDKROOT; };
6CA2D8A92068E7C8004E9E33 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
6CA360F9240CCFCF00941ED7 /* 平安地铁生产环境.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "平安地铁生产环境.plist"; sourceTree = "<group>"; };
6CC0C11720A14C7800269961 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
6CC0C13A20A14CA000269961 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AliyunOSSiOS.framework; sourceTree = "<group>"; };
6CDEE2DD2088666600CA7B75 /* libresolv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
6CDEE2ED20886F6100CA7B75 /* ZLCustomCamera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLCustomCamera.h; sourceTree = "<group>"; };
6CDEE2EE20886F6100CA7B75 /* ZLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPhotoBrowser.h; sourceTree = "<group>"; };
6CDEE2F020886F6100CA7B75 /* ZLBigImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLBigImageCell.m; sourceTree = "<group>"; };
6CDEE2F120886F6100CA7B75 /* ZLEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLEditViewController.h; sourceTree = "<group>"; };
6CDEE2F220886F6100CA7B75 /* ToastUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToastUtils.h; sourceTree = "<group>"; };
6CDEE2F320886F6100CA7B75 /* UIImage+ZLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ZLPhotoBrowser.h"; sourceTree = "<group>"; };
6CDEE2F420886F6100CA7B75 /* ZLPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPlayer.h; sourceTree = "<group>"; };
6CDEE2F520886F6100CA7B75 /* ZLPhotoBrowserCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPhotoBrowserCell.m; sourceTree = "<group>"; };
6CDEE2F620886F6100CA7B75 /* ZLForceTouchPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLForceTouchPreviewController.m; sourceTree = "<group>"; };
6CDEE2F720886F6100CA7B75 /* UIButton+EnlargeTouchArea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+EnlargeTouchArea.h"; sourceTree = "<group>"; };
6CDEE2F820886F6100CA7B75 /* ZLCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLCollectionCell.h; sourceTree = "<group>"; };
6CDEE2F920886F6100CA7B75 /* ZLNoAuthorityViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLNoAuthorityViewController.h; sourceTree = "<group>"; };
6CDEE2FA20886F6100CA7B75 /* ZLPhotoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPhotoManager.m; sourceTree = "<group>"; };
6CDEE2FC20886F6100CA7B75 /* ZLPhotoConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPhotoConfiguration.h; sourceTree = "<group>"; };
6CDEE2FD20886F6100CA7B75 /* ZLDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLDefine.h; sourceTree = "<group>"; };
6CDEE2FF20886F6100CA7B75 /* ZLEditVideoController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLEditVideoController.h; sourceTree = "<group>"; };
6CDEE30020886F6100CA7B75 /* ZLPhotoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPhotoModel.h; sourceTree = "<group>"; };
6CDEE30120886F6100CA7B75 /* ZLThumbnailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLThumbnailViewController.h; sourceTree = "<group>"; };
6CDEE30320886F6100CA7B75 /* ZLProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLProgressHUD.m; sourceTree = "<group>"; };
6CDEE30420886F6100CA7B75 /* ZLShowBigImgViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLShowBigImgViewController.h; sourceTree = "<group>"; };
6CDEE30620886F6100CA7B75 /* ZLBigImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLBigImageCell.h; sourceTree = "<group>"; };
6CDEE30820886F6100CA7B75 /* ZLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPhotoBrowser.m; sourceTree = "<group>"; };
6CDEE30A20886F6100CA7B75 /* ZLCustomCamera.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLCustomCamera.m; sourceTree = "<group>"; };
6CDEE30B20886F6100CA7B75 /* ZLPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPlayer.m; sourceTree = "<group>"; };
6CDEE30C20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ZLPhotoBrowser.m"; sourceTree = "<group>"; };
6CDEE30D20886F6100CA7B75 /* ToastUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToastUtils.m; sourceTree = "<group>"; };
6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLEditViewController.m; sourceTree = "<group>"; };
6CDEE31020886F6100CA7B75 /* ZLPhotoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPhotoManager.h; sourceTree = "<group>"; };
6CDEE31120886F6100CA7B75 /* ZLCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLCollectionCell.m; sourceTree = "<group>"; };
6CDEE31220886F6100CA7B75 /* ZLNoAuthorityViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLNoAuthorityViewController.m; sourceTree = "<group>"; };
6CDEE31320886F6100CA7B75 /* ZLForceTouchPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLForceTouchPreviewController.h; sourceTree = "<group>"; };
6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+EnlargeTouchArea.m"; sourceTree = "<group>"; };
6CDEE31620886F6100CA7B75 /* ZLPhotoBrowser.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = ZLPhotoBrowser.bundle; sourceTree = "<group>"; };
6CDEE31820886F6100CA7B75 /* ZLPhotoBrowserCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ZLPhotoBrowserCell.xib; sourceTree = "<group>"; };
6CDEE31920886F6100CA7B75 /* ZLPhotoBrowserCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPhotoBrowserCell.h; sourceTree = "<group>"; };
6CDEE31A20886F6100CA7B75 /* ZLShowBigImgViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLShowBigImgViewController.m; sourceTree = "<group>"; };
6CDEE31C20886F6100CA7B75 /* ZLThumbnailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLThumbnailViewController.m; sourceTree = "<group>"; };
6CDEE31E20886F6100CA7B75 /* ZLProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLProgressHUD.h; sourceTree = "<group>"; };
6CDEE31F20886F6100CA7B75 /* ZLPhotoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPhotoModel.m; sourceTree = "<group>"; };
6CDEE32020886F6100CA7B75 /* ZLEditVideoController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLEditVideoController.m; sourceTree = "<group>"; };
6CDEE32220886F6100CA7B75 /* ZLPhotoConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPhotoConfiguration.m; sourceTree = "<group>"; };
6CDEE37220887D3500CA7B75 /* SelectCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectCollectionCell.m; sourceTree = "<group>"; };
6CDEE37320887D3600CA7B75 /* SelectCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectCollectionCell.h; sourceTree = "<group>"; };
6CDEE37620887D6C00CA7B75 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASCompositeConstraint.h; sourceTree = "<group>"; };
6CDEE37720887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
6CDEE37820887D6C00CA7B75 /* MASConstraint+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MASConstraint+Private.h"; sourceTree = "<group>"; };
6CDEE37920887D6C00CA7B75 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASLayoutConstraint.h; sourceTree = "<group>"; };
6CDEE37A20887D6C00CA7B75 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
6CDEE37B20887D6C00CA7B75 /* MASConstraintMaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraintMaker.h; sourceTree = "<group>"; };
6CDEE37C20887D6C00CA7B75 /* View+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASAdditions.h"; sourceTree = "<group>"; };
6CDEE37D20887D6C00CA7B75 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASAdditions.h"; sourceTree = "<group>"; };
6CDEE37E20887D6C00CA7B75 /* MASUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASUtilities.h; sourceTree = "<group>"; };
6CDEE37F20887D6C00CA7B75 /* MASViewAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewAttribute.h; sourceTree = "<group>"; };
6CDEE38020887D6C00CA7B75 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ViewController+MASAdditions.m"; sourceTree = "<group>"; };
6CDEE38120887D6C00CA7B75 /* MASViewConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewConstraint.h; sourceTree = "<group>"; };
6CDEE38220887D6C00CA7B75 /* MASConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraint.h; sourceTree = "<group>"; };
6CDEE38320887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
6CDEE38420887D6C00CA7B75 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASCompositeConstraint.m; sourceTree = "<group>"; };
6CDEE38520887D6C00CA7B75 /* MASConstraintMaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASConstraintMaker.m; sourceTree = "<group>"; };
6CDEE38620887D6C00CA7B75 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASLayoutConstraint.m; sourceTree = "<group>"; };
6CDEE38720887D6C00CA7B75 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+MASAdditions.m"; sourceTree = "<group>"; };
6CDEE38820887D6C00CA7B75 /* View+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "View+MASAdditions.m"; sourceTree = "<group>"; };
6CDEE38920887D6C00CA7B75 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
6CDEE38A20887D6C00CA7B75 /* Masonry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Masonry.h; sourceTree = "<group>"; };
6CDEE38B20887D6C00CA7B75 /* MASConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASConstraint.m; sourceTree = "<group>"; };
6CDEE38C20887D6C00CA7B75 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ViewController+MASAdditions.h"; sourceTree = "<group>"; };
6CDEE38D20887D6C00CA7B75 /* MASViewConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASViewConstraint.m; sourceTree = "<group>"; };
6CDEE38E20887D6C00CA7B75 /* MASViewAttribute.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASViewAttribute.m; sourceTree = "<group>"; };
6CDEE3E72088805800CA7B75 /* UIImage+WebP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+WebP.m"; sourceTree = "<group>"; };
6CDEE3E82088805800CA7B75 /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MKAnnotationView+WebCache.m"; sourceTree = "<group>"; };
6CDEE3E92088805800CA7B75 /* SDWebImageCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCoder.h; sourceTree = "<group>"; };
6CDEE3EA2088805800CA7B75 /* NSImage+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSImage+WebCache.h"; sourceTree = "<group>"; };
6CDEE3EB2088805800CA7B75 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+WebCache.h"; sourceTree = "<group>"; };
6CDEE3EC2088805800CA7B75 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageContentType.h"; sourceTree = "<group>"; };
6CDEE3ED2088805800CA7B75 /* SDWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageManager.m; sourceTree = "<group>"; };
6CDEE3EE2088805800CA7B75 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
6CDEE3EF2088805800CA7B75 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; };
6CDEE3F02088805800CA7B75 /* SDWebImageFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageFrame.m; sourceTree = "<group>"; };
6CDEE3F12088805800CA7B75 /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCache.h; sourceTree = "<group>"; };
6CDEE3F22088805800CA7B75 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ForceDecode.m"; sourceTree = "<group>"; };
6CDEE3F32088805800CA7B75 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCacheConfig.h; sourceTree = "<group>"; };
6CDEE3F42088805800CA7B75 /* SDWebImageCodersManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCodersManager.m; sourceTree = "<group>"; };
6CDEE3F62088805800CA7B75 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloader.m; sourceTree = "<group>"; };
6CDEE3F72088805800CA7B75 /* SDWebImageGIFCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageGIFCoder.h; sourceTree = "<group>"; };
6CDEE3F82088805800CA7B75 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageWebPCoder.h; sourceTree = "<group>"; };
6CDEE3F92088805800CA7B75 /* UIImage+GIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GIF.m"; sourceTree = "<group>"; };
6CDEE3FA2088805800CA7B75 /* UIButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+WebCache.h"; sourceTree = "<group>"; };
6CDEE3FB2088805800CA7B75 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MultiFormat.m"; sourceTree = "<group>"; };
6CDEE3FC2088805800CA7B75 /* SDWebImageCoderHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCoderHelper.m; sourceTree = "<group>"; };
6CDEE3FD2088805800CA7B75 /* SDWebImageCompat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCompat.m; sourceTree = "<group>"; };
6CDEE3FE2088805800CA7B75 /* SDWebImageImageIOCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageImageIOCoder.h; sourceTree = "<group>"; };
6CDEE3FF2088805800CA7B75 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImagePrefetcher.m; sourceTree = "<group>"; };
6CDEE4002088805800CA7B75 /* UIView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCache.h"; sourceTree = "<group>"; };
6CDEE4012088805800CA7B75 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
6CDEE4022088805800CA7B75 /* SDWebImageCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCoder.m; sourceTree = "<group>"; };
6CDEE4032088805800CA7B75 /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MKAnnotationView+WebCache.h"; sourceTree = "<group>"; };
6CDEE4042088805800CA7B75 /* UIImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+WebP.h"; sourceTree = "<group>"; };
6CDEE4052088805800CA7B75 /* SDImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCache.m; sourceTree = "<group>"; };
6CDEE4062088805800CA7B75 /* SDWebImageFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageFrame.h; sourceTree = "<group>"; };
6CDEE4072088805800CA7B75 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
6CDEE4082088805800CA7B75 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloaderOperation.m; sourceTree = "<group>"; };
6CDEE4092088805800CA7B75 /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManager.h; sourceTree = "<group>"; };
6CDEE40A2088805800CA7B75 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ImageContentType.m"; sourceTree = "<group>"; };
6CDEE40B2088805800CA7B75 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+WebCache.m"; sourceTree = "<group>"; };
6CDEE40C2088805800CA7B75 /* SDWebImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageOperation.h; sourceTree = "<group>"; };
6CDEE40D2088805800CA7B75 /* NSImage+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSImage+WebCache.m"; sourceTree = "<group>"; };
6CDEE40E2088805800CA7B75 /* SDWebImageGIFCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageGIFCoder.m; sourceTree = "<group>"; };
6CDEE40F2088805800CA7B75 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloader.h; sourceTree = "<group>"; };
6CDEE4102088805800CA7B75 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCacheConfig.m; sourceTree = "<group>"; };
6CDEE4112088805800CA7B75 /* SDWebImageCodersManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCodersManager.h; sourceTree = "<group>"; };
6CDEE4122088805800CA7B75 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ForceDecode.h"; sourceTree = "<group>"; };
6CDEE4132088805800CA7B75 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WebCacheOperation.m"; sourceTree = "<group>"; };
6CDEE4142088805800CA7B75 /* UIView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WebCache.m"; sourceTree = "<group>"; };
6CDEE4152088805800CA7B75 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImagePrefetcher.h; sourceTree = "<group>"; };
6CDEE4162088805800CA7B75 /* SDWebImageImageIOCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageImageIOCoder.m; sourceTree = "<group>"; };
6CDEE4172088805800CA7B75 /* SDWebImageCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCompat.h; sourceTree = "<group>"; };
6CDEE4182088805800CA7B75 /* SDWebImageCoderHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCoderHelper.h; sourceTree = "<group>"; };
6CDEE4192088805800CA7B75 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
6CDEE41A2088805800CA7B75 /* UIButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+WebCache.m"; sourceTree = "<group>"; };
6CDEE41B2088805800CA7B75 /* SDWebImageWebPCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageWebPCoder.m; sourceTree = "<group>"; };
6CDEE41C2088805800CA7B75 /* UIImage+GIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GIF.h"; sourceTree = "<group>"; };
6CDEE4372088874600CA7B75 /* NSBundle+ZLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+ZLPhotoBrowser.h"; sourceTree = "<group>"; };
6CDEE4382088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+ZLPhotoBrowser.m"; sourceTree = "<group>"; };
6CDEE43A208887E600CA7B75 /* ZLPhotoActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPhotoActionSheet.h; sourceTree = "<group>"; };
6CDEE43B208887E600CA7B75 /* ZLPhotoActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPhotoActionSheet.m; sourceTree = "<group>"; };
6CDEE4A1208DDC1300CA7B75 /* metroApp.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = metroApp.entitlements; path = metroApp/metroApp.entitlements; sourceTree = "<group>"; };
6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
7222665F4D2845B880021C44 /* libRCTSplashScreen.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTSplashScreen.a; sourceTree = "<group>"; };
75878AD97541411AA3BB42FF /* libRCTCamera.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTCamera.a; sourceTree = "<group>"; };
82714E0743774A33B1DCDDC6 /* RCTBEEPickerManager.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RCTBEEPickerManager.xcodeproj; path = "../node_modules/react-native-picker/ios/RCTBEEPickerManager.xcodeproj"; sourceTree = "<group>"; };
8F0FD84ED5994267BAC9DE0C /* libRNImagePicker.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNImagePicker.a; sourceTree = "<group>"; };
B144CC014C53491ABC7DC530 /* libBVLinearGradient.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libBVLinearGradient.a; sourceTree = "<group>"; };
C10112C92A504542B9B9EE7B /* libRCTBEEPickerManager.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTBEEPickerManager.a; sourceTree = "<group>"; };
C5373ABA951E430B8EA0F91C /* RNImagePicker.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNImagePicker.xcodeproj; path = "../node_modules/react-native-image-picker/ios/RNImagePicker.xcodeproj"; sourceTree = "<group>"; };
CA186A64A4CE42DE9465B733 /* BVLinearGradient.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = BVLinearGradient.xcodeproj; path = "../node_modules/react-native-linear-gradient/BVLinearGradient.xcodeproj"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
00E356EB1AD99517003FC87E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6C70BD4B2373DD540057B094 /* libBVLinearGradient.a in Frameworks */,
6C70BD4C2373DD540057B094 /* libfishhook.a in Frameworks */,
6C70BD4D2373DD540057B094 /* libRCTActionSheet.a in Frameworks */,
6C70BD4E2373DD540057B094 /* libRCTAnimation.a in Frameworks */,
6C70BD4F2373DD540057B094 /* libRCTBEEPickerManager.a in Frameworks */,
6C70BD502373DD540057B094 /* libRCTCamera.a in Frameworks */,
6C70BD512373DD540057B094 /* libRCTGeolocation.a in Frameworks */,
6C70BD522373DD540057B094 /* libRCTImage.a in Frameworks */,
6C70BD532373DD540057B094 /* libRCTLinking.a in Frameworks */,
6C70BD542373DD540057B094 /* libRCTNetwork.a in Frameworks */,
6C70BD552373DD540057B094 /* libRCTSettings.a in Frameworks */,
6C70BD562373DD540057B094 /* libRCTText.a in Frameworks */,
6C70BD572373DD540057B094 /* libRCTVibration.a in Frameworks */,
6C70BD582373DD540057B094 /* libRCTWebSocket.a in Frameworks */,
6C70BD592373DD540057B094 /* libReact.a in Frameworks */,
6C2FC16023601B0600D66BEB /* UserNotifications.framework in Frameworks */,
6C2FC15B23601AF400D66BEB /* UMCommon.framework in Frameworks */,
1BE79E1222BA5E8900292369 /* GLKit.framework in Frameworks */,
1BE79E1122BA5E8200292369 /* libc++.tbd in Frameworks */,
6CC0C13920A14C7800269961 /* libz.tbd in Frameworks */,
1BE79E1022BA5E7000292369 /* MapKit.framework in Frameworks */,
1BE79E0F22BA5E6A00292369 /* ExternalAccessory.framework in Frameworks */,
6CC0C1AB20A1A04700269961 /* libsqlite3.tbd in Frameworks */,
6CDEE2DE2088666600CA7B75 /* libresolv.tbd in Frameworks */,
6C678A4E207227F4009D733A /* SystemConfiguration.framework in Frameworks */,
6C678A4C207227E6009D733A /* AVFoundation.framework in Frameworks */,
6C678A4A207227DD009D733A /* AudioToolbox.framework in Frameworks */,
6C678A48207227CF009D733A /* CoreMotion.framework in Frameworks */,
6C678A46207227C7009D733A /* OpenGLES.framework in Frameworks */,
6C678A44207227AE009D733A /* CoreTelephony.framework in Frameworks */,
6C2FC15723601AF400D66BEB /* UMAnalytics.framework in Frameworks */,
6CA2D8AA2068E7C9004E9E33 /* CoreLocation.framework in Frameworks */,
6C2FC15D23601AF400D66BEB /* SecurityEnvSDK.framework in Frameworks */,
6CA2D8A82068E7C1004E9E33 /* CoreBluetooth.framework in Frameworks */,
6CDEE2DC208864CA00CA7B75 /* AliyunOSSiOS.framework in Frameworks */,
1BE79E0322BA5DD000292369 /* AMapLocationKit.framework in Frameworks */,
6C2FC15923601AF400D66BEB /* UMPush.framework in Frameworks */,
6CDEE4A5208DDC7900CA7B75 /* StoreKit.framework in Frameworks */,
1BE79E0122BA5DD000292369 /* AMapFoundationKit.framework in Frameworks */,
B8896D9FD26247EABAEEE92F /* libRNImagePicker.a in Frameworks */,
A0F898A909A3412D9E4AA0B3 /* libRCTVideo.a in Frameworks */,
EC68E8C3660A497D921CE728 /* libRCTSplashScreen.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
6C1E51D82099A1910002AA8D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6C70BD3F2373DD2C0057B094 /* libBVLinearGradient.a in Frameworks */,
6C70BD402373DD2C0057B094 /* libfishhook.a in Frameworks */,
6C70BD412373DD2C0057B094 /* libRCTActionSheet.a in Frameworks */,
6C70BD422373DD2C0057B094 /* libRCTAnimation.a in Frameworks */,
6C70BD432373DD2C0057B094 /* libRCTGeolocation.a in Frameworks */,
6C70BD442373DD2C0057B094 /* libRCTImage.a in Frameworks */,
6C70BD452373DD2C0057B094 /* libRCTLinking.a in Frameworks */,
6C70BD462373DD2C0057B094 /* libRCTNetwork.a in Frameworks */,
6C70BD472373DD2C0057B094 /* libRCTSettings.a in Frameworks */,
6C70BD482373DD2C0057B094 /* libRCTText.a in Frameworks */,
6C70BD492373DD2C0057B094 /* libRCTVibration.a in Frameworks */,
6C70BD4A2373DD2C0057B094 /* libRCTWebSocket.a in Frameworks */,
6C70BD3E2373DCF50057B094 /* libRCTSplashScreen.a in Frameworks */,
6C70BD392373DCDC0057B094 /* libRCTBEEPickerManager.a in Frameworks */,
6C70BD3A2373DCDC0057B094 /* libRCTCamera.a in Frameworks */,
6C70BD3B2373DCDC0057B094 /* libRCTVideo.a in Frameworks */,
6C70BD3C2373DCDC0057B094 /* libReact.a in Frameworks */,
6C70BD3D2373DCDC0057B094 /* libRNImagePicker.a in Frameworks */,
6C2FC16123601B1100D66BEB /* UserNotifications.framework in Frameworks */,
1BE79E0C22BA5E3400292369 /* GLKit.framework in Frameworks */,
6C2FC15823601AF400D66BEB /* UMAnalytics.framework in Frameworks */,
6CC0C1A920A19FD300269961 /* libz.tbd in Frameworks */,
1BE79E0A22BA5E2400292369 /* libc++.tbd in Frameworks */,
1BE79E0822BA5E0E00292369 /* MapKit.framework in Frameworks */,
1BE79E0622BA5E0300292369 /* ExternalAccessory.framework in Frameworks */,
6CC0C1AA20A1A03500269961 /* libsqlite3.tbd in Frameworks */,
6C1E51DB2099A1910002AA8D /* libresolv.tbd in Frameworks */,
6C1E51DE2099A1910002AA8D /* AVFoundation.framework in Frameworks */,
6C1E51DF2099A1910002AA8D /* AudioToolbox.framework in Frameworks */,
6C1E51E02099A1910002AA8D /* CoreMotion.framework in Frameworks */,
6C1E51E12099A1910002AA8D /* OpenGLES.framework in Frameworks */,
6C1E51E32099A1910002AA8D /* CoreLocation.framework in Frameworks */,
6C1E51E42099A1910002AA8D /* CoreBluetooth.framework in Frameworks */,
6C1E51E62099A1910002AA8D /* AliyunOSSiOS.framework in Frameworks */,
1BE79E0422BA5DD000292369 /* AMapLocationKit.framework in Frameworks */,
1BE79E0222BA5DD000292369 /* AMapFoundationKit.framework in Frameworks */,
6C2FC15A23601AF400D66BEB /* UMPush.framework in Frameworks */,
6C2FC15C23601AF400D66BEB /* UMCommon.framework in Frameworks */,
6C1E51EA2099A1910002AA8D /* StoreKit.framework in Frameworks */,
6C2FC15E23601AF400D66BEB /* SecurityEnvSDK.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B102240CA03A00933BC0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B103240CA03A00933BC0 /* libBVLinearGradient.a in Frameworks */,
6C93B104240CA03A00933BC0 /* libfishhook.a in Frameworks */,
6C93B105240CA03A00933BC0 /* libRCTActionSheet.a in Frameworks */,
6C93B106240CA03A00933BC0 /* libRCTAnimation.a in Frameworks */,
6C93B107240CA03A00933BC0 /* libRCTGeolocation.a in Frameworks */,
6C93B108240CA03A00933BC0 /* libRCTImage.a in Frameworks */,
6C93B109240CA03A00933BC0 /* libRCTLinking.a in Frameworks */,
6C93B10A240CA03A00933BC0 /* libRCTNetwork.a in Frameworks */,
6C93B10B240CA03A00933BC0 /* libRCTSettings.a in Frameworks */,
6C93B10C240CA03A00933BC0 /* libRCTText.a in Frameworks */,
6C93B10D240CA03A00933BC0 /* libRCTVibration.a in Frameworks */,
6C93B10E240CA03A00933BC0 /* libRCTWebSocket.a in Frameworks */,
6C93B10F240CA03A00933BC0 /* libRCTSplashScreen.a in Frameworks */,
6C93B110240CA03A00933BC0 /* libRCTBEEPickerManager.a in Frameworks */,
6C93B111240CA03A00933BC0 /* libRCTCamera.a in Frameworks */,
6C93B112240CA03A00933BC0 /* libRCTVideo.a in Frameworks */,
6C93B113240CA03A00933BC0 /* libReact.a in Frameworks */,
6C93B114240CA03A00933BC0 /* libRNImagePicker.a in Frameworks */,
6C93B115240CA03A00933BC0 /* UserNotifications.framework in Frameworks */,
6C93B116240CA03A00933BC0 /* GLKit.framework in Frameworks */,
6C93B117240CA03A00933BC0 /* UMAnalytics.framework in Frameworks */,
6C93B118240CA03A00933BC0 /* libz.tbd in Frameworks */,
6C93B119240CA03A00933BC0 /* libc++.tbd in Frameworks */,
6C93B11A240CA03A00933BC0 /* MapKit.framework in Frameworks */,
6C93B11B240CA03A00933BC0 /* ExternalAccessory.framework in Frameworks */,
6C93B11C240CA03A00933BC0 /* libsqlite3.tbd in Frameworks */,
6C93B11D240CA03A00933BC0 /* libresolv.tbd in Frameworks */,
6C93B11E240CA03A00933BC0 /* AVFoundation.framework in Frameworks */,
6C93B11F240CA03A00933BC0 /* AudioToolbox.framework in Frameworks */,
6C93B120240CA03A00933BC0 /* CoreMotion.framework in Frameworks */,
6C93B121240CA03A00933BC0 /* OpenGLES.framework in Frameworks */,
6C93B122240CA03A00933BC0 /* CoreLocation.framework in Frameworks */,
6C93B123240CA03A00933BC0 /* CoreBluetooth.framework in Frameworks */,
6C93B124240CA03A00933BC0 /* AliyunOSSiOS.framework in Frameworks */,
6C93B125240CA03A00933BC0 /* AMapLocationKit.framework in Frameworks */,
6C93B126240CA03A00933BC0 /* AMapFoundationKit.framework in Frameworks */,
6C93B127240CA03A00933BC0 /* UMPush.framework in Frameworks */,
6C93B128240CA03A00933BC0 /* UMCommon.framework in Frameworks */,
6C93B129240CA03A00933BC0 /* StoreKit.framework in Frameworks */,
6C93B12A240CA03A00933BC0 /* SecurityEnvSDK.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B193240CA03E00933BC0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B194240CA03E00933BC0 /* libBVLinearGradient.a in Frameworks */,
6C93B195240CA03E00933BC0 /* libfishhook.a in Frameworks */,
6C93B196240CA03E00933BC0 /* libRCTActionSheet.a in Frameworks */,
6C93B197240CA03E00933BC0 /* libRCTAnimation.a in Frameworks */,
6C93B198240CA03E00933BC0 /* libRCTGeolocation.a in Frameworks */,
6C93B199240CA03E00933BC0 /* libRCTImage.a in Frameworks */,
6C93B19A240CA03E00933BC0 /* libRCTLinking.a in Frameworks */,
6C93B19B240CA03E00933BC0 /* libRCTNetwork.a in Frameworks */,
6C93B19C240CA03E00933BC0 /* libRCTSettings.a in Frameworks */,
6C93B19D240CA03E00933BC0 /* libRCTText.a in Frameworks */,
6C93B19E240CA03E00933BC0 /* libRCTVibration.a in Frameworks */,
6C93B19F240CA03E00933BC0 /* libRCTWebSocket.a in Frameworks */,
6C93B1A0240CA03E00933BC0 /* libRCTSplashScreen.a in Frameworks */,
6C93B1A1240CA03E00933BC0 /* libRCTBEEPickerManager.a in Frameworks */,
6C93B1A2240CA03E00933BC0 /* libRCTCamera.a in Frameworks */,
6C93B1A3240CA03E00933BC0 /* libRCTVideo.a in Frameworks */,
6C93B1A4240CA03E00933BC0 /* libReact.a in Frameworks */,
6C93B1A5240CA03E00933BC0 /* libRNImagePicker.a in Frameworks */,
6C93B1A6240CA03E00933BC0 /* UserNotifications.framework in Frameworks */,
6C93B1A7240CA03E00933BC0 /* GLKit.framework in Frameworks */,
6C93B1A8240CA03E00933BC0 /* UMAnalytics.framework in Frameworks */,
6C93B1A9240CA03E00933BC0 /* libz.tbd in Frameworks */,
6C93B1AA240CA03E00933BC0 /* libc++.tbd in Frameworks */,
6C93B1AB240CA03E00933BC0 /* MapKit.framework in Frameworks */,
6C93B1AC240CA03E00933BC0 /* ExternalAccessory.framework in Frameworks */,
6C93B1AD240CA03E00933BC0 /* libsqlite3.tbd in Frameworks */,
6C93B1AE240CA03E00933BC0 /* libresolv.tbd in Frameworks */,
6C93B1AF240CA03E00933BC0 /* AVFoundation.framework in Frameworks */,
6C93B1B0240CA03E00933BC0 /* AudioToolbox.framework in Frameworks */,
6C93B1B1240CA03E00933BC0 /* CoreMotion.framework in Frameworks */,
6C93B1B2240CA03E00933BC0 /* OpenGLES.framework in Frameworks */,
6C93B1B3240CA03E00933BC0 /* CoreLocation.framework in Frameworks */,
6C93B1B4240CA03E00933BC0 /* CoreBluetooth.framework in Frameworks */,
6C93B1B5240CA03E00933BC0 /* AliyunOSSiOS.framework in Frameworks */,
6C93B1B6240CA03E00933BC0 /* AMapLocationKit.framework in Frameworks */,
6C93B1B7240CA03E00933BC0 /* AMapFoundationKit.framework in Frameworks */,
6C93B1B8240CA03E00933BC0 /* UMPush.framework in Frameworks */,
6C93B1B9240CA03E00933BC0 /* UMCommon.framework in Frameworks */,
6C93B1BA240CA03E00933BC0 /* StoreKit.framework in Frameworks */,
6C93B1BB240CA03E00933BC0 /* SecurityEnvSDK.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B224240CA04200933BC0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B225240CA04200933BC0 /* libBVLinearGradient.a in Frameworks */,
6C93B226240CA04200933BC0 /* libfishhook.a in Frameworks */,
6C93B227240CA04200933BC0 /* libRCTActionSheet.a in Frameworks */,
6C93B228240CA04200933BC0 /* libRCTAnimation.a in Frameworks */,
6C93B229240CA04200933BC0 /* libRCTGeolocation.a in Frameworks */,
6C93B22A240CA04200933BC0 /* libRCTImage.a in Frameworks */,
6C93B22B240CA04200933BC0 /* libRCTLinking.a in Frameworks */,
6C93B22C240CA04200933BC0 /* libRCTNetwork.a in Frameworks */,
6C93B22D240CA04200933BC0 /* libRCTSettings.a in Frameworks */,
6C93B22E240CA04200933BC0 /* libRCTText.a in Frameworks */,
6C93B22F240CA04200933BC0 /* libRCTVibration.a in Frameworks */,
6C93B230240CA04200933BC0 /* libRCTWebSocket.a in Frameworks */,
6C93B231240CA04200933BC0 /* libRCTSplashScreen.a in Frameworks */,
6C93B232240CA04200933BC0 /* libRCTBEEPickerManager.a in Frameworks */,
6C93B233240CA04200933BC0 /* libRCTCamera.a in Frameworks */,
6C93B234240CA04200933BC0 /* libRCTVideo.a in Frameworks */,
6C93B235240CA04200933BC0 /* libReact.a in Frameworks */,
6C93B236240CA04200933BC0 /* libRNImagePicker.a in Frameworks */,
6C93B237240CA04200933BC0 /* UserNotifications.framework in Frameworks */,
6C93B238240CA04200933BC0 /* GLKit.framework in Frameworks */,
6C93B239240CA04200933BC0 /* UMAnalytics.framework in Frameworks */,
6C93B23A240CA04200933BC0 /* libz.tbd in Frameworks */,
6C93B23B240CA04200933BC0 /* libc++.tbd in Frameworks */,
6C93B23C240CA04200933BC0 /* MapKit.framework in Frameworks */,
6C93B23D240CA04200933BC0 /* ExternalAccessory.framework in Frameworks */,
6C93B23E240CA04200933BC0 /* libsqlite3.tbd in Frameworks */,
6C93B23F240CA04200933BC0 /* libresolv.tbd in Frameworks */,
6C93B240240CA04200933BC0 /* AVFoundation.framework in Frameworks */,
6C93B241240CA04200933BC0 /* AudioToolbox.framework in Frameworks */,
6C93B242240CA04200933BC0 /* CoreMotion.framework in Frameworks */,
6C93B243240CA04200933BC0 /* OpenGLES.framework in Frameworks */,
6C93B244240CA04200933BC0 /* CoreLocation.framework in Frameworks */,
6C93B245240CA04200933BC0 /* CoreBluetooth.framework in Frameworks */,
6C93B246240CA04200933BC0 /* AliyunOSSiOS.framework in Frameworks */,
6C93B247240CA04200933BC0 /* AMapLocationKit.framework in Frameworks */,
6C93B248240CA04200933BC0 /* AMapFoundationKit.framework in Frameworks */,
6C93B249240CA04200933BC0 /* UMPush.framework in Frameworks */,
6C93B24A240CA04200933BC0 /* UMCommon.framework in Frameworks */,
6C93B24B240CA04200933BC0 /* StoreKit.framework in Frameworks */,
6C93B24C240CA04200933BC0 /* SecurityEnvSDK.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
00E356EF1AD99517003FC87E /* metroAppTests */ = {
isa = PBXGroup;
children = (
00E356F21AD99517003FC87E /* metroAppTests.m */,
00E356F01AD99517003FC87E /* Supporting Files */,
);
path = metroAppTests;
sourceTree = "<group>";
};
00E356F01AD99517003FC87E /* Supporting Files */ = {
isa = PBXGroup;
children = (
00E356F11AD99517003FC87E /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
13B07FAE1A68108700A75B9A /* metroApp */ = {
isa = PBXGroup;
children = (
6CDEE4A1208DDC1300CA7B75 /* metroApp.entitlements */,
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
13B07FB01A68108700A75B9A /* AppDelegate.m */,
6CA2D8752068DF24004E9E33 /* BlueToolManage.h */,
6CA2D8762068DF24004E9E33 /* BlueToolManage.m */,
1BFC23562176D8CB00AE76D9 /* RequestData.h */,
1BFC23332176D8C700AE76D9 /* RequestData.m */,
6C10B7F1208DF75C00B414B4 /* XNCameraManager.h */,
6C10B7F2208DF75C00B414B4 /* XNCameraManager.m */,
6CDEE37320887D3600CA7B75 /* SelectCollectionCell.h */,
6CDEE37220887D3500CA7B75 /* SelectCollectionCell.m */,
1BE79DDB22BA5DD000292369 /* AMapFoundationKit.framework */,
1BE79E0022BA5DD000292369 /* AMapLocationKit.framework */,
13B07FB51A68108700A75B9A /* Images.xcassets */,
6CC0C13C20A14FEB00269961 /* UM */,
6C10B7F4208DF8DF00B414B4 /* NetWork */,
6CDEE3E62088805800CA7B75 /* SDWebImage */,
6CDEE37520887D6C00CA7B75 /* Masonry6.0 */,
6CDEE2EB20886F6100CA7B75 /* PhotoChoose */,
6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */,
6C93B02B240A6D3700933BC0 /* IQKeyBoardManager20160113 */,
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
13B07FB71A68108700A75B9A /* main.m */,
6C93B259240CA23400933BC0 /* plist */,
6C93B2CC240CBB0B00933BC0 /* PrefixHeader.pch */,
);
name = metroApp;
sourceTree = "<group>";
};
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
isa = PBXGroup;
children = (
2D16E6891FA4F8E400B85C8A /* libReact.a */,
);
name = Frameworks;
sourceTree = "<group>";
};
6C10B7F4208DF8DF00B414B4 /* NetWork */ = {
isa = PBXGroup;
children = (
6C10B8C8208ED74D00B414B4 /* AFNetworking3.0 */,
6C10B7FB208DF90100B414B4 /* Base */,
6C10B7F7208DF8F800B414B4 /* MBProgressHUD.h */,
6C10B7F6208DF8F800B414B4 /* MBProgressHUD.m */,
6C10B7F5208DF8F700B414B4 /* xn_base_Client_AF.h */,
6C10B7F8208DF8F800B414B4 /* xn_base_Client_AF.m */,
);
path = NetWork;
sourceTree = "<group>";
};
6C10B7FB208DF90100B414B4 /* Base */ = {
isa = PBXGroup;
children = (
6C10B820208DF96D00B414B4 /* FileUploadInfo.h */,
6C10B81F208DF96D00B414B4 /* FileUploadInfo.m */,
6C10B819208DF95300B414B4 /* FileUploadAuthInfoGetRequest.h */,
6C10B81A208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m */,
6C10B81C208DF96200B414B4 /* FileUploadAuthInfoGetResponse.h */,
6C10B81D208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m */,
6C10B7FC208DF90100B414B4 /* BaseRequest.h */,
6C10B7FD208DF90100B414B4 /* BaseResponse.m */,
6C10B7FE208DF90100B414B4 /* BaseDomain.m */,
6C10B7FF208DF90100B414B4 /* BaseRequest.m */,
6C10B800208DF90100B414B4 /* BaseResponse.h */,
6C10B801208DF90100B414B4 /* BaseDomain.h */,
);
path = Base;
sourceTree = "<group>";
};
6C10B8C8208ED74D00B414B4 /* AFNetworking3.0 */ = {
isa = PBXGroup;
children = (
6C10B8C9208ED74D00B414B4 /* AFSecurityPolicy.h */,
6C10B8CA208ED74D00B414B4 /* AFNetworkReachabilityManager.h */,
6C10B8CB208ED74D00B414B4 /* AFURLSessionManager.h */,
6C10B8CC208ED74D00B414B4 /* AFURLRequestSerialization.h */,
6C10B8CD208ED74D00B414B4 /* AFURLResponseSerialization.m */,
6C10B8CE208ED74D00B414B4 /* AFHTTPSessionManager.m */,
6C10B8CF208ED74D00B414B4 /* AFURLResponseSerialization.h */,
6C10B8D0208ED74D00B414B4 /* AFURLSessionManager.m */,
6C10B8D1208ED74D00B414B4 /* AFURLRequestSerialization.m */,
6C10B8D2208ED74D00B414B4 /* AFNetworking.h */,
6C10B8D3208ED74D00B414B4 /* AFNetworkReachabilityManager.m */,
6C10B8D4208ED74D00B414B4 /* AFSecurityPolicy.m */,
6C10B8D5208ED74D00B414B4 /* AFHTTPSessionManager.h */,
);
path = AFNetworking3.0;
sourceTree = "<group>";
};
6C4A009A23726F0F00C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A00AD23726F1000C80EA2 /* libReact.a */,
6C4A00AF23726F1000C80EA2 /* libReact.a */,
6C4A00B123726F1000C80EA2 /* libyoga.a */,
6C4A00B323726F1000C80EA2 /* libyoga.a */,
6C4A00B523726F1000C80EA2 /* libcxxreact.a */,
6C4A00B723726F1000C80EA2 /* libcxxreact.a */,
6C4A00B923726F1000C80EA2 /* libjschelpers.a */,
6C4A00BB23726F1000C80EA2 /* libjschelpers.a */,
6C4A00BD23726F1000C80EA2 /* libjsinspector.a */,
6C4A00BF23726F1000C80EA2 /* libjsinspector-tvOS.a */,
6C4A00C123726F1000C80EA2 /* libthird-party.a */,
6C4A00C323726F1000C80EA2 /* libthird-party.a */,
6C4A00C523726F1000C80EA2 /* libdouble-conversion.a */,
6C4A00C723726F1000C80EA2 /* libdouble-conversion.a */,
6C4A00C923726F1000C80EA2 /* libprivatedata.a */,
6C4A00CB23726F1000C80EA2 /* libprivatedata-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A01202372713500C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A01242372713600C80EA2 /* libRCTActionSheet.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A01262372716000C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A012B2372716000C80EA2 /* libRCTAnimation.a */,
6C4A012D2372716000C80EA2 /* libRCTAnimation.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A012F2372719200C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A01332372719200C80EA2 /* libRCTGeolocation.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A0135237271C300C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A013A237271C400C80EA2 /* libRCTImage.a */,
6C4A013C237271C400C80EA2 /* libRCTImage-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A013E237271E900C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A0143237271EA00C80EA2 /* libRCTLinking.a */,
6C4A0145237271EA00C80EA2 /* libRCTLinking-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A01472372721A00C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A014C2372721A00C80EA2 /* libRCTNetwork.a */,
6C4A014E2372721A00C80EA2 /* libRCTNetwork-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A01502372725800C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A01552372725800C80EA2 /* libRCTSettings.a */,
6C4A01572372725800C80EA2 /* libRCTSettings-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A0159237272C400C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A015E237272C400C80EA2 /* libRCTText.a */,
6C4A0160237272C400C80EA2 /* libRCTText-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A01622372731700C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A01662372731800C80EA2 /* libRCTVibration.a */,
);
name = Products;
sourceTree = "<group>";
};
6C4A01682372738600C80EA2 /* Products */ = {
isa = PBXGroup;
children = (
6C4A016F2372738600C80EA2 /* libRCTWebSocket.a */,
6C4A01712372738600C80EA2 /* libRCTWebSocket-tvOS.a */,
6C4A01732372738600C80EA2 /* libfishhook.a */,
6C4A01752372738600C80EA2 /* libfishhook-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
6C58540020B3B38F00240A8F /* Recovered References */ = {
isa = PBXGroup;
children = (
75878AD97541411AA3BB42FF /* libRCTCamera.a */,
B144CC014C53491ABC7DC530 /* libBVLinearGradient.a */,
C10112C92A504542B9B9EE7B /* libRCTBEEPickerManager.a */,
8F0FD84ED5994267BAC9DE0C /* libRNImagePicker.a */,
2B18A660CBCB47E0915B2C9C /* libRCTVideo.a */,
7222665F4D2845B880021C44 /* libRCTSplashScreen.a */,
);
name = "Recovered References";
sourceTree = "<group>";
};
6C70BD152373DC940057B094 /* Products */ = {
isa = PBXGroup;
children = (
6C70BD242373DC940057B094 /* libBVLinearGradient.a */,
6C70BD262373DC940057B094 /* libBVLinearGradient.a */,
);
name = Products;
sourceTree = "<group>";
};
6C70BD172373DC940057B094 /* Products */ = {
isa = PBXGroup;
children = (
6C70BD292373DC940057B094 /* libRCTBEEPickerManager.a */,
);
name = Products;
sourceTree = "<group>";
};
6C70BD192373DC940057B094 /* Products */ = {
isa = PBXGroup;
children = (
6C70BD2C2373DC940057B094 /* libRCTCamera.a */,
);
name = Products;
sourceTree = "<group>";
};
6C70BD1B2373DC940057B094 /* Products */ = {
isa = PBXGroup;
children = (
6C70BD382373DC940057B094 /* libRNImagePicker.a */,
);
name = Products;
sourceTree = "<group>";
};
6C70BD1D2373DC940057B094 /* Products */ = {
isa = PBXGroup;
children = (
6C70BD332373DC940057B094 /* libRCTVideo.a */,
6C70BD352373DC940057B094 /* libRCTVideo.a */,
);
name = Products;
sourceTree = "<group>";
};
6C70BD1F2373DC940057B094 /* Products */ = {
isa = PBXGroup;
children = (
6C70BD2F2373DC940057B094 /* libRCTSplashScreen.a */,
);
name = Products;
sourceTree = "<group>";
};
6C93B02B240A6D3700933BC0 /* IQKeyBoardManager20160113 */ = {
isa = PBXGroup;
children = (
6C93B042240A6D3700933BC0 /* Categories */,
6C93B03A240A6D3700933BC0 /* Constants */,
6C93B040240A6D3700933BC0 /* IQKeyboardManager.h */,
6C93B041240A6D3700933BC0 /* IQKeyboardManager.m */,
6C93B03F240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.h */,
6C93B04D240A6D3700933BC0 /* IQKeyboardReturnKeyHandler.m */,
6C93B02C240A6D3700933BC0 /* IQTextView */,
6C93B02F240A6D3700933BC0 /* IQToolbar */,
6C93B03D240A6D3700933BC0 /* Resources */,
);
path = IQKeyBoardManager20160113;
sourceTree = "<group>";
};
6C93B02C240A6D3700933BC0 /* IQTextView */ = {
isa = PBXGroup;
children = (
6C93B02D240A6D3700933BC0 /* IQTextView.m */,
6C93B02E240A6D3700933BC0 /* IQTextView.h */,
);
path = IQTextView;
sourceTree = "<group>";
};
6C93B02F240A6D3700933BC0 /* IQToolbar */ = {
isa = PBXGroup;
children = (
6C93B030240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.h */,
6C93B031240A6D3700933BC0 /* IQToolbar.m */,
6C93B032240A6D3700933BC0 /* IQPreviousNextView.h */,
6C93B033240A6D3700933BC0 /* IQTitleBarButtonItem.m */,
6C93B034240A6D3700933BC0 /* IQBarButtonItem.m */,
6C93B035240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m */,
6C93B036240A6D3700933BC0 /* IQPreviousNextView.m */,
6C93B037240A6D3700933BC0 /* IQToolbar.h */,
6C93B038240A6D3700933BC0 /* IQBarButtonItem.h */,
6C93B039240A6D3700933BC0 /* IQTitleBarButtonItem.h */,
);
path = IQToolbar;
sourceTree = "<group>";
};
6C93B03A240A6D3700933BC0 /* Constants */ = {
isa = PBXGroup;
children = (
6C93B03B240A6D3700933BC0 /* IQKeyboardManagerConstantsInternal.h */,
6C93B03C240A6D3700933BC0 /* IQKeyboardManagerConstants.h */,
);
path = Constants;
sourceTree = "<group>";
};
6C93B03D240A6D3700933BC0 /* Resources */ = {
isa = PBXGroup;
children = (
6C93B03E240A6D3700933BC0 /* IQKeyboardManager.bundle */,
);
path = Resources;
sourceTree = "<group>";
};
6C93B042240A6D3700933BC0 /* Categories */ = {
isa = PBXGroup;
children = (
6C93B043240A6D3700933BC0 /* IQNSArray+Sort.m */,
6C93B044240A6D3700933BC0 /* IQUIViewController+Additions.h */,
6C93B045240A6D3700933BC0 /* IQUITextFieldView+Additions.m */,
6C93B046240A6D3700933BC0 /* IQUIScrollView+Additions.m */,
6C93B047240A6D3700933BC0 /* IQUIView+Hierarchy.m */,
6C93B048240A6D3700933BC0 /* IQNSArray+Sort.h */,
6C93B049240A6D3700933BC0 /* IQUIScrollView+Additions.h */,
6C93B04A240A6D3700933BC0 /* IQUITextFieldView+Additions.h */,
6C93B04B240A6D3700933BC0 /* IQUIViewController+Additions.m */,
6C93B04C240A6D3700933BC0 /* IQUIView+Hierarchy.h */,
);
path = Categories;
sourceTree = "<group>";
};
6C93B259240CA23400933BC0 /* plist */ = {
isa = PBXGroup;
children = (
6CA360F9240CCFCF00941ED7 /* 平安地铁生产环境.plist */,
6C93B25B240CA23400933BC0 /* 平安地铁测试环境.plist */,
6C93B25D240CA23400933BC0 /* 犀牛企业云测试.plist */,
6C93B25C240CA23400933BC0 /* 犀牛企业云开发.plist */,
6C93B25A240CA23400933BC0 /* 犀牛企业云UAT.plist */,
);
path = plist;
sourceTree = "<group>";
};
6CA2D8A62068E7C0004E9E33 /* Frameworks */ = {
isa = PBXGroup;
children = (
6C2FC15F23601B0600D66BEB /* UserNotifications.framework */,
1BE79E0D22BA5E3A00292369 /* Security.framework */,
1BE79E0B22BA5E3400292369 /* GLKit.framework */,
1BE79E0922BA5E2400292369 /* libc++.tbd */,
1BE79E0722BA5E0E00292369 /* MapKit.framework */,
1BE79E0522BA5E0300292369 /* ExternalAccessory.framework */,
6CC0C13A20A14CA000269961 /* libsqlite3.tbd */,
6CC0C11720A14C7800269961 /* libz.tbd */,
6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */,
6CDEE2DD2088666600CA7B75 /* libresolv.tbd */,
6C678A4D207227F4009D733A /* SystemConfiguration.framework */,
6C678A4B207227E6009D733A /* AVFoundation.framework */,
6C678A49207227DD009D733A /* AudioToolbox.framework */,
6C678A47207227CF009D733A /* CoreMotion.framework */,
6C678A45207227C7009D733A /* OpenGLES.framework */,
6C678A43207227AE009D733A /* CoreTelephony.framework */,
6CA2D8A92068E7C8004E9E33 /* CoreLocation.framework */,
6CA2D8A72068E7C1004E9E33 /* CoreBluetooth.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
6CC0C13C20A14FEB00269961 /* UM */ = {
isa = PBXGroup;
children = (
6C2FC15623601AF400D66BEB /* SecurityEnvSDK.framework */,
6C2FC15323601AF300D66BEB /* UMAnalytics.framework */,
6C2FC15523601AF400D66BEB /* UMCommon.framework */,
6C2FC15423601AF300D66BEB /* UMPush.framework */,
);
path = UM;
sourceTree = "<group>";
};
6CDEE2EB20886F6100CA7B75 /* PhotoChoose */ = {
isa = PBXGroup;
children = (
6CDEE4372088874600CA7B75 /* NSBundle+ZLPhotoBrowser.h */,
6CDEE4382088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m */,
6CDEE31520886F6100CA7B75 /* resource */,
6CDEE2F220886F6100CA7B75 /* ToastUtils.h */,
6CDEE30D20886F6100CA7B75 /* ToastUtils.m */,
6CDEE2F720886F6100CA7B75 /* UIButton+EnlargeTouchArea.h */,
6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */,
6CDEE2F320886F6100CA7B75 /* UIImage+ZLPhotoBrowser.h */,
6CDEE30C20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m */,
6CDEE30620886F6100CA7B75 /* ZLBigImageCell.h */,
6CDEE2F020886F6100CA7B75 /* ZLBigImageCell.m */,
6CDEE2F820886F6100CA7B75 /* ZLCollectionCell.h */,
6CDEE31120886F6100CA7B75 /* ZLCollectionCell.m */,
6CDEE2ED20886F6100CA7B75 /* ZLCustomCamera.h */,
6CDEE30A20886F6100CA7B75 /* ZLCustomCamera.m */,
6CDEE2FD20886F6100CA7B75 /* ZLDefine.h */,
6CDEE2FF20886F6100CA7B75 /* ZLEditVideoController.h */,
6CDEE32020886F6100CA7B75 /* ZLEditVideoController.m */,
6CDEE2F120886F6100CA7B75 /* ZLEditViewController.h */,
6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */,
6CDEE31320886F6100CA7B75 /* ZLForceTouchPreviewController.h */,
6CDEE2F620886F6100CA7B75 /* ZLForceTouchPreviewController.m */,
6CDEE2F920886F6100CA7B75 /* ZLNoAuthorityViewController.h */,
6CDEE31220886F6100CA7B75 /* ZLNoAuthorityViewController.m */,
6CDEE43A208887E600CA7B75 /* ZLPhotoActionSheet.h */,
6CDEE43B208887E600CA7B75 /* ZLPhotoActionSheet.m */,
6CDEE2EE20886F6100CA7B75 /* ZLPhotoBrowser.h */,
6CDEE30820886F6100CA7B75 /* ZLPhotoBrowser.m */,
6CDEE31920886F6100CA7B75 /* ZLPhotoBrowserCell.h */,
6CDEE2F520886F6100CA7B75 /* ZLPhotoBrowserCell.m */,
6CDEE2FC20886F6100CA7B75 /* ZLPhotoConfiguration.h */,
6CDEE32220886F6100CA7B75 /* ZLPhotoConfiguration.m */,
6CDEE31020886F6100CA7B75 /* ZLPhotoManager.h */,
6CDEE2FA20886F6100CA7B75 /* ZLPhotoManager.m */,
6CDEE30020886F6100CA7B75 /* ZLPhotoModel.h */,
6CDEE31F20886F6100CA7B75 /* ZLPhotoModel.m */,
6CDEE2F420886F6100CA7B75 /* ZLPlayer.h */,
6CDEE30B20886F6100CA7B75 /* ZLPlayer.m */,
6CDEE31E20886F6100CA7B75 /* ZLProgressHUD.h */,
6CDEE30320886F6100CA7B75 /* ZLProgressHUD.m */,
6CDEE30420886F6100CA7B75 /* ZLShowBigImgViewController.h */,
6CDEE31A20886F6100CA7B75 /* ZLShowBigImgViewController.m */,
6CDEE30120886F6100CA7B75 /* ZLThumbnailViewController.h */,
6CDEE31C20886F6100CA7B75 /* ZLThumbnailViewController.m */,
);
path = PhotoChoose;
sourceTree = "<group>";
};
6CDEE31520886F6100CA7B75 /* resource */ = {
isa = PBXGroup;
children = (
6CDEE31620886F6100CA7B75 /* ZLPhotoBrowser.bundle */,
6CDEE31820886F6100CA7B75 /* ZLPhotoBrowserCell.xib */,
);
path = resource;
sourceTree = "<group>";
};
6CDEE37520887D6C00CA7B75 /* Masonry6.0 */ = {
isa = PBXGroup;
children = (
6CDEE37620887D6C00CA7B75 /* MASCompositeConstraint.h */,
6CDEE37720887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m */,
6CDEE37820887D6C00CA7B75 /* MASConstraint+Private.h */,
6CDEE37920887D6C00CA7B75 /* MASLayoutConstraint.h */,
6CDEE37A20887D6C00CA7B75 /* NSArray+MASShorthandAdditions.h */,
6CDEE37B20887D6C00CA7B75 /* MASConstraintMaker.h */,
6CDEE37C20887D6C00CA7B75 /* View+MASAdditions.h */,
6CDEE37D20887D6C00CA7B75 /* NSArray+MASAdditions.h */,
6CDEE37E20887D6C00CA7B75 /* MASUtilities.h */,
6CDEE37F20887D6C00CA7B75 /* MASViewAttribute.h */,
6CDEE38020887D6C00CA7B75 /* ViewController+MASAdditions.m */,
6CDEE38120887D6C00CA7B75 /* MASViewConstraint.h */,
6CDEE38220887D6C00CA7B75 /* MASConstraint.h */,
6CDEE38320887D6C00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.h */,
6CDEE38420887D6C00CA7B75 /* MASCompositeConstraint.m */,
6CDEE38520887D6C00CA7B75 /* MASConstraintMaker.m */,
6CDEE38620887D6C00CA7B75 /* MASLayoutConstraint.m */,
6CDEE38720887D6C00CA7B75 /* NSArray+MASAdditions.m */,
6CDEE38820887D6C00CA7B75 /* View+MASAdditions.m */,
6CDEE38920887D6C00CA7B75 /* View+MASShorthandAdditions.h */,
6CDEE38A20887D6C00CA7B75 /* Masonry.h */,
6CDEE38B20887D6C00CA7B75 /* MASConstraint.m */,
6CDEE38C20887D6C00CA7B75 /* ViewController+MASAdditions.h */,
6CDEE38D20887D6C00CA7B75 /* MASViewConstraint.m */,
6CDEE38E20887D6C00CA7B75 /* MASViewAttribute.m */,
);
path = Masonry6.0;
sourceTree = "<group>";
};
6CDEE3E62088805800CA7B75 /* SDWebImage */ = {
isa = PBXGroup;
children = (
6CDEE3E72088805800CA7B75 /* UIImage+WebP.m */,
6CDEE3E82088805800CA7B75 /* MKAnnotationView+WebCache.m */,
6CDEE3E92088805800CA7B75 /* SDWebImageCoder.h */,
6CDEE3EA2088805800CA7B75 /* NSImage+WebCache.h */,
6CDEE3EB2088805800CA7B75 /* UIImageView+WebCache.h */,
6CDEE3EC2088805800CA7B75 /* NSData+ImageContentType.h */,
6CDEE3ED2088805800CA7B75 /* SDWebImageManager.m */,
6CDEE3EE2088805800CA7B75 /* SDWebImageDownloaderOperation.h */,
6CDEE3EF2088805800CA7B75 /* UIImageView+HighlightedWebCache.m */,
6CDEE3F02088805800CA7B75 /* SDWebImageFrame.m */,
6CDEE3F12088805800CA7B75 /* SDImageCache.h */,
6CDEE3F22088805800CA7B75 /* UIImage+ForceDecode.m */,
6CDEE3F32088805800CA7B75 /* SDImageCacheConfig.h */,
6CDEE3F42088805800CA7B75 /* SDWebImageCodersManager.m */,
6CDEE3F52088805800CA7B75 /* FLAnimatedImage */,
6CDEE3F62088805800CA7B75 /* SDWebImageDownloader.m */,
6CDEE3F72088805800CA7B75 /* SDWebImageGIFCoder.h */,
6CDEE3F82088805800CA7B75 /* SDWebImageWebPCoder.h */,
6CDEE3F92088805800CA7B75 /* UIImage+GIF.m */,
6CDEE3FA2088805800CA7B75 /* UIButton+WebCache.h */,
6CDEE3FB2088805800CA7B75 /* UIImage+MultiFormat.m */,
6CDEE3FC2088805800CA7B75 /* SDWebImageCoderHelper.m */,
6CDEE3FD2088805800CA7B75 /* SDWebImageCompat.m */,
6CDEE3FE2088805800CA7B75 /* SDWebImageImageIOCoder.h */,
6CDEE3FF2088805800CA7B75 /* SDWebImagePrefetcher.m */,
6CDEE4002088805800CA7B75 /* UIView+WebCache.h */,
6CDEE4012088805800CA7B75 /* UIView+WebCacheOperation.h */,
6CDEE4022088805800CA7B75 /* SDWebImageCoder.m */,
6CDEE4032088805800CA7B75 /* MKAnnotationView+WebCache.h */,
6CDEE4042088805800CA7B75 /* UIImage+WebP.h */,
6CDEE4052088805800CA7B75 /* SDImageCache.m */,
6CDEE4062088805800CA7B75 /* SDWebImageFrame.h */,
6CDEE4072088805800CA7B75 /* UIImageView+HighlightedWebCache.h */,
6CDEE4082088805800CA7B75 /* SDWebImageDownloaderOperation.m */,
6CDEE4092088805800CA7B75 /* SDWebImageManager.h */,
6CDEE40A2088805800CA7B75 /* NSData+ImageContentType.m */,
6CDEE40B2088805800CA7B75 /* UIImageView+WebCache.m */,
6CDEE40C2088805800CA7B75 /* SDWebImageOperation.h */,
6CDEE40D2088805800CA7B75 /* NSImage+WebCache.m */,
6CDEE40E2088805800CA7B75 /* SDWebImageGIFCoder.m */,
6CDEE40F2088805800CA7B75 /* SDWebImageDownloader.h */,
6CDEE4102088805800CA7B75 /* SDImageCacheConfig.m */,
6CDEE4112088805800CA7B75 /* SDWebImageCodersManager.h */,
6CDEE4122088805800CA7B75 /* UIImage+ForceDecode.h */,
6CDEE4132088805800CA7B75 /* UIView+WebCacheOperation.m */,
6CDEE4142088805800CA7B75 /* UIView+WebCache.m */,
6CDEE4152088805800CA7B75 /* SDWebImagePrefetcher.h */,
6CDEE4162088805800CA7B75 /* SDWebImageImageIOCoder.m */,
6CDEE4172088805800CA7B75 /* SDWebImageCompat.h */,
6CDEE4182088805800CA7B75 /* SDWebImageCoderHelper.h */,
6CDEE4192088805800CA7B75 /* UIImage+MultiFormat.h */,
6CDEE41A2088805800CA7B75 /* UIButton+WebCache.m */,
6CDEE41B2088805800CA7B75 /* SDWebImageWebPCoder.m */,
6CDEE41C2088805800CA7B75 /* UIImage+GIF.h */,
);
path = SDWebImage;
sourceTree = "<group>";
};
6CDEE3F52088805800CA7B75 /* FLAnimatedImage */ = {
isa = PBXGroup;
children = (
);
path = FLAnimatedImage;
sourceTree = "<group>";
};
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
isa = PBXGroup;
children = (
6C4A011F2372713500C80EA2 /* RCTActionSheet.xcodeproj */,
6C4A01252372716000C80EA2 /* RCTAnimation.xcodeproj */,
6C4A012E2372719200C80EA2 /* RCTGeolocation.xcodeproj */,
6C4A0134237271C300C80EA2 /* RCTImage.xcodeproj */,
6C4A013D237271E900C80EA2 /* RCTLinking.xcodeproj */,
6C4A01462372721A00C80EA2 /* RCTNetwork.xcodeproj */,
6C4A014F2372725800C80EA2 /* RCTSettings.xcodeproj */,
6C4A0158237272C400C80EA2 /* RCTText.xcodeproj */,
6C4A01612372731700C80EA2 /* RCTVibration.xcodeproj */,
6C4A01672372738600C80EA2 /* RCTWebSocket.xcodeproj */,
6C4A009923726F0F00C80EA2 /* React.xcodeproj */,
60586726C68749478227D515 /* RCTCamera.xcodeproj */,
C5373ABA951E430B8EA0F91C /* RNImagePicker.xcodeproj */,
CA186A64A4CE42DE9465B733 /* BVLinearGradient.xcodeproj */,
82714E0743774A33B1DCDDC6 /* RCTBEEPickerManager.xcodeproj */,
4D8024508B5149A1A46FC543 /* RCTVideo.xcodeproj */,
493134705A8D4D158C54BD4C /* RCTSplashScreen.xcodeproj */,
);
name = Libraries;
sourceTree = "<group>";
};
83CBB9F61A601CBA00E9B192 = {
isa = PBXGroup;
children = (
1BFC238A2176EA7300AE76D9 /* 平安地铁权限版.entitlements */,
13B07FAE1A68108700A75B9A /* metroApp */,
832341AE1AAA6A7D00B99B32 /* Libraries */,
00E356EF1AD99517003FC87E /* metroAppTests */,
83CBBA001A601CBA00E9B192 /* Products */,
6CA2D8A62068E7C0004E9E33 /* Frameworks */,
6C58540020B3B38F00240A8F /* Recovered References */,
2D16E6871FA4F8E400B85C8A /* Frameworks */,
);
indentWidth = 2;
sourceTree = "<group>";
tabWidth = 2;
usesTabs = 0;
};
83CBBA001A601CBA00E9B192 /* Products */ = {
isa = PBXGroup;
children = (
13B07F961A680F5B00A75B9A /* metroApp.app */,
00E356EE1AD99517003FC87E /* metroAppTests.xctest */,
2D02E47B1E0B4A5D006451C7 /* metroApp-tvOS.app */,
2D02E4901E0B4A5D006451C7 /* metroApp-tvOSTests.xctest */,
6C1E51FC2099A1910002AA8D /* 平安地铁.app */,
6C93B135240CA03A00933BC0 /* 平安地铁.app */,
6C93B1C6240CA03E00933BC0 /* 平安地铁.app */,
6C93B257240CA04200933BC0 /* 平安地铁.app */,
);
name = Products;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
00E356ED1AD99517003FC87E /* metroAppTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "metroAppTests" */;
buildPhases = (
00E356EA1AD99517003FC87E /* Sources */,
00E356EB1AD99517003FC87E /* Frameworks */,
00E356EC1AD99517003FC87E /* Resources */,
);
buildRules = (
);
dependencies = (
00E356F51AD99517003FC87E /* PBXTargetDependency */,
);
name = metroAppTests;
productName = metroAppTests;
productReference = 00E356EE1AD99517003FC87E /* metroAppTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
13B07F861A680F5B00A75B9A /* metroApp */ = {
isa = PBXNativeTarget;
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "metroApp" */;
buildPhases = (
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = metroApp;
productName = "Hello World";
productReference = 13B07F961A680F5B00A75B9A /* metroApp.app */;
productType = "com.apple.product-type.application";
};
2D02E47A1E0B4A5D006451C7 /* metroApp-tvOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "metroApp-tvOS" */;
buildPhases = (
2D02E4771E0B4A5D006451C7 /* Sources */,
2D02E4781E0B4A5D006451C7 /* Frameworks */,
2D02E4791E0B4A5D006451C7 /* Resources */,
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
);
buildRules = (
);
dependencies = (
);
name = "metroApp-tvOS";
productName = "metroApp-tvOS";
productReference = 2D02E47B1E0B4A5D006451C7 /* metroApp-tvOS.app */;
productType = "com.apple.product-type.application";
};
2D02E48F1E0B4A5D006451C7 /* metroApp-tvOSTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "metroApp-tvOSTests" */;
buildPhases = (
2D02E48C1E0B4A5D006451C7 /* Sources */,
2D02E48D1E0B4A5D006451C7 /* Frameworks */,
2D02E48E1E0B4A5D006451C7 /* Resources */,
);
buildRules = (
);
dependencies = (
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
);
name = "metroApp-tvOSTests";
productName = "metroApp-tvOSTests";
productReference = 2D02E4901E0B4A5D006451C7 /* metroApp-tvOSTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
6C1E517D2099A1910002AA8D /* metroAdhoc */ = {
isa = PBXNativeTarget;
buildConfigurationList = 6C1E51F92099A1910002AA8D /* Build configuration list for PBXNativeTarget "metroAdhoc" */;
buildPhases = (
6C1E517E2099A1910002AA8D /* Sources */,
6C1E51D82099A1910002AA8D /* Frameworks */,
6C1E51F22099A1910002AA8D /* Resources */,
6C1E51F82099A1910002AA8D /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = metroAdhoc;
productName = "Hello World";
productReference = 6C1E51FC2099A1910002AA8D /* 平安地铁.app */;
productType = "com.apple.product-type.application";
};
6C93B0A6240CA03A00933BC0 /* 犀牛企业云开发 */ = {
isa = PBXNativeTarget;
buildConfigurationList = 6C93B132240CA03A00933BC0 /* Build configuration list for PBXNativeTarget "犀牛企业云开发" */;
buildPhases = (
6C93B0A7240CA03A00933BC0 /* Sources */,
6C93B102240CA03A00933BC0 /* Frameworks */,
6C93B12B240CA03A00933BC0 /* Resources */,
6C93B131240CA03A00933BC0 /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = "犀牛企业云开发";
productName = "Hello World";
productReference = 6C93B135240CA03A00933BC0 /* 平安地铁.app */;
productType = "com.apple.product-type.application";
};
6C93B137240CA03E00933BC0 /* 犀牛企业云测试 */ = {
isa = PBXNativeTarget;
buildConfigurationList = 6C93B1C3240CA03E00933BC0 /* Build configuration list for PBXNativeTarget "犀牛企业云测试" */;
buildPhases = (
6C93B138240CA03E00933BC0 /* Sources */,
6C93B193240CA03E00933BC0 /* Frameworks */,
6C93B1BC240CA03E00933BC0 /* Resources */,
6C93B1C2240CA03E00933BC0 /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = "犀牛企业云测试";
productName = "Hello World";
productReference = 6C93B1C6240CA03E00933BC0 /* 平安地铁.app */;
productType = "com.apple.product-type.application";
};
6C93B1C8240CA04200933BC0 /* 平安地铁UAT */ = {
isa = PBXNativeTarget;
buildConfigurationList = 6C93B254240CA04200933BC0 /* Build configuration list for PBXNativeTarget "平安地铁UAT" */;
buildPhases = (
6C93B1C9240CA04200933BC0 /* Sources */,
6C93B224240CA04200933BC0 /* Frameworks */,
6C93B24D240CA04200933BC0 /* Resources */,
6C93B253240CA04200933BC0 /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = "平安地铁UAT";
productName = "Hello World";
productReference = 6C93B257240CA04200933BC0 /* 平安地铁.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
83CBB9F71A601CBA00E9B192 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 610;
ORGANIZATIONNAME = Facebook;
TargetAttributes = {
00E356ED1AD99517003FC87E = {
CreatedOnToolsVersion = 6.2;
DevelopmentTeam = 79EYVFBRS8;
TestTargetID = 13B07F861A680F5B00A75B9A;
};
13B07F861A680F5B00A75B9A = {
DevelopmentTeam = 79EYVFBRS8;
ProvisioningStyle = Manual;
SystemCapabilities = {
com.apple.AccessWiFi = {
enabled = 1;
};
com.apple.ApplicationGroups.iOS = {
enabled = 0;
};
com.apple.BackgroundModes = {
enabled = 1;
};
com.apple.GameCenter.iOS = {
enabled = 0;
};
com.apple.InAppPurchase = {
enabled = 1;
};
com.apple.Keychain = {
enabled = 0;
};
com.apple.Push = {
enabled = 1;
};
};
};
2D02E47A1E0B4A5D006451C7 = {
CreatedOnToolsVersion = 8.2.1;
DevelopmentTeam = 79EYVFBRS8;
ProvisioningStyle = Automatic;
};
2D02E48F1E0B4A5D006451C7 = {
CreatedOnToolsVersion = 8.2.1;
ProvisioningStyle = Automatic;
TestTargetID = 2D02E47A1E0B4A5D006451C7;
};
6C1E517D2099A1910002AA8D = {
DevelopmentTeam = CS92VJG4C8;
ProvisioningStyle = Automatic;
SystemCapabilities = {
com.apple.AccessWiFi = {
enabled = 0;
};
};
};
6C93B0A6240CA03A00933BC0 = {
DevelopmentTeam = CS92VJG4C8;
ProvisioningStyle = Automatic;
};
6C93B137240CA03E00933BC0 = {
DevelopmentTeam = CS92VJG4C8;
ProvisioningStyle = Automatic;
};
6C93B1C8240CA04200933BC0 = {
DevelopmentTeam = CS92VJG4C8;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "metroApp" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
Base,
);
mainGroup = 83CBB9F61A601CBA00E9B192;
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
projectDirPath = "";
projectReferences = (
{
ProductGroup = 6C70BD152373DC940057B094 /* Products */;
ProjectRef = CA186A64A4CE42DE9465B733 /* BVLinearGradient.xcodeproj */;
},
{
ProductGroup = 6C4A01202372713500C80EA2 /* Products */;
ProjectRef = 6C4A011F2372713500C80EA2 /* RCTActionSheet.xcodeproj */;
},
{
ProductGroup = 6C4A01262372716000C80EA2 /* Products */;
ProjectRef = 6C4A01252372716000C80EA2 /* RCTAnimation.xcodeproj */;
},
{
ProductGroup = 6C70BD172373DC940057B094 /* Products */;
ProjectRef = 82714E0743774A33B1DCDDC6 /* RCTBEEPickerManager.xcodeproj */;
},
{
ProductGroup = 6C70BD192373DC940057B094 /* Products */;
ProjectRef = 60586726C68749478227D515 /* RCTCamera.xcodeproj */;
},
{
ProductGroup = 6C4A012F2372719200C80EA2 /* Products */;
ProjectRef = 6C4A012E2372719200C80EA2 /* RCTGeolocation.xcodeproj */;
},
{
ProductGroup = 6C4A0135237271C300C80EA2 /* Products */;
ProjectRef = 6C4A0134237271C300C80EA2 /* RCTImage.xcodeproj */;
},
{
ProductGroup = 6C4A013E237271E900C80EA2 /* Products */;
ProjectRef = 6C4A013D237271E900C80EA2 /* RCTLinking.xcodeproj */;
},
{
ProductGroup = 6C4A01472372721A00C80EA2 /* Products */;
ProjectRef = 6C4A01462372721A00C80EA2 /* RCTNetwork.xcodeproj */;
},
{
ProductGroup = 6C4A01502372725800C80EA2 /* Products */;
ProjectRef = 6C4A014F2372725800C80EA2 /* RCTSettings.xcodeproj */;
},
{
ProductGroup = 6C70BD1F2373DC940057B094 /* Products */;
ProjectRef = 493134705A8D4D158C54BD4C /* RCTSplashScreen.xcodeproj */;
},
{
ProductGroup = 6C4A0159237272C400C80EA2 /* Products */;
ProjectRef = 6C4A0158237272C400C80EA2 /* RCTText.xcodeproj */;
},
{
ProductGroup = 6C4A01622372731700C80EA2 /* Products */;
ProjectRef = 6C4A01612372731700C80EA2 /* RCTVibration.xcodeproj */;
},
{
ProductGroup = 6C70BD1D2373DC940057B094 /* Products */;
ProjectRef = 4D8024508B5149A1A46FC543 /* RCTVideo.xcodeproj */;
},
{
ProductGroup = 6C4A01682372738600C80EA2 /* Products */;
ProjectRef = 6C4A01672372738600C80EA2 /* RCTWebSocket.xcodeproj */;
},
{
ProductGroup = 6C4A009A23726F0F00C80EA2 /* Products */;
ProjectRef = 6C4A009923726F0F00C80EA2 /* React.xcodeproj */;
},
{
ProductGroup = 6C70BD1B2373DC940057B094 /* Products */;
ProjectRef = C5373ABA951E430B8EA0F91C /* RNImagePicker.xcodeproj */;
},
);
projectRoot = "";
targets = (
13B07F861A680F5B00A75B9A /* metroApp */,
6C1E517D2099A1910002AA8D /* metroAdhoc */,
6C93B0A6240CA03A00933BC0 /* 犀牛企业云开发 */,
6C93B137240CA03E00933BC0 /* 犀牛企业云测试 */,
6C93B1C8240CA04200933BC0 /* 平安地铁UAT */,
00E356ED1AD99517003FC87E /* metroAppTests */,
2D02E47A1E0B4A5D006451C7 /* metroApp-tvOS */,
2D02E48F1E0B4A5D006451C7 /* metroApp-tvOSTests */,
);
};
/* End PBXProject section */
/* Begin PBXReferenceProxy section */
6C4A00AD23726F1000C80EA2 /* libReact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libReact.a;
remoteRef = 6C4A00AC23726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00AF23726F1000C80EA2 /* libReact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libReact.a;
remoteRef = 6C4A00AE23726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00B123726F1000C80EA2 /* libyoga.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libyoga.a;
remoteRef = 6C4A00B023726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00B323726F1000C80EA2 /* libyoga.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libyoga.a;
remoteRef = 6C4A00B223726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00B523726F1000C80EA2 /* libcxxreact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libcxxreact.a;
remoteRef = 6C4A00B423726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00B723726F1000C80EA2 /* libcxxreact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libcxxreact.a;
remoteRef = 6C4A00B623726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00B923726F1000C80EA2 /* libjschelpers.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libjschelpers.a;
remoteRef = 6C4A00B823726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00BB23726F1000C80EA2 /* libjschelpers.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libjschelpers.a;
remoteRef = 6C4A00BA23726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00BD23726F1000C80EA2 /* libjsinspector.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libjsinspector.a;
remoteRef = 6C4A00BC23726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00BF23726F1000C80EA2 /* libjsinspector-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libjsinspector-tvOS.a";
remoteRef = 6C4A00BE23726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00C123726F1000C80EA2 /* libthird-party.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libthird-party.a";
remoteRef = 6C4A00C023726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00C323726F1000C80EA2 /* libthird-party.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libthird-party.a";
remoteRef = 6C4A00C223726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00C523726F1000C80EA2 /* libdouble-conversion.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libdouble-conversion.a";
remoteRef = 6C4A00C423726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00C723726F1000C80EA2 /* libdouble-conversion.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libdouble-conversion.a";
remoteRef = 6C4A00C623726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00C923726F1000C80EA2 /* libprivatedata.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libprivatedata.a;
remoteRef = 6C4A00C823726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A00CB23726F1000C80EA2 /* libprivatedata-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libprivatedata-tvOS.a";
remoteRef = 6C4A00CA23726F1000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A01242372713600C80EA2 /* libRCTActionSheet.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTActionSheet.a;
remoteRef = 6C4A01232372713600C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A012B2372716000C80EA2 /* libRCTAnimation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTAnimation.a;
remoteRef = 6C4A012A2372716000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A012D2372716000C80EA2 /* libRCTAnimation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTAnimation.a;
remoteRef = 6C4A012C2372716000C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A01332372719200C80EA2 /* libRCTGeolocation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTGeolocation.a;
remoteRef = 6C4A01322372719200C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A013A237271C400C80EA2 /* libRCTImage.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTImage.a;
remoteRef = 6C4A0139237271C400C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A013C237271C400C80EA2 /* libRCTImage-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTImage-tvOS.a";
remoteRef = 6C4A013B237271C400C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A0143237271EA00C80EA2 /* libRCTLinking.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTLinking.a;
remoteRef = 6C4A0142237271EA00C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A0145237271EA00C80EA2 /* libRCTLinking-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTLinking-tvOS.a";
remoteRef = 6C4A0144237271EA00C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A014C2372721A00C80EA2 /* libRCTNetwork.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTNetwork.a;
remoteRef = 6C4A014B2372721A00C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A014E2372721A00C80EA2 /* libRCTNetwork-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTNetwork-tvOS.a";
remoteRef = 6C4A014D2372721A00C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A01552372725800C80EA2 /* libRCTSettings.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTSettings.a;
remoteRef = 6C4A01542372725800C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A01572372725800C80EA2 /* libRCTSettings-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTSettings-tvOS.a";
remoteRef = 6C4A01562372725800C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A015E237272C400C80EA2 /* libRCTText.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTText.a;
remoteRef = 6C4A015D237272C400C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A0160237272C400C80EA2 /* libRCTText-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTText-tvOS.a";
remoteRef = 6C4A015F237272C400C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A01662372731800C80EA2 /* libRCTVibration.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTVibration.a;
remoteRef = 6C4A01652372731800C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A016F2372738600C80EA2 /* libRCTWebSocket.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTWebSocket.a;
remoteRef = 6C4A016E2372738600C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A01712372738600C80EA2 /* libRCTWebSocket-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTWebSocket-tvOS.a";
remoteRef = 6C4A01702372738600C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A01732372738600C80EA2 /* libfishhook.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libfishhook.a;
remoteRef = 6C4A01722372738600C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C4A01752372738600C80EA2 /* libfishhook-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libfishhook-tvOS.a";
remoteRef = 6C4A01742372738600C80EA2 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C70BD242373DC940057B094 /* libBVLinearGradient.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libBVLinearGradient.a;
remoteRef = 6C70BD232373DC940057B094 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C70BD262373DC940057B094 /* libBVLinearGradient.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libBVLinearGradient.a;
remoteRef = 6C70BD252373DC940057B094 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C70BD292373DC940057B094 /* libRCTBEEPickerManager.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTBEEPickerManager.a;
remoteRef = 6C70BD282373DC940057B094 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C70BD2C2373DC940057B094 /* libRCTCamera.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTCamera.a;
remoteRef = 6C70BD2B2373DC940057B094 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C70BD2F2373DC940057B094 /* libRCTSplashScreen.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTSplashScreen.a;
remoteRef = 6C70BD2E2373DC940057B094 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C70BD332373DC940057B094 /* libRCTVideo.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTVideo.a;
remoteRef = 6C70BD322373DC940057B094 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C70BD352373DC940057B094 /* libRCTVideo.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTVideo.a;
remoteRef = 6C70BD342373DC940057B094 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C70BD382373DC940057B094 /* libRNImagePicker.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRNImagePicker.a;
remoteRef = 6C70BD372373DC940057B094 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
/* End PBXReferenceProxy section */
/* Begin PBXResourcesBuildPhase section */
00E356EC1AD99517003FC87E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8E1A680F5B00A75B9A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B05A240A6D3800933BC0 /* IQKeyboardManager.bundle in Resources */,
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
6CDEE35620886F6200CA7B75 /* ZLPhotoBrowserCell.xib in Resources */,
6CDEE35420886F6200CA7B75 /* ZLPhotoBrowser.bundle in Resources */,
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
6CA360FA240CCFCF00941ED7 /* 平安地铁生产环境.plist in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4791E0B4A5D006451C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48E1E0B4A5D006451C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
6C1E51F22099A1910002AA8D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B05B240A6D3800933BC0 /* IQKeyboardManager.bundle in Resources */,
6C1E51F32099A1910002AA8D /* Images.xcassets in Resources */,
6C93B265240CA23400933BC0 /* 平安地铁测试环境.plist in Resources */,
6C1E51F42099A1910002AA8D /* ZLPhotoBrowserCell.xib in Resources */,
6C1E51F52099A1910002AA8D /* ZLPhotoBrowser.bundle in Resources */,
6C1E51F62099A1910002AA8D /* LaunchScreen.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B12B240CA03A00933BC0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B3B5240CC88D00933BC0 /* 犀牛企业云开发.plist in Resources */,
6C93B12C240CA03A00933BC0 /* IQKeyboardManager.bundle in Resources */,
6C93B12D240CA03A00933BC0 /* Images.xcassets in Resources */,
6C93B12E240CA03A00933BC0 /* ZLPhotoBrowserCell.xib in Resources */,
6C93B12F240CA03A00933BC0 /* ZLPhotoBrowser.bundle in Resources */,
6C93B130240CA03A00933BC0 /* LaunchScreen.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B1BC240CA03E00933BC0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B3B6240CC89F00933BC0 /* 犀牛企业云测试.plist in Resources */,
6C93B1BD240CA03E00933BC0 /* IQKeyboardManager.bundle in Resources */,
6C93B1BE240CA03E00933BC0 /* Images.xcassets in Resources */,
6C93B1BF240CA03E00933BC0 /* ZLPhotoBrowserCell.xib in Resources */,
6C93B1C0240CA03E00933BC0 /* ZLPhotoBrowser.bundle in Resources */,
6C93B1C1240CA03E00933BC0 /* LaunchScreen.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B24D240CA04200933BC0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B24E240CA04200933BC0 /* IQKeyboardManager.bundle in Resources */,
6C93B24F240CA04200933BC0 /* Images.xcassets in Resources */,
6C93B250240CA04200933BC0 /* ZLPhotoBrowserCell.xib in Resources */,
6C93B251240CA04200933BC0 /* ZLPhotoBrowser.bundle in Resources */,
6C93B252240CA04200933BC0 /* LaunchScreen.xib in Resources */,
6C93B263240CA23400933BC0 /* 犀牛企业云UAT.plist in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native code and images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
};
2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native Code And Images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
};
6C1E51F82099A1910002AA8D /* Bundle React Native code and images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native code and images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
};
6C93B131240CA03A00933BC0 /* Bundle React Native code and images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native code and images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
};
6C93B1C2240CA03E00933BC0 /* Bundle React Native code and images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native code and images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
};
6C93B253240CA04200933BC0 /* Bundle React Native code and images */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Bundle React Native code and images";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
00E356EA1AD99517003FC87E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
00E356F31AD99517003FC87E /* metroAppTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F871A680F5B00A75B9A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6CDEE38F20887D6D00CA7B75 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
6C93B062240A6D3800933BC0 /* IQUIScrollView+Additions.m in Sources */,
6CDEE34320886F6100CA7B75 /* ZLPhotoBrowserCell.m in Sources */,
6CDEE41D2088805800CA7B75 /* UIImage+WebP.m in Sources */,
6CDEE37420887D3600CA7B75 /* SelectCollectionCell.m in Sources */,
6C93B05E240A6D3800933BC0 /* IQNSArray+Sort.m in Sources */,
6C10B803208DF90100B414B4 /* BaseDomain.m in Sources */,
6CDEE4242088805900CA7B75 /* SDWebImageDownloader.m in Sources */,
6CDEE35B20886F6200CA7B75 /* ZLEditVideoController.m in Sources */,
6CDEE42F2088805900CA7B75 /* NSImage+WebCache.m in Sources */,
6C10B7F9208DF8F800B414B4 /* MBProgressHUD.m in Sources */,
6C93B058240A6D3800933BC0 /* IQPreviousNextView.m in Sources */,
6CDEE39120887D6D00CA7B75 /* MASCompositeConstraint.m in Sources */,
6CDEE39720887D6D00CA7B75 /* MASViewConstraint.m in Sources */,
6C10B804208DF90100B414B4 /* BaseRequest.m in Sources */,
6CDEE34520886F6100CA7B75 /* ZLPhotoManager.m in Sources */,
6C93B04E240A6D3700933BC0 /* IQTextView.m in Sources */,
6CDEE4332088805900CA7B75 /* UIView+WebCache.m in Sources */,
6CDEE4222088805900CA7B75 /* UIImage+ForceDecode.m in Sources */,
6CDEE4352088805900CA7B75 /* UIButton+WebCache.m in Sources */,
6C10B821208DF96D00B414B4 /* FileUploadInfo.m in Sources */,
6CDEE41F2088805900CA7B75 /* SDWebImageManager.m in Sources */,
6C10B81B208DF95300B414B4 /* FileUploadAuthInfoGetRequest.m in Sources */,
6CDEE42D2088805900CA7B75 /* NSData+ImageContentType.m in Sources */,
6CDEE4392088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m in Sources */,
6C93B060240A6D3800933BC0 /* IQUITextFieldView+Additions.m in Sources */,
6CDEE4292088805900CA7B75 /* SDWebImagePrefetcher.m in Sources */,
6C10B8DB208ED74D00B414B4 /* AFSecurityPolicy.m in Sources */,
6CDEE35720886F6200CA7B75 /* ZLShowBigImgViewController.m in Sources */,
6CDEE39520887D6D00CA7B75 /* View+MASAdditions.m in Sources */,
6C93B054240A6D3700933BC0 /* IQBarButtonItem.m in Sources */,
6CDEE4212088805900CA7B75 /* SDWebImageFrame.m in Sources */,
6CDEE41E2088805900CA7B75 /* MKAnnotationView+WebCache.m in Sources */,
6CDEE39320887D6D00CA7B75 /* MASLayoutConstraint.m in Sources */,
6CDEE4262088805900CA7B75 /* UIImage+MultiFormat.m in Sources */,
6C10B8D7208ED74D00B414B4 /* AFHTTPSessionManager.m in Sources */,
6C93B064240A6D3800933BC0 /* IQUIView+Hierarchy.m in Sources */,
6C10B7FA208DF8F800B414B4 /* xn_base_Client_AF.m in Sources */,
6CDEE34220886F6100CA7B75 /* ZLBigImageCell.m in Sources */,
6CDEE34A20886F6100CA7B75 /* ZLPhotoBrowser.m in Sources */,
6C93B05C240A6D3800933BC0 /* IQKeyboardManager.m in Sources */,
6C93B066240A6D3800933BC0 /* IQUIViewController+Additions.m in Sources */,
6CDEE4362088805900CA7B75 /* SDWebImageWebPCoder.m in Sources */,
6CDEE34B20886F6100CA7B75 /* ZLCustomCamera.m in Sources */,
6C93B056240A6D3700933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */,
6CDEE42E2088805900CA7B75 /* UIImageView+WebCache.m in Sources */,
6CDEE4322088805900CA7B75 /* UIView+WebCacheOperation.m in Sources */,
6CDEE4202088805900CA7B75 /* UIImageView+HighlightedWebCache.m in Sources */,
6CDEE34F20886F6200CA7B75 /* ZLEditViewController.m in Sources */,
6CDEE39820887D6D00CA7B75 /* MASViewAttribute.m in Sources */,
6C10B8D9208ED74D00B414B4 /* AFURLRequestSerialization.m in Sources */,
6CDEE34D20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m in Sources */,
6CDEE35320886F6200CA7B75 /* UIButton+EnlargeTouchArea.m in Sources */,
6CDEE42C2088805900CA7B75 /* SDWebImageDownloaderOperation.m in Sources */,
6C93B052240A6D3700933BC0 /* IQTitleBarButtonItem.m in Sources */,
6CDEE4282088805900CA7B75 /* SDWebImageCompat.m in Sources */,
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
6CDEE4232088805900CA7B75 /* SDWebImageCodersManager.m in Sources */,
6CDEE43C208887E600CA7B75 /* ZLPhotoActionSheet.m in Sources */,
6CDEE34420886F6100CA7B75 /* ZLForceTouchPreviewController.m in Sources */,
6CDEE34720886F6100CA7B75 /* ZLProgressHUD.m in Sources */,
6C10B7F3208DF75C00B414B4 /* XNCameraManager.m in Sources */,
6CDEE39620887D6D00CA7B75 /* MASConstraint.m in Sources */,
6CDEE35A20886F6200CA7B75 /* ZLPhotoModel.m in Sources */,
6CDEE39220887D6D00CA7B75 /* MASConstraintMaker.m in Sources */,
6CDEE35820886F6200CA7B75 /* ZLThumbnailViewController.m in Sources */,
6CDEE42B2088805900CA7B75 /* SDImageCache.m in Sources */,
6C93B050240A6D3700933BC0 /* IQToolbar.m in Sources */,
6C10B81E208DF96200B414B4 /* FileUploadAuthInfoGetResponse.m in Sources */,
6C10B8D8208ED74D00B414B4 /* AFURLSessionManager.m in Sources */,
6CDEE35220886F6200CA7B75 /* ZLNoAuthorityViewController.m in Sources */,
6CDEE34E20886F6200CA7B75 /* ToastUtils.m in Sources */,
6CDEE34C20886F6100CA7B75 /* ZLPlayer.m in Sources */,
6CDEE4252088805900CA7B75 /* UIImage+GIF.m in Sources */,
6CDEE42A2088805900CA7B75 /* SDWebImageCoder.m in Sources */,
6C10B802208DF90100B414B4 /* BaseResponse.m in Sources */,
6CDEE4272088805900CA7B75 /* SDWebImageCoderHelper.m in Sources */,
6CDEE39020887D6D00CA7B75 /* ViewController+MASAdditions.m in Sources */,
6CDEE4342088805900CA7B75 /* SDWebImageImageIOCoder.m in Sources */,
6CDEE4312088805900CA7B75 /* SDImageCacheConfig.m in Sources */,
6CDEE4302088805900CA7B75 /* SDWebImageGIFCoder.m in Sources */,
13B07FC11A68108700A75B9A /* main.m in Sources */,
6CDEE39420887D6D00CA7B75 /* NSArray+MASAdditions.m in Sources */,
6CA2D8772068DF24004E9E33 /* BlueToolManage.m in Sources */,
6CDEE35120886F6200CA7B75 /* ZLCollectionCell.m in Sources */,
6C93B068240A6D3800933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */,
6C10B8D6208ED74D00B414B4 /* AFURLResponseSerialization.m in Sources */,
1BFC23572176D8CB00AE76D9 /* RequestData.m in Sources */,
6C10B8DA208ED74D00B414B4 /* AFNetworkReachabilityManager.m in Sources */,
6CDEE35C20886F6200CA7B75 /* ZLPhotoConfiguration.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4771E0B4A5D006451C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48C1E0B4A5D006451C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2DCD954D1E0B4F2C00145EB5 /* metroAppTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C1E517E2099A1910002AA8D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C1E517F2099A1910002AA8D /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
6C93B063240A6D3800933BC0 /* IQUIScrollView+Additions.m in Sources */,
6C1E51802099A1910002AA8D /* ZLPhotoBrowserCell.m in Sources */,
6C1E51812099A1910002AA8D /* UIImage+WebP.m in Sources */,
6C1E51822099A1910002AA8D /* SelectCollectionCell.m in Sources */,
6C93B05F240A6D3800933BC0 /* IQNSArray+Sort.m in Sources */,
6C1E51832099A1910002AA8D /* BaseDomain.m in Sources */,
6C1E51842099A1910002AA8D /* SDWebImageDownloader.m in Sources */,
6C1E51852099A1910002AA8D /* ZLEditVideoController.m in Sources */,
6C1E51862099A1910002AA8D /* NSImage+WebCache.m in Sources */,
6C1E51872099A1910002AA8D /* MBProgressHUD.m in Sources */,
6C93B059240A6D3800933BC0 /* IQPreviousNextView.m in Sources */,
6C1E51882099A1910002AA8D /* MASCompositeConstraint.m in Sources */,
6C1E518A2099A1910002AA8D /* MASViewConstraint.m in Sources */,
6C1E518B2099A1910002AA8D /* BaseRequest.m in Sources */,
6C1E518C2099A1910002AA8D /* ZLPhotoManager.m in Sources */,
6C93B04F240A6D3700933BC0 /* IQTextView.m in Sources */,
6C1E518D2099A1910002AA8D /* UIView+WebCache.m in Sources */,
6C1E518E2099A1910002AA8D /* UIImage+ForceDecode.m in Sources */,
6C1E51902099A1910002AA8D /* UIButton+WebCache.m in Sources */,
6C1E51922099A1910002AA8D /* FileUploadInfo.m in Sources */,
6C1E51932099A1910002AA8D /* SDWebImageManager.m in Sources */,
6C1E51942099A1910002AA8D /* FileUploadAuthInfoGetRequest.m in Sources */,
6C1E51952099A1910002AA8D /* NSData+ImageContentType.m in Sources */,
6C1E51962099A1910002AA8D /* NSBundle+ZLPhotoBrowser.m in Sources */,
6C93B061240A6D3800933BC0 /* IQUITextFieldView+Additions.m in Sources */,
6C1E51972099A1910002AA8D /* SDWebImagePrefetcher.m in Sources */,
6C1E51982099A1910002AA8D /* AFSecurityPolicy.m in Sources */,
6C1E519A2099A1910002AA8D /* ZLShowBigImgViewController.m in Sources */,
6C1E519B2099A1910002AA8D /* View+MASAdditions.m in Sources */,
6C93B055240A6D3700933BC0 /* IQBarButtonItem.m in Sources */,
6C1E519C2099A1910002AA8D /* SDWebImageFrame.m in Sources */,
6C1E519D2099A1910002AA8D /* MKAnnotationView+WebCache.m in Sources */,
6C1E519E2099A1910002AA8D /* MASLayoutConstraint.m in Sources */,
6C1E519F2099A1910002AA8D /* UIImage+MultiFormat.m in Sources */,
6C1E51A02099A1910002AA8D /* AFHTTPSessionManager.m in Sources */,
6C93B065240A6D3800933BC0 /* IQUIView+Hierarchy.m in Sources */,
6C1E51A22099A1910002AA8D /* xn_base_Client_AF.m in Sources */,
6C1E51A32099A1910002AA8D /* ZLBigImageCell.m in Sources */,
6C1E51A42099A1910002AA8D /* ZLPhotoBrowser.m in Sources */,
6C93B05D240A6D3800933BC0 /* IQKeyboardManager.m in Sources */,
6C93B067240A6D3800933BC0 /* IQUIViewController+Additions.m in Sources */,
6C1E51A52099A1910002AA8D /* SDWebImageWebPCoder.m in Sources */,
6C1E51A62099A1910002AA8D /* ZLCustomCamera.m in Sources */,
6C93B057240A6D3800933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */,
6C1E51A82099A1910002AA8D /* UIImageView+WebCache.m in Sources */,
6C1E51A92099A1910002AA8D /* UIView+WebCacheOperation.m in Sources */,
6C1E51AA2099A1910002AA8D /* UIImageView+HighlightedWebCache.m in Sources */,
6C1E51AC2099A1910002AA8D /* ZLEditViewController.m in Sources */,
6C1E51AD2099A1910002AA8D /* MASViewAttribute.m in Sources */,
6C1E51B02099A1910002AA8D /* AFURLRequestSerialization.m in Sources */,
6C1E51B12099A1910002AA8D /* UIImage+ZLPhotoBrowser.m in Sources */,
6C1E51B42099A1910002AA8D /* UIButton+EnlargeTouchArea.m in Sources */,
6C1E51B62099A1910002AA8D /* SDWebImageDownloaderOperation.m in Sources */,
6C93B053240A6D3700933BC0 /* IQTitleBarButtonItem.m in Sources */,
6C1E51B72099A1910002AA8D /* SDWebImageCompat.m in Sources */,
6C1E51B82099A1910002AA8D /* AppDelegate.m in Sources */,
6C1E51B92099A1910002AA8D /* SDWebImageCodersManager.m in Sources */,
6C1E51BA2099A1910002AA8D /* ZLPhotoActionSheet.m in Sources */,
6C1E51BB2099A1910002AA8D /* ZLForceTouchPreviewController.m in Sources */,
6C1E51BC2099A1910002AA8D /* ZLProgressHUD.m in Sources */,
6C1E51BD2099A1910002AA8D /* XNCameraManager.m in Sources */,
6C1E51BE2099A1910002AA8D /* MASConstraint.m in Sources */,
6C1E51BF2099A1910002AA8D /* ZLPhotoModel.m in Sources */,
6C1E51C02099A1910002AA8D /* MASConstraintMaker.m in Sources */,
6C1E51C12099A1910002AA8D /* ZLThumbnailViewController.m in Sources */,
6C1E51C22099A1910002AA8D /* SDImageCache.m in Sources */,
6C93B051240A6D3700933BC0 /* IQToolbar.m in Sources */,
6C1E51C32099A1910002AA8D /* FileUploadAuthInfoGetResponse.m in Sources */,
6C1E51C42099A1910002AA8D /* AFURLSessionManager.m in Sources */,
6C1E51C52099A1910002AA8D /* ZLNoAuthorityViewController.m in Sources */,
6C1E51C62099A1910002AA8D /* ToastUtils.m in Sources */,
6C1E51C72099A1910002AA8D /* ZLPlayer.m in Sources */,
6C1E51C82099A1910002AA8D /* UIImage+GIF.m in Sources */,
6C1E51CA2099A1910002AA8D /* SDWebImageCoder.m in Sources */,
6C1E51CB2099A1910002AA8D /* BaseResponse.m in Sources */,
6C1E51CC2099A1910002AA8D /* SDWebImageCoderHelper.m in Sources */,
6C1E51CD2099A1910002AA8D /* ViewController+MASAdditions.m in Sources */,
6C1E51CE2099A1910002AA8D /* SDWebImageImageIOCoder.m in Sources */,
6C1E51CF2099A1910002AA8D /* SDImageCacheConfig.m in Sources */,
6C1E51D02099A1910002AA8D /* SDWebImageGIFCoder.m in Sources */,
6C1E51D12099A1910002AA8D /* main.m in Sources */,
6C1E51D22099A1910002AA8D /* NSArray+MASAdditions.m in Sources */,
6C1E51D32099A1910002AA8D /* BlueToolManage.m in Sources */,
6C1E51D42099A1910002AA8D /* ZLCollectionCell.m in Sources */,
6C93B069240A6D3800933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */,
6C1E51D52099A1910002AA8D /* AFURLResponseSerialization.m in Sources */,
1BFC23582176D8CB00AE76D9 /* RequestData.m in Sources */,
6C1E51D62099A1910002AA8D /* AFNetworkReachabilityManager.m in Sources */,
6C1E51D72099A1910002AA8D /* ZLPhotoConfiguration.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B0A7240CA03A00933BC0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B0A8240CA03A00933BC0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
6C93B0A9240CA03A00933BC0 /* IQUIScrollView+Additions.m in Sources */,
6C93B0AA240CA03A00933BC0 /* ZLPhotoBrowserCell.m in Sources */,
6C93B0AB240CA03A00933BC0 /* UIImage+WebP.m in Sources */,
6C93B0AC240CA03A00933BC0 /* SelectCollectionCell.m in Sources */,
6C93B0AD240CA03A00933BC0 /* IQNSArray+Sort.m in Sources */,
6C93B0AE240CA03A00933BC0 /* BaseDomain.m in Sources */,
6C93B0AF240CA03A00933BC0 /* SDWebImageDownloader.m in Sources */,
6C93B0B0240CA03A00933BC0 /* ZLEditVideoController.m in Sources */,
6C93B0B1240CA03A00933BC0 /* NSImage+WebCache.m in Sources */,
6C93B0B2240CA03A00933BC0 /* MBProgressHUD.m in Sources */,
6C93B0B3240CA03A00933BC0 /* IQPreviousNextView.m in Sources */,
6C93B0B4240CA03A00933BC0 /* MASCompositeConstraint.m in Sources */,
6C93B0B5240CA03A00933BC0 /* MASViewConstraint.m in Sources */,
6C93B0B6240CA03A00933BC0 /* BaseRequest.m in Sources */,
6C93B0B7240CA03A00933BC0 /* ZLPhotoManager.m in Sources */,
6C93B0B8240CA03A00933BC0 /* IQTextView.m in Sources */,
6C93B0B9240CA03A00933BC0 /* UIView+WebCache.m in Sources */,
6C93B0BA240CA03A00933BC0 /* UIImage+ForceDecode.m in Sources */,
6C93B0BB240CA03A00933BC0 /* UIButton+WebCache.m in Sources */,
6C93B0BC240CA03A00933BC0 /* FileUploadInfo.m in Sources */,
6C93B0BD240CA03A00933BC0 /* SDWebImageManager.m in Sources */,
6C93B0BE240CA03A00933BC0 /* FileUploadAuthInfoGetRequest.m in Sources */,
6C93B0BF240CA03A00933BC0 /* NSData+ImageContentType.m in Sources */,
6C93B0C0240CA03A00933BC0 /* NSBundle+ZLPhotoBrowser.m in Sources */,
6C93B0C1240CA03A00933BC0 /* IQUITextFieldView+Additions.m in Sources */,
6C93B0C2240CA03A00933BC0 /* SDWebImagePrefetcher.m in Sources */,
6C93B0C3240CA03A00933BC0 /* AFSecurityPolicy.m in Sources */,
6C93B0C4240CA03A00933BC0 /* ZLShowBigImgViewController.m in Sources */,
6C93B0C5240CA03A00933BC0 /* View+MASAdditions.m in Sources */,
6C93B0C6240CA03A00933BC0 /* IQBarButtonItem.m in Sources */,
6C93B0C7240CA03A00933BC0 /* SDWebImageFrame.m in Sources */,
6C93B0C8240CA03A00933BC0 /* MKAnnotationView+WebCache.m in Sources */,
6C93B0C9240CA03A00933BC0 /* MASLayoutConstraint.m in Sources */,
6C93B0CA240CA03A00933BC0 /* UIImage+MultiFormat.m in Sources */,
6C93B0CB240CA03A00933BC0 /* AFHTTPSessionManager.m in Sources */,
6C93B0CC240CA03A00933BC0 /* IQUIView+Hierarchy.m in Sources */,
6C93B0CD240CA03A00933BC0 /* xn_base_Client_AF.m in Sources */,
6C93B0CE240CA03A00933BC0 /* ZLBigImageCell.m in Sources */,
6C93B0CF240CA03A00933BC0 /* ZLPhotoBrowser.m in Sources */,
6C93B0D0240CA03A00933BC0 /* IQKeyboardManager.m in Sources */,
6C93B0D1240CA03A00933BC0 /* IQUIViewController+Additions.m in Sources */,
6C93B0D2240CA03A00933BC0 /* SDWebImageWebPCoder.m in Sources */,
6C93B0D3240CA03A00933BC0 /* ZLCustomCamera.m in Sources */,
6C93B0D4240CA03A00933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */,
6C93B0D5240CA03A00933BC0 /* UIImageView+WebCache.m in Sources */,
6C93B0D6240CA03A00933BC0 /* UIView+WebCacheOperation.m in Sources */,
6C93B0D7240CA03A00933BC0 /* UIImageView+HighlightedWebCache.m in Sources */,
6C93B0D8240CA03A00933BC0 /* ZLEditViewController.m in Sources */,
6C93B0D9240CA03A00933BC0 /* MASViewAttribute.m in Sources */,
6C93B0DA240CA03A00933BC0 /* AFURLRequestSerialization.m in Sources */,
6C93B0DB240CA03A00933BC0 /* UIImage+ZLPhotoBrowser.m in Sources */,
6C93B0DC240CA03A00933BC0 /* UIButton+EnlargeTouchArea.m in Sources */,
6C93B0DD240CA03A00933BC0 /* SDWebImageDownloaderOperation.m in Sources */,
6C93B0DE240CA03A00933BC0 /* IQTitleBarButtonItem.m in Sources */,
6C93B0DF240CA03A00933BC0 /* SDWebImageCompat.m in Sources */,
6C93B0E0240CA03A00933BC0 /* AppDelegate.m in Sources */,
6C93B0E1240CA03A00933BC0 /* SDWebImageCodersManager.m in Sources */,
6C93B0E2240CA03A00933BC0 /* ZLPhotoActionSheet.m in Sources */,
6C93B0E3240CA03A00933BC0 /* ZLForceTouchPreviewController.m in Sources */,
6C93B0E4240CA03A00933BC0 /* ZLProgressHUD.m in Sources */,
6C93B0E5240CA03A00933BC0 /* XNCameraManager.m in Sources */,
6C93B0E6240CA03A00933BC0 /* MASConstraint.m in Sources */,
6C93B0E7240CA03A00933BC0 /* ZLPhotoModel.m in Sources */,
6C93B0E8240CA03A00933BC0 /* MASConstraintMaker.m in Sources */,
6C93B0E9240CA03A00933BC0 /* ZLThumbnailViewController.m in Sources */,
6C93B0EA240CA03A00933BC0 /* SDImageCache.m in Sources */,
6C93B0EB240CA03A00933BC0 /* IQToolbar.m in Sources */,
6C93B0EC240CA03A00933BC0 /* FileUploadAuthInfoGetResponse.m in Sources */,
6C93B0ED240CA03A00933BC0 /* AFURLSessionManager.m in Sources */,
6C93B0EE240CA03A00933BC0 /* ZLNoAuthorityViewController.m in Sources */,
6C93B0EF240CA03A00933BC0 /* ToastUtils.m in Sources */,
6C93B0F0240CA03A00933BC0 /* ZLPlayer.m in Sources */,
6C93B0F1240CA03A00933BC0 /* UIImage+GIF.m in Sources */,
6C93B0F2240CA03A00933BC0 /* SDWebImageCoder.m in Sources */,
6C93B0F3240CA03A00933BC0 /* BaseResponse.m in Sources */,
6C93B0F4240CA03A00933BC0 /* SDWebImageCoderHelper.m in Sources */,
6C93B0F5240CA03A00933BC0 /* ViewController+MASAdditions.m in Sources */,
6C93B0F6240CA03A00933BC0 /* SDWebImageImageIOCoder.m in Sources */,
6C93B0F7240CA03A00933BC0 /* SDImageCacheConfig.m in Sources */,
6C93B0F8240CA03A00933BC0 /* SDWebImageGIFCoder.m in Sources */,
6C93B0F9240CA03A00933BC0 /* main.m in Sources */,
6C93B0FA240CA03A00933BC0 /* NSArray+MASAdditions.m in Sources */,
6C93B0FB240CA03A00933BC0 /* BlueToolManage.m in Sources */,
6C93B0FC240CA03A00933BC0 /* ZLCollectionCell.m in Sources */,
6C93B0FD240CA03A00933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */,
6C93B0FE240CA03A00933BC0 /* AFURLResponseSerialization.m in Sources */,
6C93B0FF240CA03A00933BC0 /* RequestData.m in Sources */,
6C93B100240CA03A00933BC0 /* AFNetworkReachabilityManager.m in Sources */,
6C93B101240CA03A00933BC0 /* ZLPhotoConfiguration.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B138240CA03E00933BC0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B139240CA03E00933BC0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
6C93B13A240CA03E00933BC0 /* IQUIScrollView+Additions.m in Sources */,
6C93B13B240CA03E00933BC0 /* ZLPhotoBrowserCell.m in Sources */,
6C93B13C240CA03E00933BC0 /* UIImage+WebP.m in Sources */,
6C93B13D240CA03E00933BC0 /* SelectCollectionCell.m in Sources */,
6C93B13E240CA03E00933BC0 /* IQNSArray+Sort.m in Sources */,
6C93B13F240CA03E00933BC0 /* BaseDomain.m in Sources */,
6C93B140240CA03E00933BC0 /* SDWebImageDownloader.m in Sources */,
6C93B141240CA03E00933BC0 /* ZLEditVideoController.m in Sources */,
6C93B142240CA03E00933BC0 /* NSImage+WebCache.m in Sources */,
6C93B143240CA03E00933BC0 /* MBProgressHUD.m in Sources */,
6C93B144240CA03E00933BC0 /* IQPreviousNextView.m in Sources */,
6C93B145240CA03E00933BC0 /* MASCompositeConstraint.m in Sources */,
6C93B146240CA03E00933BC0 /* MASViewConstraint.m in Sources */,
6C93B147240CA03E00933BC0 /* BaseRequest.m in Sources */,
6C93B148240CA03E00933BC0 /* ZLPhotoManager.m in Sources */,
6C93B149240CA03E00933BC0 /* IQTextView.m in Sources */,
6C93B14A240CA03E00933BC0 /* UIView+WebCache.m in Sources */,
6C93B14B240CA03E00933BC0 /* UIImage+ForceDecode.m in Sources */,
6C93B14C240CA03E00933BC0 /* UIButton+WebCache.m in Sources */,
6C93B14D240CA03E00933BC0 /* FileUploadInfo.m in Sources */,
6C93B14E240CA03E00933BC0 /* SDWebImageManager.m in Sources */,
6C93B14F240CA03E00933BC0 /* FileUploadAuthInfoGetRequest.m in Sources */,
6C93B150240CA03E00933BC0 /* NSData+ImageContentType.m in Sources */,
6C93B151240CA03E00933BC0 /* NSBundle+ZLPhotoBrowser.m in Sources */,
6C93B152240CA03E00933BC0 /* IQUITextFieldView+Additions.m in Sources */,
6C93B153240CA03E00933BC0 /* SDWebImagePrefetcher.m in Sources */,
6C93B154240CA03E00933BC0 /* AFSecurityPolicy.m in Sources */,
6C93B155240CA03E00933BC0 /* ZLShowBigImgViewController.m in Sources */,
6C93B156240CA03E00933BC0 /* View+MASAdditions.m in Sources */,
6C93B157240CA03E00933BC0 /* IQBarButtonItem.m in Sources */,
6C93B158240CA03E00933BC0 /* SDWebImageFrame.m in Sources */,
6C93B159240CA03E00933BC0 /* MKAnnotationView+WebCache.m in Sources */,
6C93B15A240CA03E00933BC0 /* MASLayoutConstraint.m in Sources */,
6C93B15B240CA03E00933BC0 /* UIImage+MultiFormat.m in Sources */,
6C93B15C240CA03E00933BC0 /* AFHTTPSessionManager.m in Sources */,
6C93B15D240CA03E00933BC0 /* IQUIView+Hierarchy.m in Sources */,
6C93B15E240CA03E00933BC0 /* xn_base_Client_AF.m in Sources */,
6C93B15F240CA03E00933BC0 /* ZLBigImageCell.m in Sources */,
6C93B160240CA03E00933BC0 /* ZLPhotoBrowser.m in Sources */,
6C93B161240CA03E00933BC0 /* IQKeyboardManager.m in Sources */,
6C93B162240CA03E00933BC0 /* IQUIViewController+Additions.m in Sources */,
6C93B163240CA03E00933BC0 /* SDWebImageWebPCoder.m in Sources */,
6C93B164240CA03E00933BC0 /* ZLCustomCamera.m in Sources */,
6C93B165240CA03E00933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */,
6C93B166240CA03E00933BC0 /* UIImageView+WebCache.m in Sources */,
6C93B167240CA03E00933BC0 /* UIView+WebCacheOperation.m in Sources */,
6C93B168240CA03E00933BC0 /* UIImageView+HighlightedWebCache.m in Sources */,
6C93B169240CA03E00933BC0 /* ZLEditViewController.m in Sources */,
6C93B16A240CA03E00933BC0 /* MASViewAttribute.m in Sources */,
6C93B16B240CA03E00933BC0 /* AFURLRequestSerialization.m in Sources */,
6C93B16C240CA03E00933BC0 /* UIImage+ZLPhotoBrowser.m in Sources */,
6C93B16D240CA03E00933BC0 /* UIButton+EnlargeTouchArea.m in Sources */,
6C93B16E240CA03E00933BC0 /* SDWebImageDownloaderOperation.m in Sources */,
6C93B16F240CA03E00933BC0 /* IQTitleBarButtonItem.m in Sources */,
6C93B170240CA03E00933BC0 /* SDWebImageCompat.m in Sources */,
6C93B171240CA03E00933BC0 /* AppDelegate.m in Sources */,
6C93B172240CA03E00933BC0 /* SDWebImageCodersManager.m in Sources */,
6C93B173240CA03E00933BC0 /* ZLPhotoActionSheet.m in Sources */,
6C93B174240CA03E00933BC0 /* ZLForceTouchPreviewController.m in Sources */,
6C93B175240CA03E00933BC0 /* ZLProgressHUD.m in Sources */,
6C93B176240CA03E00933BC0 /* XNCameraManager.m in Sources */,
6C93B177240CA03E00933BC0 /* MASConstraint.m in Sources */,
6C93B178240CA03E00933BC0 /* ZLPhotoModel.m in Sources */,
6C93B179240CA03E00933BC0 /* MASConstraintMaker.m in Sources */,
6C93B17A240CA03E00933BC0 /* ZLThumbnailViewController.m in Sources */,
6C93B17B240CA03E00933BC0 /* SDImageCache.m in Sources */,
6C93B17C240CA03E00933BC0 /* IQToolbar.m in Sources */,
6C93B17D240CA03E00933BC0 /* FileUploadAuthInfoGetResponse.m in Sources */,
6C93B17E240CA03E00933BC0 /* AFURLSessionManager.m in Sources */,
6C93B17F240CA03E00933BC0 /* ZLNoAuthorityViewController.m in Sources */,
6C93B180240CA03E00933BC0 /* ToastUtils.m in Sources */,
6C93B181240CA03E00933BC0 /* ZLPlayer.m in Sources */,
6C93B182240CA03E00933BC0 /* UIImage+GIF.m in Sources */,
6C93B183240CA03E00933BC0 /* SDWebImageCoder.m in Sources */,
6C93B184240CA03E00933BC0 /* BaseResponse.m in Sources */,
6C93B185240CA03E00933BC0 /* SDWebImageCoderHelper.m in Sources */,
6C93B186240CA03E00933BC0 /* ViewController+MASAdditions.m in Sources */,
6C93B187240CA03E00933BC0 /* SDWebImageImageIOCoder.m in Sources */,
6C93B188240CA03E00933BC0 /* SDImageCacheConfig.m in Sources */,
6C93B189240CA03E00933BC0 /* SDWebImageGIFCoder.m in Sources */,
6C93B18A240CA03E00933BC0 /* main.m in Sources */,
6C93B18B240CA03E00933BC0 /* NSArray+MASAdditions.m in Sources */,
6C93B18C240CA03E00933BC0 /* BlueToolManage.m in Sources */,
6C93B18D240CA03E00933BC0 /* ZLCollectionCell.m in Sources */,
6C93B18E240CA03E00933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */,
6C93B18F240CA03E00933BC0 /* AFURLResponseSerialization.m in Sources */,
6C93B190240CA03E00933BC0 /* RequestData.m in Sources */,
6C93B191240CA03E00933BC0 /* AFNetworkReachabilityManager.m in Sources */,
6C93B192240CA03E00933BC0 /* ZLPhotoConfiguration.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6C93B1C9240CA04200933BC0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6C93B1CA240CA04200933BC0 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
6C93B1CB240CA04200933BC0 /* IQUIScrollView+Additions.m in Sources */,
6C93B1CC240CA04200933BC0 /* ZLPhotoBrowserCell.m in Sources */,
6C93B1CD240CA04200933BC0 /* UIImage+WebP.m in Sources */,
6C93B1CE240CA04200933BC0 /* SelectCollectionCell.m in Sources */,
6C93B1CF240CA04200933BC0 /* IQNSArray+Sort.m in Sources */,
6C93B1D0240CA04200933BC0 /* BaseDomain.m in Sources */,
6C93B1D1240CA04200933BC0 /* SDWebImageDownloader.m in Sources */,
6C93B1D2240CA04200933BC0 /* ZLEditVideoController.m in Sources */,
6C93B1D3240CA04200933BC0 /* NSImage+WebCache.m in Sources */,
6C93B1D4240CA04200933BC0 /* MBProgressHUD.m in Sources */,
6C93B1D5240CA04200933BC0 /* IQPreviousNextView.m in Sources */,
6C93B1D6240CA04200933BC0 /* MASCompositeConstraint.m in Sources */,
6C93B1D7240CA04200933BC0 /* MASViewConstraint.m in Sources */,
6C93B1D8240CA04200933BC0 /* BaseRequest.m in Sources */,
6C93B1D9240CA04200933BC0 /* ZLPhotoManager.m in Sources */,
6C93B1DA240CA04200933BC0 /* IQTextView.m in Sources */,
6C93B1DB240CA04200933BC0 /* UIView+WebCache.m in Sources */,
6C93B1DC240CA04200933BC0 /* UIImage+ForceDecode.m in Sources */,
6C93B1DD240CA04200933BC0 /* UIButton+WebCache.m in Sources */,
6C93B1DE240CA04200933BC0 /* FileUploadInfo.m in Sources */,
6C93B1DF240CA04200933BC0 /* SDWebImageManager.m in Sources */,
6C93B1E0240CA04200933BC0 /* FileUploadAuthInfoGetRequest.m in Sources */,
6C93B1E1240CA04200933BC0 /* NSData+ImageContentType.m in Sources */,
6C93B1E2240CA04200933BC0 /* NSBundle+ZLPhotoBrowser.m in Sources */,
6C93B1E3240CA04200933BC0 /* IQUITextFieldView+Additions.m in Sources */,
6C93B1E4240CA04200933BC0 /* SDWebImagePrefetcher.m in Sources */,
6C93B1E5240CA04200933BC0 /* AFSecurityPolicy.m in Sources */,
6C93B1E6240CA04200933BC0 /* ZLShowBigImgViewController.m in Sources */,
6C93B1E7240CA04200933BC0 /* View+MASAdditions.m in Sources */,
6C93B1E8240CA04200933BC0 /* IQBarButtonItem.m in Sources */,
6C93B1E9240CA04200933BC0 /* SDWebImageFrame.m in Sources */,
6C93B1EA240CA04200933BC0 /* MKAnnotationView+WebCache.m in Sources */,
6C93B1EB240CA04200933BC0 /* MASLayoutConstraint.m in Sources */,
6C93B1EC240CA04200933BC0 /* UIImage+MultiFormat.m in Sources */,
6C93B1ED240CA04200933BC0 /* AFHTTPSessionManager.m in Sources */,
6C93B1EE240CA04200933BC0 /* IQUIView+Hierarchy.m in Sources */,
6C93B1EF240CA04200933BC0 /* xn_base_Client_AF.m in Sources */,
6C93B1F0240CA04200933BC0 /* ZLBigImageCell.m in Sources */,
6C93B1F1240CA04200933BC0 /* ZLPhotoBrowser.m in Sources */,
6C93B1F2240CA04200933BC0 /* IQKeyboardManager.m in Sources */,
6C93B1F3240CA04200933BC0 /* IQUIViewController+Additions.m in Sources */,
6C93B1F4240CA04200933BC0 /* SDWebImageWebPCoder.m in Sources */,
6C93B1F5240CA04200933BC0 /* ZLCustomCamera.m in Sources */,
6C93B1F6240CA04200933BC0 /* IQUIView+IQKeyboardToolbar.m in Sources */,
6C93B1F7240CA04200933BC0 /* UIImageView+WebCache.m in Sources */,
6C93B1F8240CA04200933BC0 /* UIView+WebCacheOperation.m in Sources */,
6C93B1F9240CA04200933BC0 /* UIImageView+HighlightedWebCache.m in Sources */,
6C93B1FA240CA04200933BC0 /* ZLEditViewController.m in Sources */,
6C93B1FB240CA04200933BC0 /* MASViewAttribute.m in Sources */,
6C93B1FC240CA04200933BC0 /* AFURLRequestSerialization.m in Sources */,
6C93B1FD240CA04200933BC0 /* UIImage+ZLPhotoBrowser.m in Sources */,
6C93B1FE240CA04200933BC0 /* UIButton+EnlargeTouchArea.m in Sources */,
6C93B1FF240CA04200933BC0 /* SDWebImageDownloaderOperation.m in Sources */,
6C93B200240CA04200933BC0 /* IQTitleBarButtonItem.m in Sources */,
6C93B201240CA04200933BC0 /* SDWebImageCompat.m in Sources */,
6C93B202240CA04200933BC0 /* AppDelegate.m in Sources */,
6C93B203240CA04200933BC0 /* SDWebImageCodersManager.m in Sources */,
6C93B204240CA04200933BC0 /* ZLPhotoActionSheet.m in Sources */,
6C93B205240CA04200933BC0 /* ZLForceTouchPreviewController.m in Sources */,
6C93B206240CA04200933BC0 /* ZLProgressHUD.m in Sources */,
6C93B207240CA04200933BC0 /* XNCameraManager.m in Sources */,
6C93B208240CA04200933BC0 /* MASConstraint.m in Sources */,
6C93B209240CA04200933BC0 /* ZLPhotoModel.m in Sources */,
6C93B20A240CA04200933BC0 /* MASConstraintMaker.m in Sources */,
6C93B20B240CA04200933BC0 /* ZLThumbnailViewController.m in Sources */,
6C93B20C240CA04200933BC0 /* SDImageCache.m in Sources */,
6C93B20D240CA04200933BC0 /* IQToolbar.m in Sources */,
6C93B20E240CA04200933BC0 /* FileUploadAuthInfoGetResponse.m in Sources */,
6C93B20F240CA04200933BC0 /* AFURLSessionManager.m in Sources */,
6C93B210240CA04200933BC0 /* ZLNoAuthorityViewController.m in Sources */,
6C93B211240CA04200933BC0 /* ToastUtils.m in Sources */,
6C93B212240CA04200933BC0 /* ZLPlayer.m in Sources */,
6C93B213240CA04200933BC0 /* UIImage+GIF.m in Sources */,
6C93B214240CA04200933BC0 /* SDWebImageCoder.m in Sources */,
6C93B215240CA04200933BC0 /* BaseResponse.m in Sources */,
6C93B216240CA04200933BC0 /* SDWebImageCoderHelper.m in Sources */,
6C93B217240CA04200933BC0 /* ViewController+MASAdditions.m in Sources */,
6C93B218240CA04200933BC0 /* SDWebImageImageIOCoder.m in Sources */,
6C93B219240CA04200933BC0 /* SDImageCacheConfig.m in Sources */,
6C93B21A240CA04200933BC0 /* SDWebImageGIFCoder.m in Sources */,
6C93B21B240CA04200933BC0 /* main.m in Sources */,
6C93B21C240CA04200933BC0 /* NSArray+MASAdditions.m in Sources */,
6C93B21D240CA04200933BC0 /* BlueToolManage.m in Sources */,
6C93B21E240CA04200933BC0 /* ZLCollectionCell.m in Sources */,
6C93B21F240CA04200933BC0 /* IQKeyboardReturnKeyHandler.m in Sources */,
6C93B220240CA04200933BC0 /* AFURLResponseSerialization.m in Sources */,
6C93B221240CA04200933BC0 /* RequestData.m in Sources */,
6C93B222240CA04200933BC0 /* AFNetworkReachabilityManager.m in Sources */,
6C93B223240CA04200933BC0 /* ZLPhotoConfiguration.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 13B07F861A680F5B00A75B9A /* metroApp */;
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
};
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 2D02E47A1E0B4A5D006451C7 /* metroApp-tvOS */;
targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
13B07FB21A68108700A75B9A /* Base */,
);
name = LaunchScreen.xib;
path = metroApp;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
00E356F61AD99517003FC87E /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
DEVELOPMENT_TEAM = 79EYVFBRS8;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = metroAppTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/metroApp.app/metroApp";
};
name = Debug;
};
00E356F71AD99517003FC87E /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
COPY_PHASE_STRIP = NO;
DEVELOPMENT_TEAM = 79EYVFBRS8;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = metroAppTests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/metroApp.app/metroApp";
};
name = Release;
};
13B07F941A680F5B00A75B9A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_ENTITLEMENTS = metroApp/metroApp.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 2020030201;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = 79EYVFBRS8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
PADTPRE,
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/平安地铁生产环境.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = shpadt.com.cn;
PRODUCT_NAME = metroApp;
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = shpadt_dev;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
13B07F951A680F5B00A75B9A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_ENTITLEMENTS = metroApp/metroApp.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 2020030201;
DEVELOPMENT_TEAM = 79EYVFBRS8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = PADTPRE;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/平安地铁生产环境.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = shpadt.com.cn;
PRODUCT_NAME = metroApp;
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = shpadt_AppStore;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
2D02E4971E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = 79EYVFBRS8;
ENABLE_TESTABILITY = YES;
GCC_NO_COMMON_BLOCKS = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "metroApp-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = shpadt.com.cn;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.2;
};
name = Debug;
};
2D02E4981E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 79EYVFBRS8;
GCC_NO_COMMON_BLOCKS = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "metroApp-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = shpadt.com.cn;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.2;
};
name = Release;
};
2D02E4991E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_TESTABILITY = YES;
GCC_NO_COMMON_BLOCKS = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "metroApp-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.metroApp-tvOSTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/metroApp-tvOS.app/metroApp-tvOS";
TVOS_DEPLOYMENT_TARGET = 10.1;
};
name = Debug;
};
2D02E49A1E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_NO_COMMON_BLOCKS = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "metroApp-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.metroApp-tvOSTests";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = appletvos;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/metroApp-tvOS.app/metroApp-tvOS";
TVOS_DEPLOYMENT_TARGET = 10.1;
};
name = Release;
};
6C1E51FA2099A1910002AA8D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-adhoc";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2020030201;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
PADTADHOC,
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..",
ode_modules,
"eact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/平安地铁测试环境.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
MARKETING_VERSION = 1.0.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.xiniunet.shpadtAdHoc;
PRODUCT_NAME = "平安地铁";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
6C1E51FB2099A1910002AA8D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-adhoc";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2020030201;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = PADTADHOC;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..",
ode_modules,
"eact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/平安地铁测试环境.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
MARKETING_VERSION = 1.0.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.xiniunet.shpadtAdHoc;
PRODUCT_NAME = "平安地铁";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
6C93B133240CA03A00933BC0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-dev";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2020030201;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
PADTDEV,
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..",
ode_modules,
"eact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/犀牛企业云开发.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
MARKETING_VERSION = 1.0.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.xiniunet.shpadtDev;
PRODUCT_NAME = "平安地铁";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
6C93B134240CA03A00933BC0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-dev";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2020030201;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = PADTDEV;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..",
ode_modules,
"eact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/犀牛企业云开发.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
MARKETING_VERSION = 1.0.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.xiniunet.shpadtDev;
PRODUCT_NAME = "平安地铁";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
6C93B1C4240CA03E00933BC0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-TEST";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2020030201;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
PADTTEST,
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..",
ode_modules,
"eact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/犀牛企业云测试.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
MARKETING_VERSION = 1.0.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.xiniunet.shpadtTest;
PRODUCT_NAME = "平安地铁";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
6C93B1C5240CA03E00933BC0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-TEST";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2020030201;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = PADTTEST;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..",
ode_modules,
"eact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/犀牛企业云测试.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
MARKETING_VERSION = 1.0.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.xiniunet.shpadtTest;
PRODUCT_NAME = "平安地铁";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
6C93B255240CA04200933BC0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-uat";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2020030201;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
PADTUAT,
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..",
ode_modules,
"eact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/犀牛企业云UAT.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
MARKETING_VERSION = 1.0.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.subway;
PRODUCT_NAME = "平安地铁";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
6C93B256240CA04200933BC0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-uat";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2020030201;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
GCC_PREFIX_HEADER = "$(SRCROOT)/PrefixHeader.pch";
GCC_PREPROCESSOR_DEFINITIONS = PADTUAT;
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..",
ode_modules,
"eact-native-cameraios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-camera/ios",
"$(SRCROOT)/../node_modules/react-native-image-picker/ios",
"$(SRCROOT)/../node_modules/react-native-linear-gradient/BVLinearGradient",
"$(SRCROOT)/../node_modules/react-native-picker/ios/RCTBEEPickerManager",
"$(SRCROOT)/../node_modules/react-native-video/ios",
"$(SRCROOT)/../node_modules/rn-splash-screen/ios/RCTSplashScreen",
);
INFOPLIST_FILE = "$(SRCROOT)/plist/犀牛企业云UAT.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
MARKETING_VERSION = 1.0.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.subway;
PRODUCT_NAME = "平安地铁";
PROVISIONING_PROFILE = "";
PROVISIONING_PROFILE_SPECIFIER = "";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
83CBBA201A601CBA00E9B192 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
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 = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
};
name = Debug;
};
83CBBA211A601CBA00E9B192 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
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 = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "metroAppTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
00E356F61AD99517003FC87E /* Debug */,
00E356F71AD99517003FC87E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "metroApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
13B07F941A680F5B00A75B9A /* Debug */,
13B07F951A680F5B00A75B9A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "metroApp-tvOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2D02E4971E0B4A5E006451C7 /* Debug */,
2D02E4981E0B4A5E006451C7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "metroApp-tvOSTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
2D02E4991E0B4A5E006451C7 /* Debug */,
2D02E49A1E0B4A5E006451C7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
6C1E51F92099A1910002AA8D /* Build configuration list for PBXNativeTarget "metroAdhoc" */ = {
isa = XCConfigurationList;
buildConfigurations = (
6C1E51FA2099A1910002AA8D /* Debug */,
6C1E51FB2099A1910002AA8D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
6C93B132240CA03A00933BC0 /* Build configuration list for PBXNativeTarget "犀牛企业云开发" */ = {
isa = XCConfigurationList;
buildConfigurations = (
6C93B133240CA03A00933BC0 /* Debug */,
6C93B134240CA03A00933BC0 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
6C93B1C3240CA03E00933BC0 /* Build configuration list for PBXNativeTarget "犀牛企业云测试" */ = {
isa = XCConfigurationList;
buildConfigurations = (
6C93B1C4240CA03E00933BC0 /* Debug */,
6C93B1C5240CA03E00933BC0 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
6C93B254240CA04200933BC0 /* Build configuration list for PBXNativeTarget "平安地铁UAT" */ = {
isa = XCConfigurationList;
buildConfigurations = (
6C93B255240CA04200933BC0 /* Debug */,
6C93B256240CA04200933BC0 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "metroApp" */ = {
isa = XCConfigurationList;
buildConfigurations = (
83CBBA201A601CBA00E9B192 /* Debug */,
83CBBA211A601CBA00E9B192 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
}