project.pbxproj
172 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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
00E356F31AD99517003FC87E /* metroAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* metroAppTests.m */; };
133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
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 */; };
140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
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 */; };
2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
2DCD954D1E0B4F2C00145EB5 /* metroAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* metroAppTests.m */; };
5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
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 */; };
6C10B8C7208E15B800B414B4 /* libRCTSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C10B8B2208E159300B414B4 /* libRCTSplashScreen.a */; };
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 */; };
6C1E51892099A1910002AA8D /* IQKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24820873C2E00CA7B75 /* IQKeyboardManager.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 */; };
6C1E518F2099A1910002AA8D /* IQUIViewController+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE25420873C2E00CA7B75 /* IQUIViewController+Additions.m */; };
6C1E51902099A1910002AA8D /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE41A2088805800CA7B75 /* UIButton+WebCache.m */; };
6C1E51912099A1910002AA8D /* IQToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23920873C2E00CA7B75 /* IQToolbar.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 */; };
6C1E51992099A1910002AA8D /* IQBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23B20873C2E00CA7B75 /* IQBarButtonItem.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 */; };
6C1E51A12099A1910002AA8D /* IQUIWindow+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24B20873C2E00CA7B75 /* IQUIWindow+Hierarchy.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 */; };
6C1E51A72099A1910002AA8D /* IQTitleBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23A20873C2E00CA7B75 /* IQTitleBarButtonItem.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 */; };
6C1E51AB2099A1910002AA8D /* IQNSArray+Sort.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24A20873C2E00CA7B75 /* IQNSArray+Sort.m */; };
6C1E51AC2099A1910002AA8D /* ZLEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */; };
6C1E51AD2099A1910002AA8D /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE38E20887D6C00CA7B75 /* MASViewAttribute.m */; };
6C1E51AE2099A1910002AA8D /* IQUIView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24F20873C2E00CA7B75 /* IQUIView+Hierarchy.m */; };
6C1E51AF2099A1910002AA8D /* IQUITextFieldView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24D20873C2E00CA7B75 /* IQUITextFieldView+Additions.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 */; };
6C1E51B22099A1910002AA8D /* IQKeyboardReturnKeyHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE25620873C2E00CA7B75 /* IQKeyboardReturnKeyHandler.m */; };
6C1E51B32099A1910002AA8D /* IQUIScrollView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24E20873C2E00CA7B75 /* IQUIScrollView+Additions.m */; };
6C1E51B42099A1910002AA8D /* UIButton+EnlargeTouchArea.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */; };
6C1E51B52099A1910002AA8D /* IQUIView+IQKeyboardToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23C20873C2E00CA7B75 /* IQUIView+IQKeyboardToolbar.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 */; };
6C1E51C92099A1910002AA8D /* IQTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23520873C2E00CA7B75 /* IQTextView.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 */; };
6C1E51D92099A1910002AA8D /* libRCTSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C10B8B2208E159300B414B4 /* libRCTSplashScreen.a */; };
6C1E51DA2099A1910002AA8D /* libRCTVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE49B2089DCF200CA7B75 /* libRCTVideo.a */; };
6C1E51DB2099A1910002AA8D /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2DD2088666600CA7B75 /* libresolv.tbd */; };
6C1E51DC2099A1910002AA8D /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE28720874A5600CA7B75 /* libRNImagePicker.a */; };
6C1E51DD2099A1910002AA8D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A4D207227F4009D733A /* SystemConfiguration.framework */; };
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 */; };
6C1E51E22099A1910002AA8D /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C678A43207227AE009D733A /* CoreTelephony.framework */; };
6C1E51E32099A1910002AA8D /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A92068E7C8004E9E33 /* CoreLocation.framework */; };
6C1E51E42099A1910002AA8D /* CoreBluetooth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CA2D8A72068E7C1004E9E33 /* CoreBluetooth.framework */; };
6C1E51E52099A1910002AA8D /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
6C1E51E62099A1910002AA8D /* AliyunOSSiOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */; };
6C1E51E72099A1910002AA8D /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
6C1E51E82099A1910002AA8D /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
6C1E51E92099A1910002AA8D /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
6C1E51EA2099A1910002AA8D /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */; };
6C1E51EB2099A1910002AA8D /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
6C1E51EC2099A1910002AA8D /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
6C1E51ED2099A1910002AA8D /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
6C1E51EE2099A1910002AA8D /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
6C1E51EF2099A1910002AA8D /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
6C1E51F02099A1910002AA8D /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
6C1E51F12099A1910002AA8D /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
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 */; };
6C1E51F72099A1910002AA8D /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE24420873C2E00CA7B75 /* IQKeyboardManager.bundle */; };
6C58542720B3B4D500240A8F /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C58542620B3B39200240A8F /* libRCTCamera.a */; };
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 */; };
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 */; };
6CC0C13920A14C7800269961 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C11720A14C7800269961 /* libz.tbd */; };
6CC0C14020A14FF900269961 /* SecurityEnvSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13D20A14FF800269961 /* SecurityEnvSDK.framework */; };
6CC0C14120A14FF900269961 /* SecurityEnvSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13D20A14FF800269961 /* SecurityEnvSDK.framework */; };
6CC0C14220A14FF900269961 /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13E20A14FF800269961 /* UMCommon.framework */; };
6CC0C14320A14FF900269961 /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13E20A14FF800269961 /* UMCommon.framework */; };
6CC0C14420A14FF900269961 /* UMAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13F20A14FF900269961 /* UMAnalytics.framework */; };
6CC0C14520A14FF900269961 /* UMAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CC0C13F20A14FF900269961 /* UMAnalytics.framework */; };
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 */; };
6CDEE27420873C2F00CA7B75 /* IQTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23520873C2E00CA7B75 /* IQTextView.m */; };
6CDEE27520873C2F00CA7B75 /* IQToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23920873C2E00CA7B75 /* IQToolbar.m */; };
6CDEE27620873C2F00CA7B75 /* IQTitleBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23A20873C2E00CA7B75 /* IQTitleBarButtonItem.m */; };
6CDEE27720873C2F00CA7B75 /* IQBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23B20873C2E00CA7B75 /* IQBarButtonItem.m */; };
6CDEE27820873C2F00CA7B75 /* IQUIView+IQKeyboardToolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE23C20873C2E00CA7B75 /* IQUIView+IQKeyboardToolbar.m */; };
6CDEE27920873C2F00CA7B75 /* IQKeyboardManager.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6CDEE24420873C2E00CA7B75 /* IQKeyboardManager.bundle */; };
6CDEE27A20873C2F00CA7B75 /* IQKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24820873C2E00CA7B75 /* IQKeyboardManager.m */; };
6CDEE27B20873C2F00CA7B75 /* IQNSArray+Sort.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24A20873C2E00CA7B75 /* IQNSArray+Sort.m */; };
6CDEE27C20873C2F00CA7B75 /* IQUIWindow+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24B20873C2E00CA7B75 /* IQUIWindow+Hierarchy.m */; };
6CDEE27D20873C2F00CA7B75 /* IQUITextFieldView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24D20873C2E00CA7B75 /* IQUITextFieldView+Additions.m */; };
6CDEE27E20873C2F00CA7B75 /* IQUIScrollView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24E20873C2E00CA7B75 /* IQUIScrollView+Additions.m */; };
6CDEE27F20873C2F00CA7B75 /* IQUIView+Hierarchy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE24F20873C2E00CA7B75 /* IQUIView+Hierarchy.m */; };
6CDEE28020873C2F00CA7B75 /* IQUIViewController+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE25420873C2E00CA7B75 /* IQUIViewController+Additions.m */; };
6CDEE28120873C2F00CA7B75 /* IQKeyboardReturnKeyHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDEE25620873C2E00CA7B75 /* IQKeyboardReturnKeyHandler.m */; };
6CDEE28820874A9000CA7B75 /* libRNImagePicker.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE28720874A5600CA7B75 /* libRNImagePicker.a */; };
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 */; };
6CDEE49E2089DD0B00CA7B75 /* libRCTVideo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE49B2089DCF200CA7B75 /* libRCTVideo.a */; };
6CDEE4A5208DDC7900CA7B75 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CDEE4A4208DDC7900CA7B75 /* StoreKit.framework */; };
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
8BF88ECFE2CA49BA8EE8CD3F /* libRCTCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 75878AD97541411AA3BB42FF /* libRCTCamera.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTActionSheet;
};
00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTGeolocation;
};
00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
remoteInfo = RCTImage;
};
00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B511DB1A9E6C8500147676;
remoteInfo = RCTNetwork;
};
00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
remoteInfo = RCTVibration;
};
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
remoteInfo = metroApp;
};
139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTSettings;
};
139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
remoteInfo = RCTWebSocket;
};
146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
remoteInfo = React;
};
2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
remoteInfo = "metroApp-tvOS";
};
3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
remoteInfo = "RCTImage-tvOS";
};
3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28471D9B043800D4039D;
remoteInfo = "RCTLinking-tvOS";
};
3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
remoteInfo = "RCTNetwork-tvOS";
};
3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28611D9B046600D4039D;
remoteInfo = "RCTSettings-tvOS";
};
3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
remoteInfo = "RCTText-tvOS";
};
3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28881D9B049200D4039D;
remoteInfo = "RCTWebSocket-tvOS";
};
3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
remoteInfo = "React-tvOS";
};
3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
remoteInfo = yoga;
};
3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
remoteInfo = "yoga-tvOS";
};
3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
remoteInfo = cxxreact;
};
3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
remoteInfo = "cxxreact-tvOS";
};
3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
remoteInfo = jschelpers;
};
3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
remoteInfo = "jschelpers-tvOS";
};
5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTAnimation;
};
5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
remoteInfo = "RCTAnimation-tvOS";
};
6C10B8B1208E159300B414B4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6C10B8A1208E159300B414B4 /* RCTSplashScreen.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3245CDED1BFEE35C00EABF68;
remoteInfo = RCTSplashScreen;
};
6C11FF7920637297004452BF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
remoteInfo = "third-party";
};
6C11FF7B20637297004452BF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
remoteInfo = "third-party-tvOS";
};
6C11FF7D20637297004452BF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 139D7E881E25C6D100323FB7;
remoteInfo = "double-conversion";
};
6C11FF7F20637297004452BF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 3D383D621EBD27B9005632C8;
remoteInfo = "double-conversion-tvOS";
};
6C58542520B3B39200240A8F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 612E4215E0C349EC8259998D /* RCTCamera.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 4107012F1ACB723B00C6AA39;
remoteInfo = RCTCamera;
};
6CDEE28620874A5600CA7B75 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6CDEE28220874A5400CA7B75 /* RNImagePicker.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 014A3B5C1C6CF33500B6D375;
remoteInfo = RNImagePicker;
};
6CDEE49A2089DCF200CA7B75 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6CDEE4952089DCF100CA7B75 /* RCTVideo.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTVideo;
};
6CDEE49C2089DCF200CA7B75 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 6CDEE4952089DCF100CA7B75 /* RCTVideo.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 641E28441F0EEC8500443AF6;
remoteInfo = "RCTVideo-tvOS";
};
78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 134814201AA4EA6300B7C361;
remoteInfo = RCTLinking;
};
832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 58B5119B1A9E6C1200147676;
remoteInfo = RCTText;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; 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>"; };
139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; 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>"; };
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = metroApp/Info.plist; sourceTree = "<group>"; };
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = metroApp/main.m; sourceTree = "<group>"; };
146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
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>"; };
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; };
5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
612E4215E0C349EC8259998D /* 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>"; };
6C10B8A1208E159300B414B4 /* RCTSplashScreen.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSplashScreen.xcodeproj; path = "../node_modules/rn-splash-screen/ios/RCTSplashScreen.xcodeproj"; 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; };
6C1E51FD2099A1920002AA8D /* 平安地铁权限版.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "平安地铁权限版.plist"; path = "/Users/zhaoshiqiang/Desktop/workspace/shanghai-railway-rnapp/ios/平安地铁权限版.plist"; sourceTree = "<absolute>"; };
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; };
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; };
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; };
6CC0C13D20A14FF800269961 /* SecurityEnvSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SecurityEnvSDK.framework; sourceTree = "<group>"; };
6CC0C13E20A14FF800269961 /* UMCommon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UMCommon.framework; sourceTree = "<group>"; };
6CC0C13F20A14FF900269961 /* UMAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UMAnalytics.framework; sourceTree = "<group>"; };
6CDEE23520873C2E00CA7B75 /* IQTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQTextView.m; sourceTree = "<group>"; };
6CDEE23620873C2E00CA7B75 /* IQTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQTextView.h; sourceTree = "<group>"; };
6CDEE23820873C2E00CA7B75 /* IQUIView+IQKeyboardToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIView+IQKeyboardToolbar.h"; sourceTree = "<group>"; };
6CDEE23920873C2E00CA7B75 /* IQToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQToolbar.m; sourceTree = "<group>"; };
6CDEE23A20873C2E00CA7B75 /* IQTitleBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQTitleBarButtonItem.m; sourceTree = "<group>"; };
6CDEE23B20873C2E00CA7B75 /* IQBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQBarButtonItem.m; sourceTree = "<group>"; };
6CDEE23C20873C2E00CA7B75 /* IQUIView+IQKeyboardToolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIView+IQKeyboardToolbar.m"; sourceTree = "<group>"; };
6CDEE23D20873C2E00CA7B75 /* IQToolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQToolbar.h; sourceTree = "<group>"; };
6CDEE23E20873C2E00CA7B75 /* IQBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQBarButtonItem.h; sourceTree = "<group>"; };
6CDEE23F20873C2E00CA7B75 /* IQTitleBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQTitleBarButtonItem.h; sourceTree = "<group>"; };
6CDEE24120873C2E00CA7B75 /* IQKeyboardManagerConstantsInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManagerConstantsInternal.h; sourceTree = "<group>"; };
6CDEE24220873C2E00CA7B75 /* IQKeyboardManagerConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManagerConstants.h; sourceTree = "<group>"; };
6CDEE24420873C2E00CA7B75 /* IQKeyboardManager.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = IQKeyboardManager.bundle; sourceTree = "<group>"; };
6CDEE24520873C2E00CA7B75 /* IQKeyboardReturnKeyHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardReturnKeyHandler.h; sourceTree = "<group>"; };
6CDEE24620873C2E00CA7B75 /* IQKeyboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IQKeyboardManager.h; sourceTree = "<group>"; };
6CDEE24720873C2E00CA7B75 /* KeyboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyboardManager.h; sourceTree = "<group>"; };
6CDEE24820873C2E00CA7B75 /* IQKeyboardManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQKeyboardManager.m; sourceTree = "<group>"; };
6CDEE24A20873C2E00CA7B75 /* IQNSArray+Sort.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQNSArray+Sort.m"; sourceTree = "<group>"; };
6CDEE24B20873C2E00CA7B75 /* IQUIWindow+Hierarchy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIWindow+Hierarchy.m"; sourceTree = "<group>"; };
6CDEE24C20873C2E00CA7B75 /* IQUIViewController+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIViewController+Additions.h"; sourceTree = "<group>"; };
6CDEE24D20873C2E00CA7B75 /* IQUITextFieldView+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUITextFieldView+Additions.m"; sourceTree = "<group>"; };
6CDEE24E20873C2E00CA7B75 /* IQUIScrollView+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIScrollView+Additions.m"; sourceTree = "<group>"; };
6CDEE24F20873C2E00CA7B75 /* IQUIView+Hierarchy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIView+Hierarchy.m"; sourceTree = "<group>"; };
6CDEE25020873C2E00CA7B75 /* IQUIWindow+Hierarchy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIWindow+Hierarchy.h"; sourceTree = "<group>"; };
6CDEE25120873C2E00CA7B75 /* IQNSArray+Sort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQNSArray+Sort.h"; sourceTree = "<group>"; };
6CDEE25220873C2E00CA7B75 /* IQUIScrollView+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIScrollView+Additions.h"; sourceTree = "<group>"; };
6CDEE25320873C2E00CA7B75 /* IQUITextFieldView+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUITextFieldView+Additions.h"; sourceTree = "<group>"; };
6CDEE25420873C2E00CA7B75 /* IQUIViewController+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "IQUIViewController+Additions.m"; sourceTree = "<group>"; };
6CDEE25520873C2E00CA7B75 /* IQUIView+Hierarchy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "IQUIView+Hierarchy.h"; sourceTree = "<group>"; };
6CDEE25620873C2E00CA7B75 /* IQKeyboardReturnKeyHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IQKeyboardReturnKeyHandler.m; sourceTree = "<group>"; };
6CDEE28220874A5400CA7B75 /* RNImagePicker.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNImagePicker.xcodeproj; path = "../node_modules/react-native-image-picker/ios/RNImagePicker.xcodeproj"; sourceTree = "<group>"; };
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>"; };
6CDEE4952089DCF100CA7B75 /* RCTVideo.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVideo.xcodeproj; path = "../node_modules/react-native-video/ios/RCTVideo.xcodeproj"; 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; };
75878AD97541411AA3BB42FF /* libRCTCamera.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTCamera.a; sourceTree = "<group>"; };
78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
00E356EB1AD99517003FC87E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6CC0C1AB20A1A04700269961 /* libsqlite3.tbd in Frameworks */,
6CC0C14220A14FF900269961 /* UMCommon.framework in Frameworks */,
6CC0C13920A14C7800269961 /* libz.tbd in Frameworks */,
6C10B8C7208E15B800B414B4 /* libRCTSplashScreen.a in Frameworks */,
6CDEE49E2089DD0B00CA7B75 /* libRCTVideo.a in Frameworks */,
6CDEE2DE2088666600CA7B75 /* libresolv.tbd in Frameworks */,
6CDEE28820874A9000CA7B75 /* libRNImagePicker.a 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 */,
6CA2D8AA2068E7C9004E9E33 /* CoreLocation.framework in Frameworks */,
6CA2D8A82068E7C1004E9E33 /* CoreBluetooth.framework in Frameworks */,
146834051AC3E58100842450 /* libReact.a in Frameworks */,
6CDEE2DC208864CA00CA7B75 /* AliyunOSSiOS.framework in Frameworks */,
5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
6CDEE4A5208DDC7900CA7B75 /* StoreKit.framework in Frameworks */,
00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
6CC0C14420A14FF900269961 /* UMAnalytics.framework in Frameworks */,
00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
6CC0C14020A14FF900269961 /* SecurityEnvSDK.framework in Frameworks */,
139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
8BF88ECFE2CA49BA8EE8CD3F /* libRCTCamera.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */,
2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
6C1E51D82099A1910002AA8D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6C58542720B3B4D500240A8F /* libRCTCamera.a in Frameworks */,
6CC0C1AA20A1A03500269961 /* libsqlite3.tbd in Frameworks */,
6CC0C1A920A19FD300269961 /* libz.tbd in Frameworks */,
6C1E51D92099A1910002AA8D /* libRCTSplashScreen.a in Frameworks */,
6C1E51DA2099A1910002AA8D /* libRCTVideo.a in Frameworks */,
6C1E51DB2099A1910002AA8D /* libresolv.tbd in Frameworks */,
6CC0C14520A14FF900269961 /* UMAnalytics.framework in Frameworks */,
6C1E51DC2099A1910002AA8D /* libRNImagePicker.a in Frameworks */,
6C1E51DD2099A1910002AA8D /* SystemConfiguration.framework in Frameworks */,
6C1E51DE2099A1910002AA8D /* AVFoundation.framework in Frameworks */,
6C1E51DF2099A1910002AA8D /* AudioToolbox.framework in Frameworks */,
6C1E51E02099A1910002AA8D /* CoreMotion.framework in Frameworks */,
6C1E51E12099A1910002AA8D /* OpenGLES.framework in Frameworks */,
6C1E51E22099A1910002AA8D /* CoreTelephony.framework in Frameworks */,
6C1E51E32099A1910002AA8D /* CoreLocation.framework in Frameworks */,
6C1E51E42099A1910002AA8D /* CoreBluetooth.framework in Frameworks */,
6C1E51E52099A1910002AA8D /* libReact.a in Frameworks */,
6C1E51E62099A1910002AA8D /* AliyunOSSiOS.framework in Frameworks */,
6C1E51E72099A1910002AA8D /* libRCTAnimation.a in Frameworks */,
6CC0C14120A14FF900269961 /* SecurityEnvSDK.framework in Frameworks */,
6C1E51E82099A1910002AA8D /* libRCTActionSheet.a in Frameworks */,
6C1E51E92099A1910002AA8D /* libRCTGeolocation.a in Frameworks */,
6C1E51EA2099A1910002AA8D /* StoreKit.framework in Frameworks */,
6C1E51EB2099A1910002AA8D /* libRCTImage.a in Frameworks */,
6C1E51EC2099A1910002AA8D /* libRCTLinking.a in Frameworks */,
6CC0C14320A14FF900269961 /* UMCommon.framework in Frameworks */,
6C1E51ED2099A1910002AA8D /* libRCTNetwork.a in Frameworks */,
6C1E51EE2099A1910002AA8D /* libRCTSettings.a in Frameworks */,
6C1E51EF2099A1910002AA8D /* libRCTText.a in Frameworks */,
6C1E51F02099A1910002AA8D /* libRCTVibration.a in Frameworks */,
6C1E51F12099A1910002AA8D /* libRCTWebSocket.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
00C302A81ABCB8CE00DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
);
name = Products;
sourceTree = "<group>";
};
00C302B61ABCB90400DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
);
name = Products;
sourceTree = "<group>";
};
00C302BC1ABCB91800DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
00C302D41ABCB9D200DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
00C302E01ABCB9EE00DB3ED1 /* Products */ = {
isa = PBXGroup;
children = (
00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
);
name = Products;
sourceTree = "<group>";
};
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>";
};
139105B71AF99BAD00B5F7CC /* Products */ = {
isa = PBXGroup;
children = (
139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
139FDEE71B06529A00C62182 /* Products */ = {
isa = PBXGroup;
children = (
139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
);
name = Products;
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 */,
13B07FB51A68108700A75B9A /* Images.xcassets */,
6CC0C13C20A14FEB00269961 /* UM */,
6C10B7F4208DF8DF00B414B4 /* NetWork */,
6CDEE3E62088805800CA7B75 /* SDWebImage */,
6CDEE37520887D6C00CA7B75 /* Masonry6.0 */,
6CDEE2EB20886F6100CA7B75 /* PhotoChoose */,
6CDEE2BD208864C900CA7B75 /* AliyunOSSiOS.framework */,
6CDEE23320873C2E00CA7B75 /* IQKeyBoardManager20160113 */,
13B07FB61A68108700A75B9A /* Info.plist */,
6C1E51FD2099A1920002AA8D /* 平安地铁权限版.plist */,
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
13B07FB71A68108700A75B9A /* main.m */,
);
name = metroApp;
sourceTree = "<group>";
};
146834001AC3E56700842450 /* Products */ = {
isa = PBXGroup;
children = (
146834041AC3E56700842450 /* libReact.a */,
3DAD3EA31DF850E9000B6D8A /* libReact.a */,
3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
6C11FF7A20637297004452BF /* libthird-party.a */,
6C11FF7C20637297004452BF /* libthird-party.a */,
6C11FF7E20637297004452BF /* libdouble-conversion.a */,
6C11FF8020637297004452BF /* libdouble-conversion.a */,
);
name = Products;
sourceTree = "<group>";
};
5E91572E1DD0AC6500FF2AA8 /* Products */ = {
isa = PBXGroup;
children = (
5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
);
name = Products;
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>";
};
6C10B8A2208E159300B414B4 /* Products */ = {
isa = PBXGroup;
children = (
6C10B8B2208E159300B414B4 /* libRCTSplashScreen.a */,
);
name = Products;
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>";
};
6C58540020B3B38F00240A8F /* Recovered References */ = {
isa = PBXGroup;
children = (
75878AD97541411AA3BB42FF /* libRCTCamera.a */,
);
name = "Recovered References";
sourceTree = "<group>";
};
6C58542220B3B39200240A8F /* Products */ = {
isa = PBXGroup;
children = (
6C58542620B3B39200240A8F /* libRCTCamera.a */,
);
name = Products;
sourceTree = "<group>";
};
6CA2D8A62068E7C0004E9E33 /* Frameworks */ = {
isa = PBXGroup;
children = (
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 = (
6CC0C13D20A14FF800269961 /* SecurityEnvSDK.framework */,
6CC0C13F20A14FF900269961 /* UMAnalytics.framework */,
6CC0C13E20A14FF800269961 /* UMCommon.framework */,
);
path = UM;
sourceTree = "<group>";
};
6CDEE23320873C2E00CA7B75 /* IQKeyBoardManager20160113 */ = {
isa = PBXGroup;
children = (
6CDEE23420873C2E00CA7B75 /* IQTextView */,
6CDEE23720873C2E00CA7B75 /* IQToolbar */,
6CDEE24020873C2E00CA7B75 /* Constants */,
6CDEE24320873C2E00CA7B75 /* Resources */,
6CDEE24520873C2E00CA7B75 /* IQKeyboardReturnKeyHandler.h */,
6CDEE24620873C2E00CA7B75 /* IQKeyboardManager.h */,
6CDEE24720873C2E00CA7B75 /* KeyboardManager.h */,
6CDEE24820873C2E00CA7B75 /* IQKeyboardManager.m */,
6CDEE24920873C2E00CA7B75 /* Categories */,
6CDEE25620873C2E00CA7B75 /* IQKeyboardReturnKeyHandler.m */,
);
path = IQKeyBoardManager20160113;
sourceTree = "<group>";
};
6CDEE23420873C2E00CA7B75 /* IQTextView */ = {
isa = PBXGroup;
children = (
6CDEE23520873C2E00CA7B75 /* IQTextView.m */,
6CDEE23620873C2E00CA7B75 /* IQTextView.h */,
);
path = IQTextView;
sourceTree = "<group>";
};
6CDEE23720873C2E00CA7B75 /* IQToolbar */ = {
isa = PBXGroup;
children = (
6CDEE23820873C2E00CA7B75 /* IQUIView+IQKeyboardToolbar.h */,
6CDEE23920873C2E00CA7B75 /* IQToolbar.m */,
6CDEE23A20873C2E00CA7B75 /* IQTitleBarButtonItem.m */,
6CDEE23B20873C2E00CA7B75 /* IQBarButtonItem.m */,
6CDEE23C20873C2E00CA7B75 /* IQUIView+IQKeyboardToolbar.m */,
6CDEE23D20873C2E00CA7B75 /* IQToolbar.h */,
6CDEE23E20873C2E00CA7B75 /* IQBarButtonItem.h */,
6CDEE23F20873C2E00CA7B75 /* IQTitleBarButtonItem.h */,
);
path = IQToolbar;
sourceTree = "<group>";
};
6CDEE24020873C2E00CA7B75 /* Constants */ = {
isa = PBXGroup;
children = (
6CDEE24120873C2E00CA7B75 /* IQKeyboardManagerConstantsInternal.h */,
6CDEE24220873C2E00CA7B75 /* IQKeyboardManagerConstants.h */,
);
path = Constants;
sourceTree = "<group>";
};
6CDEE24320873C2E00CA7B75 /* Resources */ = {
isa = PBXGroup;
children = (
6CDEE24420873C2E00CA7B75 /* IQKeyboardManager.bundle */,
);
path = Resources;
sourceTree = "<group>";
};
6CDEE24920873C2E00CA7B75 /* Categories */ = {
isa = PBXGroup;
children = (
6CDEE24A20873C2E00CA7B75 /* IQNSArray+Sort.m */,
6CDEE24B20873C2E00CA7B75 /* IQUIWindow+Hierarchy.m */,
6CDEE24C20873C2E00CA7B75 /* IQUIViewController+Additions.h */,
6CDEE24D20873C2E00CA7B75 /* IQUITextFieldView+Additions.m */,
6CDEE24E20873C2E00CA7B75 /* IQUIScrollView+Additions.m */,
6CDEE24F20873C2E00CA7B75 /* IQUIView+Hierarchy.m */,
6CDEE25020873C2E00CA7B75 /* IQUIWindow+Hierarchy.h */,
6CDEE25120873C2E00CA7B75 /* IQNSArray+Sort.h */,
6CDEE25220873C2E00CA7B75 /* IQUIScrollView+Additions.h */,
6CDEE25320873C2E00CA7B75 /* IQUITextFieldView+Additions.h */,
6CDEE25420873C2E00CA7B75 /* IQUIViewController+Additions.m */,
6CDEE25520873C2E00CA7B75 /* IQUIView+Hierarchy.h */,
);
path = Categories;
sourceTree = "<group>";
};
6CDEE28320874A5500CA7B75 /* Products */ = {
isa = PBXGroup;
children = (
6CDEE28720874A5600CA7B75 /* libRNImagePicker.a */,
);
name = Products;
sourceTree = "<group>";
};
6CDEE2EB20886F6100CA7B75 /* PhotoChoose */ = {
isa = PBXGroup;
children = (
6CDEE43A208887E600CA7B75 /* ZLPhotoActionSheet.h */,
6CDEE43B208887E600CA7B75 /* ZLPhotoActionSheet.m */,
6CDEE4372088874600CA7B75 /* NSBundle+ZLPhotoBrowser.h */,
6CDEE4382088874600CA7B75 /* NSBundle+ZLPhotoBrowser.m */,
6CDEE2ED20886F6100CA7B75 /* ZLCustomCamera.h */,
6CDEE2EE20886F6100CA7B75 /* ZLPhotoBrowser.h */,
6CDEE2F020886F6100CA7B75 /* ZLBigImageCell.m */,
6CDEE2F120886F6100CA7B75 /* ZLEditViewController.h */,
6CDEE2F220886F6100CA7B75 /* ToastUtils.h */,
6CDEE2F320886F6100CA7B75 /* UIImage+ZLPhotoBrowser.h */,
6CDEE2F420886F6100CA7B75 /* ZLPlayer.h */,
6CDEE2F520886F6100CA7B75 /* ZLPhotoBrowserCell.m */,
6CDEE2F620886F6100CA7B75 /* ZLForceTouchPreviewController.m */,
6CDEE2F720886F6100CA7B75 /* UIButton+EnlargeTouchArea.h */,
6CDEE2F820886F6100CA7B75 /* ZLCollectionCell.h */,
6CDEE2F920886F6100CA7B75 /* ZLNoAuthorityViewController.h */,
6CDEE2FA20886F6100CA7B75 /* ZLPhotoManager.m */,
6CDEE2FC20886F6100CA7B75 /* ZLPhotoConfiguration.h */,
6CDEE2FD20886F6100CA7B75 /* ZLDefine.h */,
6CDEE2FF20886F6100CA7B75 /* ZLEditVideoController.h */,
6CDEE30020886F6100CA7B75 /* ZLPhotoModel.h */,
6CDEE30120886F6100CA7B75 /* ZLThumbnailViewController.h */,
6CDEE30320886F6100CA7B75 /* ZLProgressHUD.m */,
6CDEE30420886F6100CA7B75 /* ZLShowBigImgViewController.h */,
6CDEE30620886F6100CA7B75 /* ZLBigImageCell.h */,
6CDEE30820886F6100CA7B75 /* ZLPhotoBrowser.m */,
6CDEE30A20886F6100CA7B75 /* ZLCustomCamera.m */,
6CDEE30B20886F6100CA7B75 /* ZLPlayer.m */,
6CDEE30C20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m */,
6CDEE30D20886F6100CA7B75 /* ToastUtils.m */,
6CDEE30E20886F6100CA7B75 /* ZLEditViewController.m */,
6CDEE31020886F6100CA7B75 /* ZLPhotoManager.h */,
6CDEE31120886F6100CA7B75 /* ZLCollectionCell.m */,
6CDEE31220886F6100CA7B75 /* ZLNoAuthorityViewController.m */,
6CDEE31320886F6100CA7B75 /* ZLForceTouchPreviewController.h */,
6CDEE31420886F6100CA7B75 /* UIButton+EnlargeTouchArea.m */,
6CDEE31520886F6100CA7B75 /* resource */,
6CDEE31920886F6100CA7B75 /* ZLPhotoBrowserCell.h */,
6CDEE31A20886F6100CA7B75 /* ZLShowBigImgViewController.m */,
6CDEE31C20886F6100CA7B75 /* ZLThumbnailViewController.m */,
6CDEE31E20886F6100CA7B75 /* ZLProgressHUD.h */,
6CDEE31F20886F6100CA7B75 /* ZLPhotoModel.m */,
6CDEE32020886F6100CA7B75 /* ZLEditVideoController.m */,
6CDEE32220886F6100CA7B75 /* ZLPhotoConfiguration.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>";
};
6CDEE4962089DCF100CA7B75 /* Products */ = {
isa = PBXGroup;
children = (
6CDEE49B2089DCF200CA7B75 /* libRCTVideo.a */,
6CDEE49D2089DCF200CA7B75 /* libRCTVideo.a */,
);
name = Products;
sourceTree = "<group>";
};
78C398B11ACF4ADC00677621 /* Products */ = {
isa = PBXGroup;
children = (
78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
isa = PBXGroup;
children = (
6C10B8A1208E159300B414B4 /* RCTSplashScreen.xcodeproj */,
6CDEE4952089DCF100CA7B75 /* RCTVideo.xcodeproj */,
6CDEE28220874A5400CA7B75 /* RNImagePicker.xcodeproj */,
5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
146833FF1AC3E56700842450 /* React.xcodeproj */,
00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
612E4215E0C349EC8259998D /* RCTCamera.xcodeproj */,
);
name = Libraries;
sourceTree = "<group>";
};
832341B11AAA6A8300B99B32 /* Products */ = {
isa = PBXGroup;
children = (
832341B51AAA6A8300B99B32 /* libRCTText.a */,
3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
);
name = Products;
sourceTree = "<group>";
};
83CBB9F61A601CBA00E9B192 = {
isa = PBXGroup;
children = (
1BFC238A2176EA7300AE76D9 /* 平安地铁权限版.entitlements */,
13B07FAE1A68108700A75B9A /* metroApp */,
832341AE1AAA6A7D00B99B32 /* Libraries */,
00E356EF1AD99517003FC87E /* metroAppTests */,
83CBBA001A601CBA00E9B192 /* Products */,
6CA2D8A62068E7C0004E9E33 /* Frameworks */,
6C58540020B3B38F00240A8F /* Recovered References */,
);
indentWidth = 2;
sourceTree = "<group>";
tabWidth = 2;
};
83CBBA001A601CBA00E9B192 /* Products */ = {
isa = PBXGroup;
children = (
13B07F961A680F5B00A75B9A /* metroApp.app */,
00E356EE1AD99517003FC87E /* metroAppTests.xctest */,
2D02E47B1E0B4A5D006451C7 /* metroApp-tvOS.app */,
2D02E4901E0B4A5D006451C7 /* metroApp-tvOSTests.xctest */,
6C1E51FC2099A1910002AA8D /* 平安地铁权限版.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 /* 平安地铁权限版 */ = {
isa = PBXNativeTarget;
buildConfigurationList = 6C1E51F92099A1910002AA8D /* Build configuration list for PBXNativeTarget "平安地铁权限版" */;
buildPhases = (
6C1E517E2099A1910002AA8D /* Sources */,
6C1E51D82099A1910002AA8D /* Frameworks */,
6C1E51F22099A1910002AA8D /* Resources */,
6C1E51F82099A1910002AA8D /* Bundle React Native code and images */,
);
buildRules = (
);
dependencies = (
);
name = "平安地铁权限版";
productName = "Hello World";
productReference = 6C1E51FC2099A1910002AA8D /* 平安地铁权限版.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;
};
};
};
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;
};
};
};
};
};
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 = 00C302A81ABCB8CE00DB3ED1 /* Products */;
ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
},
{
ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
},
{
ProductGroup = 6C58542220B3B39200240A8F /* Products */;
ProjectRef = 612E4215E0C349EC8259998D /* RCTCamera.xcodeproj */;
},
{
ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
},
{
ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
},
{
ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
},
{
ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
},
{
ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
},
{
ProductGroup = 6C10B8A2208E159300B414B4 /* Products */;
ProjectRef = 6C10B8A1208E159300B414B4 /* RCTSplashScreen.xcodeproj */;
},
{
ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
},
{
ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
},
{
ProductGroup = 6CDEE4962089DCF100CA7B75 /* Products */;
ProjectRef = 6CDEE4952089DCF100CA7B75 /* RCTVideo.xcodeproj */;
},
{
ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
},
{
ProductGroup = 146834001AC3E56700842450 /* Products */;
ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
},
{
ProductGroup = 6CDEE28320874A5500CA7B75 /* Products */;
ProjectRef = 6CDEE28220874A5400CA7B75 /* RNImagePicker.xcodeproj */;
},
);
projectRoot = "";
targets = (
13B07F861A680F5B00A75B9A /* metroApp */,
6C1E517D2099A1910002AA8D /* 平安地铁权限版 */,
00E356ED1AD99517003FC87E /* metroAppTests */,
2D02E47A1E0B4A5D006451C7 /* metroApp-tvOS */,
2D02E48F1E0B4A5D006451C7 /* metroApp-tvOSTests */,
);
};
/* End PBXProject section */
/* Begin PBXReferenceProxy section */
00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTActionSheet.a;
remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTGeolocation.a;
remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTImage.a;
remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTNetwork.a;
remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTVibration.a;
remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTSettings.a;
remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTWebSocket.a;
remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
146834041AC3E56700842450 /* libReact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libReact.a;
remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTImage-tvOS.a";
remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTLinking-tvOS.a";
remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTNetwork-tvOS.a";
remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTSettings-tvOS.a";
remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTText-tvOS.a";
remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libRCTWebSocket-tvOS.a";
remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libReact.a;
remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libyoga.a;
remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libyoga.a;
remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libcxxreact.a;
remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libcxxreact.a;
remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libjschelpers.a;
remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libjschelpers.a;
remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTAnimation.a;
remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTAnimation.a;
remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C10B8B2208E159300B414B4 /* libRCTSplashScreen.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTSplashScreen.a;
remoteRef = 6C10B8B1208E159300B414B4 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C11FF7A20637297004452BF /* libthird-party.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libthird-party.a";
remoteRef = 6C11FF7920637297004452BF /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C11FF7C20637297004452BF /* libthird-party.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libthird-party.a";
remoteRef = 6C11FF7B20637297004452BF /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C11FF7E20637297004452BF /* libdouble-conversion.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libdouble-conversion.a";
remoteRef = 6C11FF7D20637297004452BF /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C11FF8020637297004452BF /* libdouble-conversion.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libdouble-conversion.a";
remoteRef = 6C11FF7F20637297004452BF /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6C58542620B3B39200240A8F /* libRCTCamera.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTCamera.a;
remoteRef = 6C58542520B3B39200240A8F /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6CDEE28720874A5600CA7B75 /* libRNImagePicker.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRNImagePicker.a;
remoteRef = 6CDEE28620874A5600CA7B75 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6CDEE49B2089DCF200CA7B75 /* libRCTVideo.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTVideo.a;
remoteRef = 6CDEE49A2089DCF200CA7B75 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
6CDEE49D2089DCF200CA7B75 /* libRCTVideo.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTVideo.a;
remoteRef = 6CDEE49C2089DCF200CA7B75 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTLinking.a;
remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libRCTText.a;
remoteRef = 832341B41AAA6A8300B99B32 /* 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 = (
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
6CDEE35620886F6200CA7B75 /* ZLPhotoBrowserCell.xib in Resources */,
6CDEE35420886F6200CA7B75 /* ZLPhotoBrowser.bundle in Resources */,
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
6CDEE27920873C2F00CA7B75 /* IQKeyboardManager.bundle 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 = (
6C1E51F32099A1910002AA8D /* Images.xcassets in Resources */,
6C1E51F42099A1910002AA8D /* ZLPhotoBrowserCell.xib in Resources */,
6C1E51F52099A1910002AA8D /* ZLPhotoBrowser.bundle in Resources */,
6C1E51F62099A1910002AA8D /* LaunchScreen.xib in Resources */,
6C1E51F72099A1910002AA8D /* IQKeyboardManager.bundle 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";
};
/* 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 */,
6CDEE34320886F6100CA7B75 /* ZLPhotoBrowserCell.m in Sources */,
6CDEE41D2088805800CA7B75 /* UIImage+WebP.m in Sources */,
6CDEE37420887D3600CA7B75 /* SelectCollectionCell.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 */,
6CDEE39120887D6D00CA7B75 /* MASCompositeConstraint.m in Sources */,
6CDEE27A20873C2F00CA7B75 /* IQKeyboardManager.m in Sources */,
6CDEE39720887D6D00CA7B75 /* MASViewConstraint.m in Sources */,
6C10B804208DF90100B414B4 /* BaseRequest.m in Sources */,
6CDEE34520886F6100CA7B75 /* ZLPhotoManager.m in Sources */,
6CDEE4332088805900CA7B75 /* UIView+WebCache.m in Sources */,
6CDEE4222088805900CA7B75 /* UIImage+ForceDecode.m in Sources */,
6CDEE28020873C2F00CA7B75 /* IQUIViewController+Additions.m in Sources */,
6CDEE4352088805900CA7B75 /* UIButton+WebCache.m in Sources */,
6CDEE27520873C2F00CA7B75 /* IQToolbar.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 */,
6CDEE4292088805900CA7B75 /* SDWebImagePrefetcher.m in Sources */,
6C10B8DB208ED74D00B414B4 /* AFSecurityPolicy.m in Sources */,
6CDEE27720873C2F00CA7B75 /* IQBarButtonItem.m in Sources */,
6CDEE35720886F6200CA7B75 /* ZLShowBigImgViewController.m in Sources */,
6CDEE39520887D6D00CA7B75 /* View+MASAdditions.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 */,
6CDEE27C20873C2F00CA7B75 /* IQUIWindow+Hierarchy.m in Sources */,
6C10B7FA208DF8F800B414B4 /* xn_base_Client_AF.m in Sources */,
6CDEE34220886F6100CA7B75 /* ZLBigImageCell.m in Sources */,
6CDEE34A20886F6100CA7B75 /* ZLPhotoBrowser.m in Sources */,
6CDEE4362088805900CA7B75 /* SDWebImageWebPCoder.m in Sources */,
6CDEE34B20886F6100CA7B75 /* ZLCustomCamera.m in Sources */,
6CDEE27620873C2F00CA7B75 /* IQTitleBarButtonItem.m in Sources */,
6CDEE42E2088805900CA7B75 /* UIImageView+WebCache.m in Sources */,
6CDEE4322088805900CA7B75 /* UIView+WebCacheOperation.m in Sources */,
6CDEE4202088805900CA7B75 /* UIImageView+HighlightedWebCache.m in Sources */,
6CDEE27B20873C2F00CA7B75 /* IQNSArray+Sort.m in Sources */,
6CDEE34F20886F6200CA7B75 /* ZLEditViewController.m in Sources */,
6CDEE39820887D6D00CA7B75 /* MASViewAttribute.m in Sources */,
6CDEE27F20873C2F00CA7B75 /* IQUIView+Hierarchy.m in Sources */,
6CDEE27D20873C2F00CA7B75 /* IQUITextFieldView+Additions.m in Sources */,
6C10B8D9208ED74D00B414B4 /* AFURLRequestSerialization.m in Sources */,
6CDEE34D20886F6100CA7B75 /* UIImage+ZLPhotoBrowser.m in Sources */,
6CDEE28120873C2F00CA7B75 /* IQKeyboardReturnKeyHandler.m in Sources */,
6CDEE27E20873C2F00CA7B75 /* IQUIScrollView+Additions.m in Sources */,
6CDEE35320886F6200CA7B75 /* UIButton+EnlargeTouchArea.m in Sources */,
6CDEE27820873C2F00CA7B75 /* IQUIView+IQKeyboardToolbar.m in Sources */,
6CDEE42C2088805900CA7B75 /* SDWebImageDownloaderOperation.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 */,
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 */,
6CDEE27420873C2F00CA7B75 /* IQTextView.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 */,
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 */,
6C1E51802099A1910002AA8D /* ZLPhotoBrowserCell.m in Sources */,
6C1E51812099A1910002AA8D /* UIImage+WebP.m in Sources */,
6C1E51822099A1910002AA8D /* SelectCollectionCell.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 */,
6C1E51882099A1910002AA8D /* MASCompositeConstraint.m in Sources */,
6C1E51892099A1910002AA8D /* IQKeyboardManager.m in Sources */,
6C1E518A2099A1910002AA8D /* MASViewConstraint.m in Sources */,
6C1E518B2099A1910002AA8D /* BaseRequest.m in Sources */,
6C1E518C2099A1910002AA8D /* ZLPhotoManager.m in Sources */,
6C1E518D2099A1910002AA8D /* UIView+WebCache.m in Sources */,
6C1E518E2099A1910002AA8D /* UIImage+ForceDecode.m in Sources */,
6C1E518F2099A1910002AA8D /* IQUIViewController+Additions.m in Sources */,
6C1E51902099A1910002AA8D /* UIButton+WebCache.m in Sources */,
6C1E51912099A1910002AA8D /* IQToolbar.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 */,
6C1E51972099A1910002AA8D /* SDWebImagePrefetcher.m in Sources */,
6C1E51982099A1910002AA8D /* AFSecurityPolicy.m in Sources */,
6C1E51992099A1910002AA8D /* IQBarButtonItem.m in Sources */,
6C1E519A2099A1910002AA8D /* ZLShowBigImgViewController.m in Sources */,
6C1E519B2099A1910002AA8D /* View+MASAdditions.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 */,
6C1E51A12099A1910002AA8D /* IQUIWindow+Hierarchy.m in Sources */,
6C1E51A22099A1910002AA8D /* xn_base_Client_AF.m in Sources */,
6C1E51A32099A1910002AA8D /* ZLBigImageCell.m in Sources */,
6C1E51A42099A1910002AA8D /* ZLPhotoBrowser.m in Sources */,
6C1E51A52099A1910002AA8D /* SDWebImageWebPCoder.m in Sources */,
6C1E51A62099A1910002AA8D /* ZLCustomCamera.m in Sources */,
6C1E51A72099A1910002AA8D /* IQTitleBarButtonItem.m in Sources */,
6C1E51A82099A1910002AA8D /* UIImageView+WebCache.m in Sources */,
6C1E51A92099A1910002AA8D /* UIView+WebCacheOperation.m in Sources */,
6C1E51AA2099A1910002AA8D /* UIImageView+HighlightedWebCache.m in Sources */,
6C1E51AB2099A1910002AA8D /* IQNSArray+Sort.m in Sources */,
6C1E51AC2099A1910002AA8D /* ZLEditViewController.m in Sources */,
6C1E51AD2099A1910002AA8D /* MASViewAttribute.m in Sources */,
6C1E51AE2099A1910002AA8D /* IQUIView+Hierarchy.m in Sources */,
6C1E51AF2099A1910002AA8D /* IQUITextFieldView+Additions.m in Sources */,
6C1E51B02099A1910002AA8D /* AFURLRequestSerialization.m in Sources */,
6C1E51B12099A1910002AA8D /* UIImage+ZLPhotoBrowser.m in Sources */,
6C1E51B22099A1910002AA8D /* IQKeyboardReturnKeyHandler.m in Sources */,
6C1E51B32099A1910002AA8D /* IQUIScrollView+Additions.m in Sources */,
6C1E51B42099A1910002AA8D /* UIButton+EnlargeTouchArea.m in Sources */,
6C1E51B52099A1910002AA8D /* IQUIView+IQKeyboardToolbar.m in Sources */,
6C1E51B62099A1910002AA8D /* SDWebImageDownloaderOperation.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 */,
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 */,
6C1E51C92099A1910002AA8D /* IQTextView.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 */,
6C1E51D52099A1910002AA8D /* AFURLResponseSerialization.m in Sources */,
1BFC23582176D8CB00AE76D9 /* RequestData.m in Sources */,
6C1E51D62099A1910002AA8D /* AFNetworkReachabilityManager.m in Sources */,
6C1E51D72099A1910002AA8D /* 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",
);
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)\"",
);
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",
);
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)\"",
);
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 = 1;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = 79EYVFBRS8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
);
INFOPLIST_FILE = metroApp/Info.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 = 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 = 1;
DEVELOPMENT_TEAM = 79EYVFBRS8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
);
INFOPLIST_FILE = metroApp/Info.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 = AppStoreshdt;
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",
);
INFOPLIST_FILE = "metroApp-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(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",
);
INFOPLIST_FILE = "metroApp-tvOS/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(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;
INFOPLIST_FILE = "metroApp-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
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;
INFOPLIST_FILE = "metroApp-tvOSTests/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
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;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
);
INFOPLIST_FILE = "$(SRCROOT)/平安地铁权限版.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.subway;
PRODUCT_NAME = "$(TARGET_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;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = CS92VJG4C8;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
"$(PROJECT_DIR)/UM",
);
HEADER_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)..\node_modules\neact-native-cameraios",
);
INFOPLIST_FILE = "$(SRCROOT)/平安地铁权限版.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/$(TARGET_NAME)\"",
);
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-lc++",
);
PRODUCT_BUNDLE_IDENTIFIER = com.subway;
PRODUCT_NAME = "$(TARGET_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 "平安地铁权限版" */ = {
isa = XCConfigurationList;
buildConfigurations = (
6C1E51FA2099A1910002AA8D /* Debug */,
6C1E51FB2099A1910002AA8D /* 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 */;
}