@exodus/react-native-webview 11.26.1-exodus.6 → 11.26.1-exodus.7
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/.all-contributorsrc +185 -0
- package/.circleci/config.yml +66 -0
- package/.eslintignore +2 -0
- package/.eslintrc.js +94 -0
- package/.flowconfig +88 -0
- package/.flowconfig.android +88 -0
- package/.gitattributes +12 -0
- package/.github/CODEOWNERS +1 -0
- package/.github/ISSUE_TEMPLATE/bug-report.md +42 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +30 -0
- package/.github/workflows/android-ci.yml +35 -0
- package/.github/workflows/detox.yml +20 -0
- package/.github/workflows/ios-ci.yml +31 -0
- package/.github/workflows/scripts/install-vs-features.ps1 +108 -0
- package/.github/workflows/stale.yml +17 -0
- package/.gitignore +62 -0
- package/.prettierrc.js +10 -0
- package/.releaserc +15 -0
- package/.vscode/settings.json +9 -0
- package/android/.gradle/7.4.2/checksums/checksums.lock +0 -0
- package/android/.gradle/7.4.2/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/7.4.2/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/7.4.2/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/7.4.2/fileChanges/last-build.bin +0 -0
- package/android/.gradle/7.4.2/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/7.4.2/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/babel.config.js +11 -0
- package/bin/setup +26 -0
- package/docs/Contributing.md +102 -0
- package/docs/Custom-Android.md +222 -0
- package/docs/Custom-iOS.md +236 -0
- package/docs/Debugging.md +101 -0
- package/docs/Getting-Started.md +142 -0
- package/docs/Guide.md +613 -0
- package/docs/Reference.md +1629 -0
- package/example/.gitignore +14 -0
- package/example/.watchmanconfig +1 -0
- package/example/App.tsx +262 -0
- package/example/android/.gradle/7.3.3/checksums/checksums.lock +0 -0
- package/example/android/.gradle/7.3.3/checksums/md5-checksums.bin +0 -0
- package/example/android/.gradle/7.3.3/checksums/sha1-checksums.bin +0 -0
- package/example/android/.gradle/7.3.3/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/example/android/.gradle/7.3.3/dependencies-accessors/gc.properties +0 -0
- package/example/android/.gradle/7.3.3/fileChanges/last-build.bin +0 -0
- package/example/android/.gradle/7.3.3/fileHashes/fileHashes.lock +0 -0
- package/example/android/.gradle/7.3.3/gc.properties +0 -0
- package/example/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/example/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/example/android/.gradle/vcs-1/gc.properties +0 -0
- package/example/android/build.gradle +15 -0
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/example/android/gradle.properties +34 -0
- package/example/android/gradlew +234 -0
- package/example/android/gradlew.bat +89 -0
- package/example/android/settings.gradle +12 -0
- package/example/app.json +20 -0
- package/example/assets/test.html +9 -0
- package/example/babel.config.js +3 -0
- package/example/examples/Alerts.tsx +72 -0
- package/example/examples/ApplePay.tsx +23 -0
- package/example/examples/Background.tsx +54 -0
- package/example/examples/Downloads.tsx +57 -0
- package/example/examples/Injection.tsx +161 -0
- package/example/examples/LocalPageLoad.tsx +16 -0
- package/example/examples/Messaging.tsx +63 -0
- package/example/examples/NativeWebpage.tsx +22 -0
- package/example/examples/Scrolling.tsx +68 -0
- package/example/examples/Uploads.tsx +69 -0
- package/example/index.js +9 -0
- package/example/ios/Podfile +8 -0
- package/example/ios/Podfile.lock +445 -0
- package/ios/Podfile +10 -0
- package/ios/Podfile.lock +3 -0
- package/ios/Pods/Manifest.lock +3 -0
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +397 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielezenwankwo.xcuserdatad/xcschemes/Pods-RNCWebView.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/gabrielezenwankwo.xcuserdatad/xcschemes/xcschememanagement.plist +16 -0
- package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-acknowledgements.markdown +3 -0
- package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-acknowledgements.plist +29 -0
- package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView.debug.xcconfig +8 -0
- package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-RNCWebView/Pods-RNCWebView.release.xcconfig +8 -0
- package/ios/RNCWebView.xcworkspace/contents.xcworkspacedata +32 -0
- package/jest-setups/jest.setup.js +8 -0
- package/jest.config.js +184 -0
- package/lib/UpdateOS.d.ts +6 -0
- package/lib/UpdateOS.d.ts.map +1 -0
- package/lib/UpdateOS.js +49 -0
- package/lib/WebView.android.d.ts.map +1 -0
- package/lib/WebView.android.js +4 -1
- package/lib/WebView.d.ts.map +1 -0
- package/lib/WebView.ios.d.ts.map +1 -0
- package/lib/WebView.ios.js +5 -2
- package/lib/WebView.styles.d.ts.map +1 -0
- package/lib/WebViewNativeComponent.android.d.ts.map +1 -0
- package/lib/WebViewNativeComponent.ios.d.ts.map +1 -0
- package/lib/WebViewShared.d.ts.map +1 -0
- package/lib/WebViewTypes.d.ts +5 -1
- package/lib/WebViewTypes.d.ts.map +1 -0
- package/lib/index.d.ts.map +1 -0
- package/metro.config.js +57 -0
- package/package.json +1 -1
- package/src/WebView.android.tsx +246 -0
- package/src/WebView.ios.tsx +221 -0
- package/src/WebView.styles.ts +44 -0
- package/src/WebView.tsx +18 -0
- package/src/WebViewNativeComponent.android.ts +8 -0
- package/src/WebViewNativeComponent.ios.ts +8 -0
- package/src/WebViewShared.tsx +257 -0
- package/src/WebViewTypes.ts +914 -0
- package/src/__tests__/WebViewShared-test.js +208 -0
- package/src/__tests__/__snapshots__/WebViewShared-test.js.snap +8 -0
- package/src/index.ts +4 -0
- package/tsconfig.json +24 -0
- package/yarn.lock +13895 -0
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- boost (1.76.0)
|
|
3
|
+
- DoubleConversion (1.1.6)
|
|
4
|
+
- FBLazyVector (0.68.5)
|
|
5
|
+
- FBReactNativeSpec (0.68.5):
|
|
6
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
7
|
+
- RCTRequired (= 0.68.5)
|
|
8
|
+
- RCTTypeSafety (= 0.68.5)
|
|
9
|
+
- React-Core (= 0.68.5)
|
|
10
|
+
- React-jsi (= 0.68.5)
|
|
11
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
12
|
+
- fmt (6.2.1)
|
|
13
|
+
- glog (0.3.5)
|
|
14
|
+
- RCT-Folly (2021.06.28.00-v2):
|
|
15
|
+
- boost
|
|
16
|
+
- DoubleConversion
|
|
17
|
+
- fmt (~> 6.2.1)
|
|
18
|
+
- glog
|
|
19
|
+
- RCT-Folly/Default (= 2021.06.28.00-v2)
|
|
20
|
+
- RCT-Folly/Default (2021.06.28.00-v2):
|
|
21
|
+
- boost
|
|
22
|
+
- DoubleConversion
|
|
23
|
+
- fmt (~> 6.2.1)
|
|
24
|
+
- glog
|
|
25
|
+
- RCTRequired (0.68.5)
|
|
26
|
+
- RCTTypeSafety (0.68.5):
|
|
27
|
+
- FBLazyVector (= 0.68.5)
|
|
28
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
29
|
+
- RCTRequired (= 0.68.5)
|
|
30
|
+
- React-Core (= 0.68.5)
|
|
31
|
+
- React (0.68.5):
|
|
32
|
+
- React-Core (= 0.68.5)
|
|
33
|
+
- React-Core/DevSupport (= 0.68.5)
|
|
34
|
+
- React-Core/RCTWebSocket (= 0.68.5)
|
|
35
|
+
- React-RCTActionSheet (= 0.68.5)
|
|
36
|
+
- React-RCTAnimation (= 0.68.5)
|
|
37
|
+
- React-RCTBlob (= 0.68.5)
|
|
38
|
+
- React-RCTImage (= 0.68.5)
|
|
39
|
+
- React-RCTLinking (= 0.68.5)
|
|
40
|
+
- React-RCTNetwork (= 0.68.5)
|
|
41
|
+
- React-RCTSettings (= 0.68.5)
|
|
42
|
+
- React-RCTText (= 0.68.5)
|
|
43
|
+
- React-RCTVibration (= 0.68.5)
|
|
44
|
+
- React-callinvoker (0.68.5)
|
|
45
|
+
- React-Codegen (0.68.5):
|
|
46
|
+
- FBReactNativeSpec (= 0.68.5)
|
|
47
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
48
|
+
- RCTRequired (= 0.68.5)
|
|
49
|
+
- RCTTypeSafety (= 0.68.5)
|
|
50
|
+
- React-Core (= 0.68.5)
|
|
51
|
+
- React-jsi (= 0.68.5)
|
|
52
|
+
- React-jsiexecutor (= 0.68.5)
|
|
53
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
54
|
+
- React-Core (0.68.5):
|
|
55
|
+
- glog
|
|
56
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
57
|
+
- React-Core/Default (= 0.68.5)
|
|
58
|
+
- React-cxxreact (= 0.68.5)
|
|
59
|
+
- React-jsi (= 0.68.5)
|
|
60
|
+
- React-jsiexecutor (= 0.68.5)
|
|
61
|
+
- React-perflogger (= 0.68.5)
|
|
62
|
+
- Yoga
|
|
63
|
+
- React-Core/CoreModulesHeaders (0.68.5):
|
|
64
|
+
- glog
|
|
65
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
66
|
+
- React-Core/Default
|
|
67
|
+
- React-cxxreact (= 0.68.5)
|
|
68
|
+
- React-jsi (= 0.68.5)
|
|
69
|
+
- React-jsiexecutor (= 0.68.5)
|
|
70
|
+
- React-perflogger (= 0.68.5)
|
|
71
|
+
- Yoga
|
|
72
|
+
- React-Core/Default (0.68.5):
|
|
73
|
+
- glog
|
|
74
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
75
|
+
- React-cxxreact (= 0.68.5)
|
|
76
|
+
- React-jsi (= 0.68.5)
|
|
77
|
+
- React-jsiexecutor (= 0.68.5)
|
|
78
|
+
- React-perflogger (= 0.68.5)
|
|
79
|
+
- Yoga
|
|
80
|
+
- React-Core/DevSupport (0.68.5):
|
|
81
|
+
- glog
|
|
82
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
83
|
+
- React-Core/Default (= 0.68.5)
|
|
84
|
+
- React-Core/RCTWebSocket (= 0.68.5)
|
|
85
|
+
- React-cxxreact (= 0.68.5)
|
|
86
|
+
- React-jsi (= 0.68.5)
|
|
87
|
+
- React-jsiexecutor (= 0.68.5)
|
|
88
|
+
- React-jsinspector (= 0.68.5)
|
|
89
|
+
- React-perflogger (= 0.68.5)
|
|
90
|
+
- Yoga
|
|
91
|
+
- React-Core/RCTActionSheetHeaders (0.68.5):
|
|
92
|
+
- glog
|
|
93
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
94
|
+
- React-Core/Default
|
|
95
|
+
- React-cxxreact (= 0.68.5)
|
|
96
|
+
- React-jsi (= 0.68.5)
|
|
97
|
+
- React-jsiexecutor (= 0.68.5)
|
|
98
|
+
- React-perflogger (= 0.68.5)
|
|
99
|
+
- Yoga
|
|
100
|
+
- React-Core/RCTAnimationHeaders (0.68.5):
|
|
101
|
+
- glog
|
|
102
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
103
|
+
- React-Core/Default
|
|
104
|
+
- React-cxxreact (= 0.68.5)
|
|
105
|
+
- React-jsi (= 0.68.5)
|
|
106
|
+
- React-jsiexecutor (= 0.68.5)
|
|
107
|
+
- React-perflogger (= 0.68.5)
|
|
108
|
+
- Yoga
|
|
109
|
+
- React-Core/RCTBlobHeaders (0.68.5):
|
|
110
|
+
- glog
|
|
111
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
112
|
+
- React-Core/Default
|
|
113
|
+
- React-cxxreact (= 0.68.5)
|
|
114
|
+
- React-jsi (= 0.68.5)
|
|
115
|
+
- React-jsiexecutor (= 0.68.5)
|
|
116
|
+
- React-perflogger (= 0.68.5)
|
|
117
|
+
- Yoga
|
|
118
|
+
- React-Core/RCTImageHeaders (0.68.5):
|
|
119
|
+
- glog
|
|
120
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
121
|
+
- React-Core/Default
|
|
122
|
+
- React-cxxreact (= 0.68.5)
|
|
123
|
+
- React-jsi (= 0.68.5)
|
|
124
|
+
- React-jsiexecutor (= 0.68.5)
|
|
125
|
+
- React-perflogger (= 0.68.5)
|
|
126
|
+
- Yoga
|
|
127
|
+
- React-Core/RCTLinkingHeaders (0.68.5):
|
|
128
|
+
- glog
|
|
129
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
130
|
+
- React-Core/Default
|
|
131
|
+
- React-cxxreact (= 0.68.5)
|
|
132
|
+
- React-jsi (= 0.68.5)
|
|
133
|
+
- React-jsiexecutor (= 0.68.5)
|
|
134
|
+
- React-perflogger (= 0.68.5)
|
|
135
|
+
- Yoga
|
|
136
|
+
- React-Core/RCTNetworkHeaders (0.68.5):
|
|
137
|
+
- glog
|
|
138
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
139
|
+
- React-Core/Default
|
|
140
|
+
- React-cxxreact (= 0.68.5)
|
|
141
|
+
- React-jsi (= 0.68.5)
|
|
142
|
+
- React-jsiexecutor (= 0.68.5)
|
|
143
|
+
- React-perflogger (= 0.68.5)
|
|
144
|
+
- Yoga
|
|
145
|
+
- React-Core/RCTSettingsHeaders (0.68.5):
|
|
146
|
+
- glog
|
|
147
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
148
|
+
- React-Core/Default
|
|
149
|
+
- React-cxxreact (= 0.68.5)
|
|
150
|
+
- React-jsi (= 0.68.5)
|
|
151
|
+
- React-jsiexecutor (= 0.68.5)
|
|
152
|
+
- React-perflogger (= 0.68.5)
|
|
153
|
+
- Yoga
|
|
154
|
+
- React-Core/RCTTextHeaders (0.68.5):
|
|
155
|
+
- glog
|
|
156
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
157
|
+
- React-Core/Default
|
|
158
|
+
- React-cxxreact (= 0.68.5)
|
|
159
|
+
- React-jsi (= 0.68.5)
|
|
160
|
+
- React-jsiexecutor (= 0.68.5)
|
|
161
|
+
- React-perflogger (= 0.68.5)
|
|
162
|
+
- Yoga
|
|
163
|
+
- React-Core/RCTVibrationHeaders (0.68.5):
|
|
164
|
+
- glog
|
|
165
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
166
|
+
- React-Core/Default
|
|
167
|
+
- React-cxxreact (= 0.68.5)
|
|
168
|
+
- React-jsi (= 0.68.5)
|
|
169
|
+
- React-jsiexecutor (= 0.68.5)
|
|
170
|
+
- React-perflogger (= 0.68.5)
|
|
171
|
+
- Yoga
|
|
172
|
+
- React-Core/RCTWebSocket (0.68.5):
|
|
173
|
+
- glog
|
|
174
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
175
|
+
- React-Core/Default (= 0.68.5)
|
|
176
|
+
- React-cxxreact (= 0.68.5)
|
|
177
|
+
- React-jsi (= 0.68.5)
|
|
178
|
+
- React-jsiexecutor (= 0.68.5)
|
|
179
|
+
- React-perflogger (= 0.68.5)
|
|
180
|
+
- Yoga
|
|
181
|
+
- React-CoreModules (0.68.5):
|
|
182
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
183
|
+
- RCTTypeSafety (= 0.68.5)
|
|
184
|
+
- React-Codegen (= 0.68.5)
|
|
185
|
+
- React-Core/CoreModulesHeaders (= 0.68.5)
|
|
186
|
+
- React-jsi (= 0.68.5)
|
|
187
|
+
- React-RCTImage (= 0.68.5)
|
|
188
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
189
|
+
- React-cxxreact (0.68.5):
|
|
190
|
+
- boost (= 1.76.0)
|
|
191
|
+
- DoubleConversion
|
|
192
|
+
- glog
|
|
193
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
194
|
+
- React-callinvoker (= 0.68.5)
|
|
195
|
+
- React-jsi (= 0.68.5)
|
|
196
|
+
- React-jsinspector (= 0.68.5)
|
|
197
|
+
- React-logger (= 0.68.5)
|
|
198
|
+
- React-perflogger (= 0.68.5)
|
|
199
|
+
- React-runtimeexecutor (= 0.68.5)
|
|
200
|
+
- React-jsi (0.68.5):
|
|
201
|
+
- boost (= 1.76.0)
|
|
202
|
+
- DoubleConversion
|
|
203
|
+
- glog
|
|
204
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
205
|
+
- React-jsi/Default (= 0.68.5)
|
|
206
|
+
- React-jsi/Default (0.68.5):
|
|
207
|
+
- boost (= 1.76.0)
|
|
208
|
+
- DoubleConversion
|
|
209
|
+
- glog
|
|
210
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
211
|
+
- React-jsiexecutor (0.68.5):
|
|
212
|
+
- DoubleConversion
|
|
213
|
+
- glog
|
|
214
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
215
|
+
- React-cxxreact (= 0.68.5)
|
|
216
|
+
- React-jsi (= 0.68.5)
|
|
217
|
+
- React-perflogger (= 0.68.5)
|
|
218
|
+
- React-jsinspector (0.68.5)
|
|
219
|
+
- React-logger (0.68.5):
|
|
220
|
+
- glog
|
|
221
|
+
- react-native-webview (11.26.0):
|
|
222
|
+
- React-Core
|
|
223
|
+
- React-perflogger (0.68.5)
|
|
224
|
+
- React-RCTActionSheet (0.68.5):
|
|
225
|
+
- React-Core/RCTActionSheetHeaders (= 0.68.5)
|
|
226
|
+
- React-RCTAnimation (0.68.5):
|
|
227
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
228
|
+
- RCTTypeSafety (= 0.68.5)
|
|
229
|
+
- React-Codegen (= 0.68.5)
|
|
230
|
+
- React-Core/RCTAnimationHeaders (= 0.68.5)
|
|
231
|
+
- React-jsi (= 0.68.5)
|
|
232
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
233
|
+
- React-RCTBlob (0.68.5):
|
|
234
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
235
|
+
- React-Codegen (= 0.68.5)
|
|
236
|
+
- React-Core/RCTBlobHeaders (= 0.68.5)
|
|
237
|
+
- React-Core/RCTWebSocket (= 0.68.5)
|
|
238
|
+
- React-jsi (= 0.68.5)
|
|
239
|
+
- React-RCTNetwork (= 0.68.5)
|
|
240
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
241
|
+
- React-RCTImage (0.68.5):
|
|
242
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
243
|
+
- RCTTypeSafety (= 0.68.5)
|
|
244
|
+
- React-Codegen (= 0.68.5)
|
|
245
|
+
- React-Core/RCTImageHeaders (= 0.68.5)
|
|
246
|
+
- React-jsi (= 0.68.5)
|
|
247
|
+
- React-RCTNetwork (= 0.68.5)
|
|
248
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
249
|
+
- React-RCTLinking (0.68.5):
|
|
250
|
+
- React-Codegen (= 0.68.5)
|
|
251
|
+
- React-Core/RCTLinkingHeaders (= 0.68.5)
|
|
252
|
+
- React-jsi (= 0.68.5)
|
|
253
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
254
|
+
- React-RCTNetwork (0.68.5):
|
|
255
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
256
|
+
- RCTTypeSafety (= 0.68.5)
|
|
257
|
+
- React-Codegen (= 0.68.5)
|
|
258
|
+
- React-Core/RCTNetworkHeaders (= 0.68.5)
|
|
259
|
+
- React-jsi (= 0.68.5)
|
|
260
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
261
|
+
- React-RCTSettings (0.68.5):
|
|
262
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
263
|
+
- RCTTypeSafety (= 0.68.5)
|
|
264
|
+
- React-Codegen (= 0.68.5)
|
|
265
|
+
- React-Core/RCTSettingsHeaders (= 0.68.5)
|
|
266
|
+
- React-jsi (= 0.68.5)
|
|
267
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
268
|
+
- React-RCTText (0.68.5):
|
|
269
|
+
- React-Core/RCTTextHeaders (= 0.68.5)
|
|
270
|
+
- React-RCTVibration (0.68.5):
|
|
271
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
272
|
+
- React-Codegen (= 0.68.5)
|
|
273
|
+
- React-Core/RCTVibrationHeaders (= 0.68.5)
|
|
274
|
+
- React-jsi (= 0.68.5)
|
|
275
|
+
- ReactCommon/turbomodule/core (= 0.68.5)
|
|
276
|
+
- React-runtimeexecutor (0.68.5):
|
|
277
|
+
- React-jsi (= 0.68.5)
|
|
278
|
+
- ReactCommon/turbomodule/core (0.68.5):
|
|
279
|
+
- DoubleConversion
|
|
280
|
+
- glog
|
|
281
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
282
|
+
- React-callinvoker (= 0.68.5)
|
|
283
|
+
- React-Core (= 0.68.5)
|
|
284
|
+
- React-cxxreact (= 0.68.5)
|
|
285
|
+
- React-jsi (= 0.68.5)
|
|
286
|
+
- React-logger (= 0.68.5)
|
|
287
|
+
- React-perflogger (= 0.68.5)
|
|
288
|
+
- ReactTestApp-DevSupport (2.3.2):
|
|
289
|
+
- React-Core
|
|
290
|
+
- React-jsi
|
|
291
|
+
- ReactTestApp-Resources (1.0.0-dev)
|
|
292
|
+
- Yoga (1.14.0)
|
|
293
|
+
|
|
294
|
+
DEPENDENCIES:
|
|
295
|
+
- boost (from `../../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
296
|
+
- DoubleConversion (from `../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
297
|
+
- FBLazyVector (from `../../node_modules/react-native/Libraries/FBLazyVector`)
|
|
298
|
+
- FBReactNativeSpec (from `../../node_modules/react-native/React/FBReactNativeSpec`)
|
|
299
|
+
- glog (from `../../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
300
|
+
- RCT-Folly (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
301
|
+
- RCTRequired (from `../../node_modules/react-native/Libraries/RCTRequired`)
|
|
302
|
+
- RCTTypeSafety (from `../../node_modules/react-native/Libraries/TypeSafety`)
|
|
303
|
+
- React (from `../../node_modules/react-native/`)
|
|
304
|
+
- React-callinvoker (from `../../node_modules/react-native/ReactCommon/callinvoker`)
|
|
305
|
+
- React-Codegen (from `build/generated/ios`)
|
|
306
|
+
- React-Core (from `../../node_modules/react-native/`)
|
|
307
|
+
- React-Core/DevSupport (from `../../node_modules/react-native/`)
|
|
308
|
+
- React-Core/RCTWebSocket (from `../../node_modules/react-native/`)
|
|
309
|
+
- React-CoreModules (from `../../node_modules/react-native/React/CoreModules`)
|
|
310
|
+
- React-cxxreact (from `../../node_modules/react-native/ReactCommon/cxxreact`)
|
|
311
|
+
- React-jsi (from `../../node_modules/react-native/ReactCommon/jsi`)
|
|
312
|
+
- React-jsiexecutor (from `../../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
313
|
+
- React-jsinspector (from `../../node_modules/react-native/ReactCommon/jsinspector`)
|
|
314
|
+
- React-logger (from `../../node_modules/react-native/ReactCommon/logger`)
|
|
315
|
+
- react-native-webview (from `../..`)
|
|
316
|
+
- React-perflogger (from `../../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
317
|
+
- React-RCTActionSheet (from `../../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
318
|
+
- React-RCTAnimation (from `../../node_modules/react-native/Libraries/NativeAnimation`)
|
|
319
|
+
- React-RCTBlob (from `../../node_modules/react-native/Libraries/Blob`)
|
|
320
|
+
- React-RCTImage (from `../../node_modules/react-native/Libraries/Image`)
|
|
321
|
+
- React-RCTLinking (from `../../node_modules/react-native/Libraries/LinkingIOS`)
|
|
322
|
+
- React-RCTNetwork (from `../../node_modules/react-native/Libraries/Network`)
|
|
323
|
+
- React-RCTSettings (from `../../node_modules/react-native/Libraries/Settings`)
|
|
324
|
+
- React-RCTText (from `../../node_modules/react-native/Libraries/Text`)
|
|
325
|
+
- React-RCTVibration (from `../../node_modules/react-native/Libraries/Vibration`)
|
|
326
|
+
- React-runtimeexecutor (from `../../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
327
|
+
- ReactCommon/turbomodule/core (from `../../node_modules/react-native/ReactCommon`)
|
|
328
|
+
- ReactTestApp-DevSupport (from `../../node_modules/react-native-test-app`)
|
|
329
|
+
- ReactTestApp-Resources (from `..`)
|
|
330
|
+
- Yoga (from `../../node_modules/react-native/ReactCommon/yoga`)
|
|
331
|
+
|
|
332
|
+
SPEC REPOS:
|
|
333
|
+
trunk:
|
|
334
|
+
- fmt
|
|
335
|
+
|
|
336
|
+
EXTERNAL SOURCES:
|
|
337
|
+
boost:
|
|
338
|
+
:podspec: "../../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
339
|
+
DoubleConversion:
|
|
340
|
+
:podspec: "../../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
341
|
+
FBLazyVector:
|
|
342
|
+
:path: "../../node_modules/react-native/Libraries/FBLazyVector"
|
|
343
|
+
FBReactNativeSpec:
|
|
344
|
+
:path: "../../node_modules/react-native/React/FBReactNativeSpec"
|
|
345
|
+
glog:
|
|
346
|
+
:podspec: "../../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
347
|
+
RCT-Folly:
|
|
348
|
+
:podspec: "../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
349
|
+
RCTRequired:
|
|
350
|
+
:path: "../../node_modules/react-native/Libraries/RCTRequired"
|
|
351
|
+
RCTTypeSafety:
|
|
352
|
+
:path: "../../node_modules/react-native/Libraries/TypeSafety"
|
|
353
|
+
React:
|
|
354
|
+
:path: "../../node_modules/react-native/"
|
|
355
|
+
React-callinvoker:
|
|
356
|
+
:path: "../../node_modules/react-native/ReactCommon/callinvoker"
|
|
357
|
+
React-Codegen:
|
|
358
|
+
:path: build/generated/ios
|
|
359
|
+
React-Core:
|
|
360
|
+
:path: "../../node_modules/react-native/"
|
|
361
|
+
React-CoreModules:
|
|
362
|
+
:path: "../../node_modules/react-native/React/CoreModules"
|
|
363
|
+
React-cxxreact:
|
|
364
|
+
:path: "../../node_modules/react-native/ReactCommon/cxxreact"
|
|
365
|
+
React-jsi:
|
|
366
|
+
:path: "../../node_modules/react-native/ReactCommon/jsi"
|
|
367
|
+
React-jsiexecutor:
|
|
368
|
+
:path: "../../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
369
|
+
React-jsinspector:
|
|
370
|
+
:path: "../../node_modules/react-native/ReactCommon/jsinspector"
|
|
371
|
+
React-logger:
|
|
372
|
+
:path: "../../node_modules/react-native/ReactCommon/logger"
|
|
373
|
+
react-native-webview:
|
|
374
|
+
:path: "../.."
|
|
375
|
+
React-perflogger:
|
|
376
|
+
:path: "../../node_modules/react-native/ReactCommon/reactperflogger"
|
|
377
|
+
React-RCTActionSheet:
|
|
378
|
+
:path: "../../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
379
|
+
React-RCTAnimation:
|
|
380
|
+
:path: "../../node_modules/react-native/Libraries/NativeAnimation"
|
|
381
|
+
React-RCTBlob:
|
|
382
|
+
:path: "../../node_modules/react-native/Libraries/Blob"
|
|
383
|
+
React-RCTImage:
|
|
384
|
+
:path: "../../node_modules/react-native/Libraries/Image"
|
|
385
|
+
React-RCTLinking:
|
|
386
|
+
:path: "../../node_modules/react-native/Libraries/LinkingIOS"
|
|
387
|
+
React-RCTNetwork:
|
|
388
|
+
:path: "../../node_modules/react-native/Libraries/Network"
|
|
389
|
+
React-RCTSettings:
|
|
390
|
+
:path: "../../node_modules/react-native/Libraries/Settings"
|
|
391
|
+
React-RCTText:
|
|
392
|
+
:path: "../../node_modules/react-native/Libraries/Text"
|
|
393
|
+
React-RCTVibration:
|
|
394
|
+
:path: "../../node_modules/react-native/Libraries/Vibration"
|
|
395
|
+
React-runtimeexecutor:
|
|
396
|
+
:path: "../../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
397
|
+
ReactCommon:
|
|
398
|
+
:path: "../../node_modules/react-native/ReactCommon"
|
|
399
|
+
ReactTestApp-DevSupport:
|
|
400
|
+
:path: "../../node_modules/react-native-test-app"
|
|
401
|
+
ReactTestApp-Resources:
|
|
402
|
+
:path: ".."
|
|
403
|
+
Yoga:
|
|
404
|
+
:path: "../../node_modules/react-native/ReactCommon/yoga"
|
|
405
|
+
|
|
406
|
+
SPEC CHECKSUMS:
|
|
407
|
+
boost: a7c83b31436843459a1961bfd74b96033dc77234
|
|
408
|
+
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
|
|
409
|
+
FBLazyVector: 2b47ff52037bd9ae07cc9b051c9975797814b736
|
|
410
|
+
FBReactNativeSpec: 077145af227b87804441c945101b5587c04ad00c
|
|
411
|
+
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
412
|
+
glog: 476ee3e89abb49e07f822b48323c51c57124b572
|
|
413
|
+
RCT-Folly: 4d8508a426467c48885f1151029bc15fa5d7b3b8
|
|
414
|
+
RCTRequired: 0f06b6068f530932d10e1a01a5352fad4eaacb74
|
|
415
|
+
RCTTypeSafety: b0ee81f10ef1b7d977605a2b266823dabd565e65
|
|
416
|
+
React: 3becd12bd51ea8a43bdde7e09d0f40fba7820e03
|
|
417
|
+
React-callinvoker: 11abfff50e6bf7a55b3a90b4dc2187f71f224593
|
|
418
|
+
React-Codegen: f8946ce0768fb8e92e092e30944489c4b2955b2d
|
|
419
|
+
React-Core: 203cdb6ee2657b198d97d41031c249161060e6ca
|
|
420
|
+
React-CoreModules: 6eb0c06a4a223fde2cb6a8d0f44f58b67e808942
|
|
421
|
+
React-cxxreact: afb0c6c07d19adbd850747fedeac20c6832d40b9
|
|
422
|
+
React-jsi: 14d37a6db2af2c1a49f6f5c2e4ee667c364ae45c
|
|
423
|
+
React-jsiexecutor: 45c0496ca8cef6b02d9fa0274c25cf458fe91a56
|
|
424
|
+
React-jsinspector: eb202e43b3879aba9a14f3f65788aec85d4e1ea9
|
|
425
|
+
React-logger: 98f663b292a60967ebbc6d803ae96c1381183b6d
|
|
426
|
+
react-native-webview: 994b9f8fbb504d6314dc40d83f94f27c6831b3bf
|
|
427
|
+
React-perflogger: 0458a87ea9a7342079e7a31b0d32b3734fb8415f
|
|
428
|
+
React-RCTActionSheet: 22538001ea2926dea001111dd2846c13a0730bc9
|
|
429
|
+
React-RCTAnimation: 732ce66878d4aa151d56a0d142b1105aa12fd313
|
|
430
|
+
React-RCTBlob: 9cb9e3e9a41d27be34aaf89b0e0f52c7ca415d57
|
|
431
|
+
React-RCTImage: 6bd16627eb9c4bb79903c4cdec7c551266ee1a5b
|
|
432
|
+
React-RCTLinking: e9edfc8919c8fa9a3f3c7b34362811f58a2ebba4
|
|
433
|
+
React-RCTNetwork: 880eccd21bbe2660a0b63da5ccba75c46eceeaa6
|
|
434
|
+
React-RCTSettings: 8c85d8188c97d6c6bd470af6631a6c4555b79bb3
|
|
435
|
+
React-RCTText: bbd275ee287730c5acbab1aadc0db39c25c5c64e
|
|
436
|
+
React-RCTVibration: 9819a3bf6230e4b2a99877c21268b0b2416157a1
|
|
437
|
+
React-runtimeexecutor: b1f1995089b90696dbc2a7ffe0059a80db5c8eb1
|
|
438
|
+
ReactCommon: 149e2c0acab9bac61378da0db5b2880a1b5ff59b
|
|
439
|
+
ReactTestApp-DevSupport: 1646ce70be36400a60ca18608284f3f7099a35c1
|
|
440
|
+
ReactTestApp-Resources: ff5f151e465e890010b417ce65ca6c5de6aeccbb
|
|
441
|
+
Yoga: c4d61225a466f250c35c1ee78d2d0b3d41fe661c
|
|
442
|
+
|
|
443
|
+
PODFILE CHECKSUM: 8344c021910ed9b6a9bb9985ff8f7f05a68b19c1
|
|
444
|
+
|
|
445
|
+
COCOAPODS: 1.11.3
|
package/ios/Podfile
ADDED
package/ios/Podfile.lock
ADDED