@fadyshawky/react-native-magic 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/package.json +90 -1
- package/template/ios/Podfile.lock +6 -26
- package/template/ios/reactnativemagic.xcodeproj/project.pbxproj +72 -66
- package/template/ios/tmp.xcconfig +3 -0
- package/template/package-lock.json +902 -3368
- package/template/package.json +13 -25
- package/template/src/core/store/user/userActions.ts +2 -3
- package/.vscode/settings.json +0 -7
package/README.md
CHANGED
|
@@ -13,9 +13,8 @@ A modern, production-ready React Native template with best practices, common dep
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npx react-native init YourAppName --template
|
|
16
|
+
npx @react-native-community/cli init YourAppName --template @fadyshawky/react-native-magic
|
|
17
17
|
cd YourAppName
|
|
18
|
-
npm install --legacy-peer-deps
|
|
19
18
|
```
|
|
20
19
|
|
|
21
20
|
For iOS, install pods:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fadyshawky/react-native-magic",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "react native template with ready components, hooks, react navigation, redux, typescript, etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native-magic",
|
|
@@ -19,6 +19,95 @@
|
|
|
19
19
|
"author": "Fady Shawky",
|
|
20
20
|
"type": "commonjs",
|
|
21
21
|
"main": "index.js",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@react-native-async-storage/async-storage": "^2.1.0",
|
|
24
|
+
"@react-native-camera-roll/camera-roll": "^7.9.0",
|
|
25
|
+
"@react-native-community/datetimepicker": "^8.2.0",
|
|
26
|
+
"@react-native-community/image-editor": "^4.2.1",
|
|
27
|
+
"@react-native-community/netinfo": "^11.4.1",
|
|
28
|
+
"@react-native-community/slider": "^4.5.5",
|
|
29
|
+
"@react-navigation/bottom-tabs": "^7.2.0",
|
|
30
|
+
"@react-navigation/drawer": "^7.1.1",
|
|
31
|
+
"@react-navigation/material-top-tabs": "^7.1.0",
|
|
32
|
+
"@react-navigation/native": "^7.0.14",
|
|
33
|
+
"@react-navigation/native-stack": "^7.2.0",
|
|
34
|
+
"@reduxjs/toolkit": "^2.5.0",
|
|
35
|
+
"@shopify/flash-list": "^1.7.2",
|
|
36
|
+
"@types/intl": "^1.2.2",
|
|
37
|
+
"@types/jest": "^29.5.14",
|
|
38
|
+
"@types/lodash": "^4.17.13",
|
|
39
|
+
"@types/react-native-vector-icons": "^6.4.18",
|
|
40
|
+
"@types/react-redux": "^7.1.34",
|
|
41
|
+
"axios": "^1.7.9",
|
|
42
|
+
"babel-plugin-transform-remove-console": "^6.9.4",
|
|
43
|
+
"dayjs": "^1.11.13",
|
|
44
|
+
"detox": "^20.28.0",
|
|
45
|
+
"intl": "^1.2.5",
|
|
46
|
+
"lodash": "^4.17.21",
|
|
47
|
+
"mime": "^4.0.6",
|
|
48
|
+
"patch-package": "^8.0.0",
|
|
49
|
+
"react": "^18.3.1",
|
|
50
|
+
"react-native": "^0.76.5",
|
|
51
|
+
"react-native-actions-sheet": "^0.9.7",
|
|
52
|
+
"react-native-animated-pagination-dots": "^0.1.73",
|
|
53
|
+
"react-native-calendars": "^1.1307.0",
|
|
54
|
+
"react-native-config": "^1.5.3",
|
|
55
|
+
"react-native-device-info": "^14.0.2",
|
|
56
|
+
"react-native-dropdown-select-list": "^2.0.5",
|
|
57
|
+
"react-native-gesture-handler": "^2.21.2",
|
|
58
|
+
"react-native-image-crop-picker": "^0.41.6",
|
|
59
|
+
"react-native-image-resource-generator": "^1.0.2",
|
|
60
|
+
"react-native-in-app-review": "^4.3.3",
|
|
61
|
+
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
62
|
+
"react-native-localization": "^2.3.2",
|
|
63
|
+
"react-native-mask-input": "^1.2.3",
|
|
64
|
+
"react-native-orientation-locker": "^1.7.0",
|
|
65
|
+
"react-native-pager-view": "^6.6.1",
|
|
66
|
+
"react-native-permissions": "^5.2.1",
|
|
67
|
+
"react-native-reanimated": "^3.16.6",
|
|
68
|
+
"react-native-reanimated-carousel": "^3.5.1",
|
|
69
|
+
"react-native-safe-area-context": "^5.0.0",
|
|
70
|
+
"react-native-screens": "^4.4.0",
|
|
71
|
+
"react-native-sfsymbols": "^1.2.2",
|
|
72
|
+
"react-native-share": "^12.0.3",
|
|
73
|
+
"react-native-snackbar": "^2.8.0",
|
|
74
|
+
"react-native-svg": "^15.10.1",
|
|
75
|
+
"react-native-tab-view": "^4.0.5",
|
|
76
|
+
"react-native-vector-icons": "^10.2.0",
|
|
77
|
+
"react-native-vision-camera": "^4.6.3",
|
|
78
|
+
"react-native-webview": "^13.12.5",
|
|
79
|
+
"react-redux": "^9.2.0",
|
|
80
|
+
"redux": "^5.0.1",
|
|
81
|
+
"redux-persist": "^6.0.0",
|
|
82
|
+
"redux-persist-transform-filter": "^0.0.22"
|
|
83
|
+
},
|
|
84
|
+
"devDependencies": {
|
|
85
|
+
"@babel/core": "^7.25.2",
|
|
86
|
+
"@babel/preset-env": "^7.26.0",
|
|
87
|
+
"@babel/runtime": "^7.26.0",
|
|
88
|
+
"@jest/globals": "^29.7.0",
|
|
89
|
+
"@react-native-community/cli": "15.0.1",
|
|
90
|
+
"@react-native-community/cli-platform-android": "15.0.1",
|
|
91
|
+
"@react-native-community/cli-platform-ios": "15.0.1",
|
|
92
|
+
"@react-native/babel-preset": "^0.76.5",
|
|
93
|
+
"@react-native/eslint-config": "^0.76.5",
|
|
94
|
+
"@react-native/metro-config": "^0.76.5",
|
|
95
|
+
"@react-native/typescript-config": "^0.76.5",
|
|
96
|
+
"@types/react": "^18.3.18",
|
|
97
|
+
"@types/react-test-renderer": "^18.3.1",
|
|
98
|
+
"babel-jest": "^29.7.0",
|
|
99
|
+
"eslint": "^8.57.1",
|
|
100
|
+
"eslint-plugin-import": "^2.31.0",
|
|
101
|
+
"eslint-plugin-jest": "^28.10.0",
|
|
102
|
+
"eslint-plugin-react": "^7.37.2",
|
|
103
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
104
|
+
"eslint-plugin-react-native": "^4.1.0",
|
|
105
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
106
|
+
"jest": "^29.7.0",
|
|
107
|
+
"prettier": "^2.8.8",
|
|
108
|
+
"react-test-renderer": "^18.3.1",
|
|
109
|
+
"typescript": "^5.0.4"
|
|
110
|
+
},
|
|
22
111
|
"scripts": {
|
|
23
112
|
"test": "exit 0"
|
|
24
113
|
},
|
|
@@ -1242,14 +1242,6 @@ PODS:
|
|
|
1242
1242
|
- ReactCommon/turbomodule/bridging
|
|
1243
1243
|
- ReactCommon/turbomodule/core
|
|
1244
1244
|
- Yoga
|
|
1245
|
-
- react-native-camera (4.2.1):
|
|
1246
|
-
- React-Core
|
|
1247
|
-
- react-native-camera/RCT (= 4.2.1)
|
|
1248
|
-
- react-native-camera/RN (= 4.2.1)
|
|
1249
|
-
- react-native-camera/RCT (4.2.1):
|
|
1250
|
-
- React-Core
|
|
1251
|
-
- react-native-camera/RN (4.2.1):
|
|
1252
|
-
- React-Core
|
|
1253
1245
|
- react-native-cameraroll (7.9.0):
|
|
1254
1246
|
- DoubleConversion
|
|
1255
1247
|
- glog
|
|
@@ -1302,6 +1294,8 @@ PODS:
|
|
|
1302
1294
|
- React-Core
|
|
1303
1295
|
- react-native-netinfo (11.4.1):
|
|
1304
1296
|
- React-Core
|
|
1297
|
+
- react-native-orientation-locker (1.7.0):
|
|
1298
|
+
- React-Core
|
|
1305
1299
|
- react-native-pager-view (6.6.1):
|
|
1306
1300
|
- DoubleConversion
|
|
1307
1301
|
- glog
|
|
@@ -1724,8 +1718,6 @@ PODS:
|
|
|
1724
1718
|
- React-utils (= 0.76.5)
|
|
1725
1719
|
- ReactNativeLocalization (2.3.2):
|
|
1726
1720
|
- React-Core
|
|
1727
|
-
- rn-fetch-blob (0.12.0):
|
|
1728
|
-
- React-Core
|
|
1729
1721
|
- RNCAsyncStorage (2.1.0):
|
|
1730
1722
|
- DoubleConversion
|
|
1731
1723
|
- glog
|
|
@@ -1770,10 +1762,6 @@ PODS:
|
|
|
1770
1762
|
- Yoga
|
|
1771
1763
|
- RNDeviceInfo (14.0.2):
|
|
1772
1764
|
- React-Core
|
|
1773
|
-
- RNDevMenu (4.1.1):
|
|
1774
|
-
- React-Core
|
|
1775
|
-
- React-Core/DevSupport
|
|
1776
|
-
- React-RCTNetwork
|
|
1777
1765
|
- RNFlashList (1.7.2):
|
|
1778
1766
|
- DoubleConversion
|
|
1779
1767
|
- glog
|
|
@@ -2113,13 +2101,13 @@ DEPENDENCIES:
|
|
|
2113
2101
|
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
2114
2102
|
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
|
|
2115
2103
|
- React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
|
|
2116
|
-
- react-native-camera (from `../node_modules/react-native-camera`)
|
|
2117
2104
|
- "react-native-cameraroll (from `../node_modules/@react-native-camera-roll/camera-roll`)"
|
|
2118
2105
|
- react-native-config (from `../node_modules/react-native-config`)
|
|
2119
2106
|
- react-native-config/Extension (from `../node_modules/react-native-config`)
|
|
2120
2107
|
- "react-native-image-editor (from `../node_modules/@react-native-community/image-editor`)"
|
|
2121
2108
|
- react-native-in-app-review (from `../node_modules/react-native-in-app-review`)
|
|
2122
2109
|
- "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
|
|
2110
|
+
- react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`)
|
|
2123
2111
|
- react-native-pager-view (from `../node_modules/react-native-pager-view`)
|
|
2124
2112
|
- react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
|
|
2125
2113
|
- react-native-sfsymbols (from `../node_modules/react-native-sfsymbols`)
|
|
@@ -2153,11 +2141,9 @@ DEPENDENCIES:
|
|
|
2153
2141
|
- ReactCodegen (from `build/generated/ios`)
|
|
2154
2142
|
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
2155
2143
|
- ReactNativeLocalization (from `../node_modules/react-native-localization`)
|
|
2156
|
-
- rn-fetch-blob (from `../node_modules/rn-fetch-blob`)
|
|
2157
2144
|
- "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
|
|
2158
2145
|
- "RNDateTimePicker (from `../node_modules/@react-native-community/datetimepicker`)"
|
|
2159
2146
|
- RNDeviceInfo (from `../node_modules/react-native-device-info`)
|
|
2160
|
-
- RNDevMenu (from `../node_modules/react-native-dev-menu`)
|
|
2161
2147
|
- "RNFlashList (from `../node_modules/@shopify/flash-list`)"
|
|
2162
2148
|
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
|
|
2163
2149
|
- RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`)
|
|
@@ -2248,8 +2234,6 @@ EXTERNAL SOURCES:
|
|
|
2248
2234
|
:path: "../node_modules/react-native/ReactCommon"
|
|
2249
2235
|
React-microtasksnativemodule:
|
|
2250
2236
|
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
|
|
2251
|
-
react-native-camera:
|
|
2252
|
-
:path: "../node_modules/react-native-camera"
|
|
2253
2237
|
react-native-cameraroll:
|
|
2254
2238
|
:path: "../node_modules/@react-native-camera-roll/camera-roll"
|
|
2255
2239
|
react-native-config:
|
|
@@ -2260,6 +2244,8 @@ EXTERNAL SOURCES:
|
|
|
2260
2244
|
:path: "../node_modules/react-native-in-app-review"
|
|
2261
2245
|
react-native-netinfo:
|
|
2262
2246
|
:path: "../node_modules/@react-native-community/netinfo"
|
|
2247
|
+
react-native-orientation-locker:
|
|
2248
|
+
:path: "../node_modules/react-native-orientation-locker"
|
|
2263
2249
|
react-native-pager-view:
|
|
2264
2250
|
:path: "../node_modules/react-native-pager-view"
|
|
2265
2251
|
react-native-safe-area-context:
|
|
@@ -2326,16 +2312,12 @@ EXTERNAL SOURCES:
|
|
|
2326
2312
|
:path: "../node_modules/react-native/ReactCommon"
|
|
2327
2313
|
ReactNativeLocalization:
|
|
2328
2314
|
:path: "../node_modules/react-native-localization"
|
|
2329
|
-
rn-fetch-blob:
|
|
2330
|
-
:path: "../node_modules/rn-fetch-blob"
|
|
2331
2315
|
RNCAsyncStorage:
|
|
2332
2316
|
:path: "../node_modules/@react-native-async-storage/async-storage"
|
|
2333
2317
|
RNDateTimePicker:
|
|
2334
2318
|
:path: "../node_modules/@react-native-community/datetimepicker"
|
|
2335
2319
|
RNDeviceInfo:
|
|
2336
2320
|
:path: "../node_modules/react-native-device-info"
|
|
2337
|
-
RNDevMenu:
|
|
2338
|
-
:path: "../node_modules/react-native-dev-menu"
|
|
2339
2321
|
RNFlashList:
|
|
2340
2322
|
:path: "../node_modules/@shopify/flash-list"
|
|
2341
2323
|
RNGestureHandler:
|
|
@@ -2397,12 +2379,12 @@ SPEC CHECKSUMS:
|
|
|
2397
2379
|
React-logger: 697873f06b8ba436e3cddf28018ab4741e8071b6
|
|
2398
2380
|
React-Mapbuffer: c174e11bdea12dce07df8669d6c0dc97eb0c7706
|
|
2399
2381
|
React-microtasksnativemodule: 8a80099ad7391f4e13a48b12796d96680f120dc6
|
|
2400
|
-
react-native-camera: 3eae183c1d111103963f3dd913b65d01aef8110f
|
|
2401
2382
|
react-native-cameraroll: c71058d31a5e8088c9d42ff20bfe9cbc6752d36a
|
|
2402
2383
|
react-native-config: 8f7283449bbb048902f4e764affbbf24504454af
|
|
2403
2384
|
react-native-image-editor: e86442c7276195eacb43861741615281e6e3a108
|
|
2404
2385
|
react-native-in-app-review: db8bb167a5f238e7ceca5c242d6b36ce8c4404a4
|
|
2405
2386
|
react-native-netinfo: f0a9899081c185db1de5bb2fdc1c88c202a059ac
|
|
2387
|
+
react-native-orientation-locker: 5819fd23ca89cbac0d736fb4314745f62716d517
|
|
2406
2388
|
react-native-pager-view: 9dbdfdc85d9409c054ee2581c6837c193fbadccc
|
|
2407
2389
|
react-native-safe-area-context: d6406c2adbd41b2e09ab1c386781dc1c81a90919
|
|
2408
2390
|
react-native-sfsymbols: ca90d8bb7d6ad06523bf833f2becae22b97fb056
|
|
@@ -2436,11 +2418,9 @@ SPEC CHECKSUMS:
|
|
|
2436
2418
|
ReactCodegen: daa13d9e48c9bdb1daac4bd694b9dd54e06681df
|
|
2437
2419
|
ReactCommon: a6b87a7591591f7a52d9c0fec3aa05e0620d5dd3
|
|
2438
2420
|
ReactNativeLocalization: fb171138cdc80d5d0d4f20243d2fc82c2b3cc48f
|
|
2439
|
-
rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba
|
|
2440
2421
|
RNCAsyncStorage: fe98f1b459a87b80f12207da80c50b3a3abb6081
|
|
2441
2422
|
RNDateTimePicker: 6008d74df8122d6af6d9d08096bff19a8c6ba647
|
|
2442
2423
|
RNDeviceInfo: 3f2e5fcca3637f75c6d30ba287293c2f97206781
|
|
2443
|
-
RNDevMenu: 72807568fe4188bd4c40ce32675d82434b43c45d
|
|
2444
2424
|
RNFlashList: 2af1645548006fe5e4586c8c3d7e84f060a5478f
|
|
2445
2425
|
RNGestureHandler: 0e5ae8d72ef4afb855e98dcdbe60f27d938abe13
|
|
2446
2426
|
RNImageCropPicker: 8e39c01f205e00d739c31e682f068aac315587bf
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
12
12
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
13
13
|
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
14
|
-
|
|
14
|
+
13CF03373441A38FC2E729A8 /* libPods-reactnativemagic.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB791B0A57A611BA4A66B1AA /* libPods-reactnativemagic.a */; };
|
|
15
|
+
280C6F8FD6A3698B3128908D /* libPods-reactnativemagic-reactnativemagicTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1EAA8A6B316A064CB8CF9DC1 /* libPods-reactnativemagic-reactnativemagicTests.a */; };
|
|
15
16
|
52BF1DA92D160E8100046137 /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
16
17
|
52BF1DAA2D160E8100046137 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
17
18
|
52BF1DAE2D160E8100046137 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
@@ -19,7 +20,6 @@
|
|
|
19
20
|
52BF1DB02D160E8100046137 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
|
|
20
21
|
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
21
22
|
910638E3E666DD629C55D964 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
|
|
22
|
-
92CDC4BCD7C656685F12FD05 /* libPods-reactnativemagic.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 64FD7998A0A13F1331F49A70 /* libPods-reactnativemagic.a */; };
|
|
23
23
|
/* End PBXBuildFile section */
|
|
24
24
|
|
|
25
25
|
/* Begin PBXContainerItemProxy section */
|
|
@@ -36,7 +36,6 @@
|
|
|
36
36
|
00E356EE1AD99517003FC87E /* reactnativemagicTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = reactnativemagicTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
37
37
|
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
38
38
|
00E356F21AD99517003FC87E /* reactnativemagicTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = reactnativemagicTests.m; sourceTree = "<group>"; };
|
|
39
|
-
0459385EB34562674A60ACD4 /* Pods-reactnativemagic-reactnativemagicTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic-reactnativemagicTests.release.xcconfig"; path = "Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
40
39
|
13B07F961A680F5B00A75B9A /* reactnativemagic.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactnativemagic.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
41
40
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reactnativemagic/AppDelegate.h; sourceTree = "<group>"; };
|
|
42
41
|
13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = reactnativemagic/AppDelegate.mm; sourceTree = "<group>"; };
|
|
@@ -44,14 +43,15 @@
|
|
|
44
43
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactnativemagic/Info.plist; sourceTree = "<group>"; };
|
|
45
44
|
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reactnativemagic/main.m; sourceTree = "<group>"; };
|
|
46
45
|
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = reactnativemagic/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
47
|
-
|
|
48
|
-
371159198BD2963DD892B8F2 /* Pods-reactnativemagic.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic.debug.xcconfig"; path = "Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic.debug.xcconfig"; sourceTree = "<group>"; };
|
|
46
|
+
1EAA8A6B316A064CB8CF9DC1 /* libPods-reactnativemagic-reactnativemagicTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reactnativemagic-reactnativemagicTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
49
47
|
52BF1DB72D160E8100046137 /* reactnativemagic-Development.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "reactnativemagic-Development.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
50
48
|
52BF1DB82D160E8100046137 /* reactnativemagic copy-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "reactnativemagic copy-Info.plist"; path = "/Users/fady/Dev/template/ReactNativeMagic/template/ios/reactnativemagic copy-Info.plist"; sourceTree = "<absolute>"; };
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
6517CEEAF6CB08CE0B1B9626 /* Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig"; path = "Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
50
|
+
73212B210B7C2710F926E931 /* Pods-reactnativemagic.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic.debug.xcconfig"; path = "Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic.debug.xcconfig"; sourceTree = "<group>"; };
|
|
51
|
+
75272E3E72710EE7CC39834F /* Pods-reactnativemagic-reactnativemagicTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic-reactnativemagicTests.release.xcconfig"; path = "Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
53
52
|
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = reactnativemagic/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
54
|
-
|
|
53
|
+
91F3E60D945E8CE7540D951D /* Pods-reactnativemagic.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic.release.xcconfig"; path = "Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic.release.xcconfig"; sourceTree = "<group>"; };
|
|
54
|
+
DB791B0A57A611BA4A66B1AA /* libPods-reactnativemagic.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reactnativemagic.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
55
55
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
56
56
|
/* End PBXFileReference section */
|
|
57
57
|
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
isa = PBXFrameworksBuildPhase;
|
|
61
61
|
buildActionMask = 2147483647;
|
|
62
62
|
files = (
|
|
63
|
-
|
|
63
|
+
280C6F8FD6A3698B3128908D /* libPods-reactnativemagic-reactnativemagicTests.a in Frameworks */,
|
|
64
64
|
);
|
|
65
65
|
runOnlyForDeploymentPostprocessing = 0;
|
|
66
66
|
};
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
isa = PBXFrameworksBuildPhase;
|
|
69
69
|
buildActionMask = 2147483647;
|
|
70
70
|
files = (
|
|
71
|
-
|
|
71
|
+
13CF03373441A38FC2E729A8 /* libPods-reactnativemagic.a in Frameworks */,
|
|
72
72
|
);
|
|
73
73
|
runOnlyForDeploymentPostprocessing = 0;
|
|
74
74
|
};
|
|
@@ -117,8 +117,8 @@
|
|
|
117
117
|
isa = PBXGroup;
|
|
118
118
|
children = (
|
|
119
119
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
DB791B0A57A611BA4A66B1AA /* libPods-reactnativemagic.a */,
|
|
121
|
+
1EAA8A6B316A064CB8CF9DC1 /* libPods-reactnativemagic-reactnativemagicTests.a */,
|
|
122
122
|
);
|
|
123
123
|
name = Frameworks;
|
|
124
124
|
sourceTree = "<group>";
|
|
@@ -159,10 +159,10 @@
|
|
|
159
159
|
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
160
160
|
isa = PBXGroup;
|
|
161
161
|
children = (
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
162
|
+
73212B210B7C2710F926E931 /* Pods-reactnativemagic.debug.xcconfig */,
|
|
163
|
+
91F3E60D945E8CE7540D951D /* Pods-reactnativemagic.release.xcconfig */,
|
|
164
|
+
6517CEEAF6CB08CE0B1B9626 /* Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig */,
|
|
165
|
+
75272E3E72710EE7CC39834F /* Pods-reactnativemagic-reactnativemagicTests.release.xcconfig */,
|
|
166
166
|
);
|
|
167
167
|
path = Pods;
|
|
168
168
|
sourceTree = "<group>";
|
|
@@ -174,12 +174,12 @@
|
|
|
174
174
|
isa = PBXNativeTarget;
|
|
175
175
|
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactnativemagicTests" */;
|
|
176
176
|
buildPhases = (
|
|
177
|
-
|
|
177
|
+
2971306E56E23C3B00A7DD42 /* [CP] Check Pods Manifest.lock */,
|
|
178
178
|
00E356EA1AD99517003FC87E /* Sources */,
|
|
179
179
|
00E356EB1AD99517003FC87E /* Frameworks */,
|
|
180
180
|
00E356EC1AD99517003FC87E /* Resources */,
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
789279A5A09A07ED561FD196 /* [CP] Embed Pods Frameworks */,
|
|
182
|
+
4ED040DCF71E37BF11F40959 /* [CP] Copy Pods Resources */,
|
|
183
183
|
);
|
|
184
184
|
buildRules = (
|
|
185
185
|
);
|
|
@@ -195,13 +195,13 @@
|
|
|
195
195
|
isa = PBXNativeTarget;
|
|
196
196
|
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativemagic" */;
|
|
197
197
|
buildPhases = (
|
|
198
|
-
|
|
198
|
+
B6754112200E825603495E4E /* [CP] Check Pods Manifest.lock */,
|
|
199
199
|
13B07F871A680F5B00A75B9A /* Sources */,
|
|
200
200
|
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
201
201
|
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
202
202
|
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
6166036CE1CCB60191B5D4DF /* [CP] Embed Pods Frameworks */,
|
|
204
|
+
A9C343A59EC892415C4BFEE4 /* [CP] Copy Pods Resources */,
|
|
205
205
|
);
|
|
206
206
|
buildRules = (
|
|
207
207
|
);
|
|
@@ -314,24 +314,7 @@
|
|
|
314
314
|
shellPath = /bin/sh;
|
|
315
315
|
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
|
316
316
|
};
|
|
317
|
-
|
|
318
|
-
isa = PBXShellScriptBuildPhase;
|
|
319
|
-
buildActionMask = 2147483647;
|
|
320
|
-
files = (
|
|
321
|
-
);
|
|
322
|
-
inputFileListPaths = (
|
|
323
|
-
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
324
|
-
);
|
|
325
|
-
name = "[CP] Copy Pods Resources";
|
|
326
|
-
outputFileListPaths = (
|
|
327
|
-
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
328
|
-
);
|
|
329
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
330
|
-
shellPath = /bin/sh;
|
|
331
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources.sh\"\n";
|
|
332
|
-
showEnvVarsInLog = 0;
|
|
333
|
-
};
|
|
334
|
-
2923B72611D6C6B0D9E89C5B /* [CP] Check Pods Manifest.lock */ = {
|
|
317
|
+
2971306E56E23C3B00A7DD42 /* [CP] Check Pods Manifest.lock */ = {
|
|
335
318
|
isa = PBXShellScriptBuildPhase;
|
|
336
319
|
buildActionMask = 2147483647;
|
|
337
320
|
files = (
|
|
@@ -353,21 +336,21 @@
|
|
|
353
336
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
354
337
|
showEnvVarsInLog = 0;
|
|
355
338
|
};
|
|
356
|
-
|
|
339
|
+
4ED040DCF71E37BF11F40959 /* [CP] Copy Pods Resources */ = {
|
|
357
340
|
isa = PBXShellScriptBuildPhase;
|
|
358
341
|
buildActionMask = 2147483647;
|
|
359
342
|
files = (
|
|
360
343
|
);
|
|
361
344
|
inputFileListPaths = (
|
|
362
|
-
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-
|
|
345
|
+
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
363
346
|
);
|
|
364
|
-
name = "[CP]
|
|
347
|
+
name = "[CP] Copy Pods Resources";
|
|
365
348
|
outputFileListPaths = (
|
|
366
|
-
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-
|
|
349
|
+
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
367
350
|
);
|
|
368
351
|
runOnlyForDeploymentPostprocessing = 0;
|
|
369
352
|
shellPath = /bin/sh;
|
|
370
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-
|
|
353
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources.sh\"\n";
|
|
371
354
|
showEnvVarsInLog = 0;
|
|
372
355
|
};
|
|
373
356
|
52BF1DB12D160E8100046137 /* Bundle React Native code and images */ = {
|
|
@@ -386,29 +369,41 @@
|
|
|
386
369
|
shellPath = /bin/sh;
|
|
387
370
|
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
|
388
371
|
};
|
|
389
|
-
|
|
372
|
+
6166036CE1CCB60191B5D4DF /* [CP] Embed Pods Frameworks */ = {
|
|
390
373
|
isa = PBXShellScriptBuildPhase;
|
|
391
374
|
buildActionMask = 2147483647;
|
|
392
375
|
files = (
|
|
393
376
|
);
|
|
394
377
|
inputFileListPaths = (
|
|
378
|
+
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
395
379
|
);
|
|
396
|
-
|
|
397
|
-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
398
|
-
"${PODS_ROOT}/Manifest.lock",
|
|
399
|
-
);
|
|
400
|
-
name = "[CP] Check Pods Manifest.lock";
|
|
380
|
+
name = "[CP] Embed Pods Frameworks";
|
|
401
381
|
outputFileListPaths = (
|
|
382
|
+
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
402
383
|
);
|
|
403
|
-
|
|
404
|
-
|
|
384
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
385
|
+
shellPath = /bin/sh;
|
|
386
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-frameworks.sh\"\n";
|
|
387
|
+
showEnvVarsInLog = 0;
|
|
388
|
+
};
|
|
389
|
+
789279A5A09A07ED561FD196 /* [CP] Embed Pods Frameworks */ = {
|
|
390
|
+
isa = PBXShellScriptBuildPhase;
|
|
391
|
+
buildActionMask = 2147483647;
|
|
392
|
+
files = (
|
|
393
|
+
);
|
|
394
|
+
inputFileListPaths = (
|
|
395
|
+
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
396
|
+
);
|
|
397
|
+
name = "[CP] Embed Pods Frameworks";
|
|
398
|
+
outputFileListPaths = (
|
|
399
|
+
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
405
400
|
);
|
|
406
401
|
runOnlyForDeploymentPostprocessing = 0;
|
|
407
402
|
shellPath = /bin/sh;
|
|
408
|
-
shellScript = "
|
|
403
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-frameworks.sh\"\n";
|
|
409
404
|
showEnvVarsInLog = 0;
|
|
410
405
|
};
|
|
411
|
-
|
|
406
|
+
A9C343A59EC892415C4BFEE4 /* [CP] Copy Pods Resources */ = {
|
|
412
407
|
isa = PBXShellScriptBuildPhase;
|
|
413
408
|
buildActionMask = 2147483647;
|
|
414
409
|
files = (
|
|
@@ -425,21 +420,26 @@
|
|
|
425
420
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-resources.sh\"\n";
|
|
426
421
|
showEnvVarsInLog = 0;
|
|
427
422
|
};
|
|
428
|
-
|
|
423
|
+
B6754112200E825603495E4E /* [CP] Check Pods Manifest.lock */ = {
|
|
429
424
|
isa = PBXShellScriptBuildPhase;
|
|
430
425
|
buildActionMask = 2147483647;
|
|
431
426
|
files = (
|
|
432
427
|
);
|
|
433
428
|
inputFileListPaths = (
|
|
434
|
-
"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
435
429
|
);
|
|
436
|
-
|
|
430
|
+
inputPaths = (
|
|
431
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
432
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
433
|
+
);
|
|
434
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
437
435
|
outputFileListPaths = (
|
|
438
|
-
|
|
436
|
+
);
|
|
437
|
+
outputPaths = (
|
|
438
|
+
"$(DERIVED_FILE_DIR)/Pods-reactnativemagic-checkManifestLockResult.txt",
|
|
439
439
|
);
|
|
440
440
|
runOnlyForDeploymentPostprocessing = 0;
|
|
441
441
|
shellPath = /bin/sh;
|
|
442
|
-
shellScript = "\"${PODS_ROOT}/
|
|
442
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
443
443
|
showEnvVarsInLog = 0;
|
|
444
444
|
};
|
|
445
445
|
/* End PBXShellScriptBuildPhase section */
|
|
@@ -484,7 +484,7 @@
|
|
|
484
484
|
/* Begin XCBuildConfiguration section */
|
|
485
485
|
00E356F61AD99517003FC87E /* Debug */ = {
|
|
486
486
|
isa = XCBuildConfiguration;
|
|
487
|
-
baseConfigurationReference =
|
|
487
|
+
baseConfigurationReference = 6517CEEAF6CB08CE0B1B9626 /* Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig */;
|
|
488
488
|
buildSettings = {
|
|
489
489
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
490
490
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
@@ -511,7 +511,7 @@
|
|
|
511
511
|
};
|
|
512
512
|
00E356F71AD99517003FC87E /* Release */ = {
|
|
513
513
|
isa = XCBuildConfiguration;
|
|
514
|
-
baseConfigurationReference =
|
|
514
|
+
baseConfigurationReference = 75272E3E72710EE7CC39834F /* Pods-reactnativemagic-reactnativemagicTests.release.xcconfig */;
|
|
515
515
|
buildSettings = {
|
|
516
516
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
517
517
|
COPY_PHASE_STRIP = NO;
|
|
@@ -535,7 +535,7 @@
|
|
|
535
535
|
};
|
|
536
536
|
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
537
537
|
isa = XCBuildConfiguration;
|
|
538
|
-
baseConfigurationReference =
|
|
538
|
+
baseConfigurationReference = 73212B210B7C2710F926E931 /* Pods-reactnativemagic.debug.xcconfig */;
|
|
539
539
|
buildSettings = {
|
|
540
540
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
541
541
|
CLANG_ENABLE_MODULES = YES;
|
|
@@ -566,7 +566,7 @@
|
|
|
566
566
|
};
|
|
567
567
|
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
568
568
|
isa = XCBuildConfiguration;
|
|
569
|
-
baseConfigurationReference =
|
|
569
|
+
baseConfigurationReference = 91F3E60D945E8CE7540D951D /* Pods-reactnativemagic.release.xcconfig */;
|
|
570
570
|
buildSettings = {
|
|
571
571
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
572
572
|
CLANG_ENABLE_MODULES = YES;
|
|
@@ -714,7 +714,10 @@
|
|
|
714
714
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
715
715
|
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
716
716
|
);
|
|
717
|
-
OTHER_LDFLAGS =
|
|
717
|
+
OTHER_LDFLAGS = (
|
|
718
|
+
"$(inherited)",
|
|
719
|
+
" ",
|
|
720
|
+
);
|
|
718
721
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
719
722
|
SDKROOT = iphoneos;
|
|
720
723
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
@@ -783,7 +786,10 @@
|
|
|
783
786
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
784
787
|
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
785
788
|
);
|
|
786
|
-
OTHER_LDFLAGS =
|
|
789
|
+
OTHER_LDFLAGS = (
|
|
790
|
+
"$(inherited)",
|
|
791
|
+
" ",
|
|
792
|
+
);
|
|
787
793
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
788
794
|
SDKROOT = iphoneos;
|
|
789
795
|
USE_HERMES = true;
|