@snowplow/react-native-tracker 1.3.0 → 2.0.0

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.
Files changed (240) hide show
  1. package/.editorconfig +15 -0
  2. package/.eslintignore +6 -0
  3. package/.gitattributes +3 -0
  4. package/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
  5. package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  6. package/.github/actions/setup/action.yml +28 -0
  7. package/.github/workflows/build.yml +150 -0
  8. package/.github/workflows/deploy.yml +98 -0
  9. package/.github/workflows/e2e-android.yml +121 -0
  10. package/.github/workflows/e2e-ios.yml +90 -0
  11. package/.github/workflows/snyk.yml +21 -0
  12. package/.gitignore +70 -0
  13. package/.npmignore +60 -0
  14. package/.nvmrc +1 -0
  15. package/.watchmanconfig +1 -0
  16. package/.yarnrc +3 -0
  17. package/CHANGELOG +166 -0
  18. package/CONTRIBUTING.md +80 -0
  19. package/LICENSE +1 -1
  20. package/README.md +24 -111
  21. package/android/build.gradle +93 -37
  22. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  23. package/android/gradle/wrapper/gradle-wrapper.properties +1 -2
  24. package/android/gradle.properties +5 -2
  25. package/android/gradlew +172 -110
  26. package/android/gradlew.bat +24 -19
  27. package/android/src/main/AndroidManifest.xml +1 -3
  28. package/android/src/main/AndroidManifestNew.xml +2 -0
  29. package/android/src/main/java/com/snowplow/reactnativetracker/ReactNativeTrackerModule.kt +704 -0
  30. package/android/src/main/java/com/snowplow/reactnativetracker/ReactNativeTrackerPackage.kt +17 -0
  31. package/android/src/main/java/com/snowplow/reactnativetracker/util/ConfigUtil.kt +271 -0
  32. package/android/src/main/java/com/snowplow/reactnativetracker/util/EventUtil.kt +213 -0
  33. package/android/src/main/java/com/snowplow/reactnativetracker/util/TrackerVersion.kt +5 -0
  34. package/babel.config.js +3 -0
  35. package/example/.watchmanconfig +1 -0
  36. package/example/Gemfile +6 -0
  37. package/example/android/app/build.gradle +129 -0
  38. package/example/android/app/debug.keystore +0 -0
  39. package/example/android/app/proguard-rules.pro +10 -0
  40. package/example/android/app/src/androidTest/java/com/reactnativetrackerexample/DetoxTest.java +36 -0
  41. package/example/android/app/src/androidTest/java/com/reactnativetrackerexample/DetoxTestAppJUnitRunner.java +21 -0
  42. package/example/android/app/src/debug/AndroidManifest.xml +13 -0
  43. package/example/android/app/src/debug/java/com/reactnativetrackerexample/ReactNativeFlipper.java +75 -0
  44. package/example/android/app/src/main/AndroidManifest.xml +26 -0
  45. package/example/android/app/src/main/java/com/reactnativetrackerexample/MainActivity.java +32 -0
  46. package/example/android/app/src/main/java/com/reactnativetrackerexample/MainApplication.java +62 -0
  47. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  48. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  49. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  50. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  51. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  52. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  53. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  54. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  55. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  56. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  57. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  58. package/example/android/app/src/main/res/values/strings.xml +3 -0
  59. package/example/android/app/src/main/res/values/styles.xml +9 -0
  60. package/example/android/app/src/release/java/com/reactnativetrackerexample/ReactNativeFlipper.java +20 -0
  61. package/example/android/build.gradle +31 -0
  62. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  63. package/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  64. package/example/android/gradle.properties +44 -0
  65. package/example/android/gradlew +244 -0
  66. package/example/android/gradlew.bat +92 -0
  67. package/example/android/settings.gradle +4 -0
  68. package/example/app.json +4 -0
  69. package/example/babel.config.js +17 -0
  70. package/example/detox.config.js +92 -0
  71. package/example/e2e/config.json +10 -0
  72. package/example/e2e/emitEvents.e2e.detox.js +108 -0
  73. package/example/e2e/environment.js +23 -0
  74. package/example/e2e/helpers/microCommands.js +153 -0
  75. package/example/e2e/helpers/microHelpers.js +346 -0
  76. package/example/e2e/helpers/microHelpers.test.js +308 -0
  77. package/example/e2e/helpers/schemas.js +62 -0
  78. package/example/e2e/jest.config.js +16 -0
  79. package/example/e2e/setup.js +4 -0
  80. package/example/e2e/testEvents.micro.test.js +300 -0
  81. package/example/index.js +5 -0
  82. package/example/ios/.xcode.env +11 -0
  83. package/example/ios/Podfile +64 -0
  84. package/example/ios/Podfile.lock +737 -0
  85. package/example/ios/ReactNativeTrackerExample/AppDelegate.h +6 -0
  86. package/example/ios/ReactNativeTrackerExample/AppDelegate.mm +26 -0
  87. package/example/ios/ReactNativeTrackerExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  88. package/example/ios/ReactNativeTrackerExample/Images.xcassets/Contents.json +6 -0
  89. package/example/ios/ReactNativeTrackerExample/Info.plist +55 -0
  90. package/example/ios/ReactNativeTrackerExample/LaunchScreen.storyboard +47 -0
  91. package/example/ios/ReactNativeTrackerExample/main.m +10 -0
  92. package/example/ios/ReactNativeTrackerExample-Bridging-Header.h +3 -0
  93. package/example/ios/ReactNativeTrackerExample.xcodeproj/project.pbxproj +722 -0
  94. package/{ios/RNSnowplowTracker.xcodeproj/xcshareddata/xcschemes/RNSnowplowTracker.xcscheme → example/ios/ReactNativeTrackerExample.xcodeproj/xcshareddata/xcschemes/ReactNativeTrackerExample.xcscheme} +29 -21
  95. package/example/ios/ReactNativeTrackerExample.xcworkspace/contents.xcworkspacedata +10 -0
  96. package/example/ios/ReactNativeTrackerExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  97. package/example/ios/ReactNativeTrackerExampleTests/Info.plist +24 -0
  98. package/example/ios/ReactNativeTrackerExampleTests/ReactNativeTrackerExampleTests.m +66 -0
  99. package/example/metro.config.js +45 -0
  100. package/example/package.json +54 -0
  101. package/example/react-native.config.js +10 -0
  102. package/example/src/App.js +557 -0
  103. package/example/tsconfig.json +5 -0
  104. package/example/yarn.lock +7379 -0
  105. package/ios/ReactNativeTracker-Bridging-Header.h +2 -0
  106. package/ios/ReactNativeTracker.mm +165 -0
  107. package/ios/ReactNativeTracker.swift +757 -0
  108. package/ios/{RNSnowplowTracker.xcodeproj → ReactNativeTracker.xcodeproj}/project.pbxproj +55 -79
  109. package/ios/Util/ConfigUtils.swift +206 -0
  110. package/ios/Util/TrackerVersion.swift +3 -0
  111. package/ios/Util/Utilities.swift +37 -0
  112. package/lefthook.yml +11 -0
  113. package/lib/commonjs/api.js +475 -0
  114. package/lib/commonjs/api.js.map +1 -0
  115. package/lib/commonjs/configurations.js +209 -0
  116. package/lib/commonjs/configurations.js.map +1 -0
  117. package/lib/commonjs/constants.js +85 -0
  118. package/lib/commonjs/constants.js.map +1 -0
  119. package/lib/commonjs/events.js +256 -0
  120. package/lib/commonjs/events.js.map +1 -0
  121. package/lib/commonjs/index.js +141 -0
  122. package/lib/commonjs/index.js.map +1 -0
  123. package/lib/commonjs/jsCore.js +393 -0
  124. package/lib/commonjs/jsCore.js.map +1 -0
  125. package/lib/commonjs/native.js +29 -0
  126. package/lib/commonjs/native.js.map +1 -0
  127. package/lib/commonjs/subject.js +248 -0
  128. package/lib/commonjs/subject.js.map +1 -0
  129. package/lib/commonjs/tracker.js +221 -0
  130. package/lib/commonjs/tracker.js.map +1 -0
  131. package/lib/commonjs/types.js +2 -0
  132. package/lib/commonjs/types.js.map +1 -0
  133. package/lib/commonjs/utils.js +85 -0
  134. package/lib/commonjs/utils.js.map +1 -0
  135. package/lib/commonjs/webViewInterface.js +79 -0
  136. package/lib/commonjs/webViewInterface.js.map +1 -0
  137. package/lib/module/api.js +439 -0
  138. package/lib/module/api.js.map +1 -0
  139. package/lib/module/configurations.js +197 -0
  140. package/lib/module/configurations.js.map +1 -0
  141. package/lib/module/constants.js +80 -0
  142. package/lib/module/constants.js.map +1 -0
  143. package/lib/module/events.js +240 -0
  144. package/lib/module/events.js.map +1 -0
  145. package/lib/module/index.js +129 -0
  146. package/lib/module/index.js.map +1 -0
  147. package/lib/module/jsCore.js +390 -0
  148. package/lib/module/jsCore.js.map +1 -0
  149. package/lib/module/native.js +25 -0
  150. package/lib/module/native.js.map +1 -0
  151. package/lib/module/subject.js +235 -0
  152. package/lib/module/subject.js.map +1 -0
  153. package/lib/module/tracker.js +209 -0
  154. package/lib/module/tracker.js.map +1 -0
  155. package/lib/module/types.js +2 -0
  156. package/lib/module/types.js.map +1 -0
  157. package/lib/module/utils.js +79 -0
  158. package/lib/module/utils.js.map +1 -0
  159. package/lib/module/webViewInterface.js +75 -0
  160. package/lib/module/webViewInterface.js.map +1 -0
  161. package/lib/typescript/__tests__/api.test.d.ts +2 -0
  162. package/lib/typescript/__tests__/api.test.d.ts.map +1 -0
  163. package/lib/typescript/__tests__/configurations.test.d.ts +2 -0
  164. package/lib/typescript/__tests__/configurations.test.d.ts.map +1 -0
  165. package/lib/typescript/__tests__/events.test.d.ts +2 -0
  166. package/lib/typescript/__tests__/events.test.d.ts.map +1 -0
  167. package/lib/typescript/__tests__/index.test.d.ts +2 -0
  168. package/lib/typescript/__tests__/index.test.d.ts.map +1 -0
  169. package/lib/typescript/__tests__/jsCore.test.d.ts +2 -0
  170. package/lib/typescript/__tests__/jsCore.test.d.ts.map +1 -0
  171. package/lib/typescript/__tests__/utils.test.d.ts +2 -0
  172. package/lib/typescript/__tests__/utils.test.d.ts.map +1 -0
  173. package/lib/typescript/api.d.ts +226 -0
  174. package/lib/typescript/api.d.ts.map +1 -0
  175. package/lib/typescript/configurations.d.ts +73 -0
  176. package/lib/typescript/configurations.d.ts.map +1 -0
  177. package/lib/typescript/constants.d.ts +59 -0
  178. package/lib/typescript/constants.d.ts.map +1 -0
  179. package/lib/typescript/events.d.ts +101 -0
  180. package/lib/typescript/events.d.ts.map +1 -0
  181. package/lib/typescript/index.d.ts +27 -0
  182. package/lib/typescript/index.d.ts.map +1 -0
  183. package/lib/typescript/jsCore.d.ts +140 -0
  184. package/lib/typescript/jsCore.d.ts.map +1 -0
  185. package/lib/typescript/native.d.ts +4 -0
  186. package/lib/typescript/native.d.ts.map +1 -0
  187. package/lib/typescript/subject.d.ts +91 -0
  188. package/lib/typescript/subject.d.ts.map +1 -0
  189. package/lib/typescript/tracker.d.ts +93 -0
  190. package/lib/typescript/tracker.d.ts.map +1 -0
  191. package/{dist/index.d.ts → lib/typescript/types.d.ts} +188 -75
  192. package/lib/typescript/types.d.ts.map +1 -0
  193. package/lib/typescript/utils.d.ts +35 -0
  194. package/lib/typescript/utils.d.ts.map +1 -0
  195. package/lib/typescript/webViewInterface.d.ts +15 -0
  196. package/lib/typescript/webViewInterface.d.ts.map +1 -0
  197. package/package.json +138 -51
  198. package/scripts/bootstrap.js +29 -0
  199. package/snowplow-react-native-tracker.podspec +42 -0
  200. package/src/__mocks__/react-native.js +7 -0
  201. package/src/__tests__/api.test.ts +34 -0
  202. package/src/__tests__/configurations.test.ts +620 -0
  203. package/src/__tests__/events.test.ts +749 -0
  204. package/src/__tests__/index.test.ts +27 -0
  205. package/src/__tests__/jsCore.test.ts +169 -0
  206. package/src/__tests__/utils.test.ts +23 -0
  207. package/src/api.ts +535 -0
  208. package/src/configurations.ts +337 -0
  209. package/src/constants.ts +102 -0
  210. package/src/events.ts +330 -0
  211. package/src/index.ts +189 -0
  212. package/src/jsCore.ts +553 -0
  213. package/src/native.ts +34 -0
  214. package/src/subject.ts +315 -0
  215. package/src/tracker.ts +330 -0
  216. package/src/types.ts +1087 -0
  217. package/src/utils.ts +78 -0
  218. package/src/webViewInterface.ts +105 -0
  219. package/tsconfig.build.json +5 -0
  220. package/tsconfig.json +28 -0
  221. package/turbo.json +34 -0
  222. package/yarn.lock +9333 -0
  223. package/RNSnowplowTracker.podspec +0 -24
  224. package/android/src/main/java/com/snowplowanalytics/react/tracker/RNSnowplowTrackerModule.java +0 -750
  225. package/android/src/main/java/com/snowplowanalytics/react/tracker/RNSnowplowTrackerPackage.java +0 -29
  226. package/android/src/main/java/com/snowplowanalytics/react/util/ConfigUtil.java +0 -351
  227. package/android/src/main/java/com/snowplowanalytics/react/util/EventUtil.java +0 -339
  228. package/android/src/main/java/com/snowplowanalytics/react/util/TrackerVersion.java +0 -7
  229. package/dist/index.js +0 -1650
  230. package/dist/index.js.map +0 -1
  231. package/ios/RNSnowplowTracker.h +0 -34
  232. package/ios/RNSnowplowTracker.m +0 -911
  233. package/ios/Util/NSDictionary+RNSP_TypeMethods.h +0 -33
  234. package/ios/Util/NSDictionary+RNSP_TypeMethods.m +0 -40
  235. package/ios/Util/RNConfigUtils.h +0 -44
  236. package/ios/Util/RNConfigUtils.m +0 -209
  237. package/ios/Util/RNTrackerVersion.h +0 -27
  238. package/ios/Util/RNTrackerVersion.m +0 -27
  239. package/ios/Util/RNUtilities.h +0 -32
  240. package/ios/Util/RNUtilities.m +0 -68
@@ -0,0 +1,737 @@
1
+ PODS:
2
+ - boost (1.76.0)
3
+ - CocoaAsyncSocket (7.6.5)
4
+ - DoubleConversion (1.1.6)
5
+ - FBLazyVector (0.72.4)
6
+ - FBReactNativeSpec (0.72.4):
7
+ - RCT-Folly (= 2021.07.22.00)
8
+ - RCTRequired (= 0.72.4)
9
+ - RCTTypeSafety (= 0.72.4)
10
+ - React-Core (= 0.72.4)
11
+ - React-jsi (= 0.72.4)
12
+ - ReactCommon/turbomodule/core (= 0.72.4)
13
+ - Flipper (0.182.0):
14
+ - Flipper-Folly (~> 2.6)
15
+ - Flipper-Boost-iOSX (1.76.0.1.11)
16
+ - Flipper-DoubleConversion (3.2.0.1)
17
+ - Flipper-Fmt (7.1.7)
18
+ - Flipper-Folly (2.6.10):
19
+ - Flipper-Boost-iOSX
20
+ - Flipper-DoubleConversion
21
+ - Flipper-Fmt (= 7.1.7)
22
+ - Flipper-Glog
23
+ - libevent (~> 2.1.12)
24
+ - OpenSSL-Universal (= 1.1.1100)
25
+ - Flipper-Glog (0.5.0.5)
26
+ - Flipper-PeerTalk (0.0.4)
27
+ - FlipperKit (0.182.0):
28
+ - FlipperKit/Core (= 0.182.0)
29
+ - FlipperKit/Core (0.182.0):
30
+ - Flipper (~> 0.182.0)
31
+ - FlipperKit/CppBridge
32
+ - FlipperKit/FBCxxFollyDynamicConvert
33
+ - FlipperKit/FBDefines
34
+ - FlipperKit/FKPortForwarding
35
+ - SocketRocket (~> 0.6.0)
36
+ - FlipperKit/CppBridge (0.182.0):
37
+ - Flipper (~> 0.182.0)
38
+ - FlipperKit/FBCxxFollyDynamicConvert (0.182.0):
39
+ - Flipper-Folly (~> 2.6)
40
+ - FlipperKit/FBDefines (0.182.0)
41
+ - FlipperKit/FKPortForwarding (0.182.0):
42
+ - CocoaAsyncSocket (~> 7.6)
43
+ - Flipper-PeerTalk (~> 0.0.4)
44
+ - FlipperKit/FlipperKitHighlightOverlay (0.182.0)
45
+ - FlipperKit/FlipperKitLayoutHelpers (0.182.0):
46
+ - FlipperKit/Core
47
+ - FlipperKit/FlipperKitHighlightOverlay
48
+ - FlipperKit/FlipperKitLayoutTextSearchable
49
+ - FlipperKit/FlipperKitLayoutIOSDescriptors (0.182.0):
50
+ - FlipperKit/Core
51
+ - FlipperKit/FlipperKitHighlightOverlay
52
+ - FlipperKit/FlipperKitLayoutHelpers
53
+ - YogaKit (~> 1.18)
54
+ - FlipperKit/FlipperKitLayoutPlugin (0.182.0):
55
+ - FlipperKit/Core
56
+ - FlipperKit/FlipperKitHighlightOverlay
57
+ - FlipperKit/FlipperKitLayoutHelpers
58
+ - FlipperKit/FlipperKitLayoutIOSDescriptors
59
+ - FlipperKit/FlipperKitLayoutTextSearchable
60
+ - YogaKit (~> 1.18)
61
+ - FlipperKit/FlipperKitLayoutTextSearchable (0.182.0)
62
+ - FlipperKit/FlipperKitNetworkPlugin (0.182.0):
63
+ - FlipperKit/Core
64
+ - FlipperKit/FlipperKitReactPlugin (0.182.0):
65
+ - FlipperKit/Core
66
+ - FlipperKit/FlipperKitUserDefaultsPlugin (0.182.0):
67
+ - FlipperKit/Core
68
+ - FlipperKit/SKIOSNetworkPlugin (0.182.0):
69
+ - FlipperKit/Core
70
+ - FlipperKit/FlipperKitNetworkPlugin
71
+ - FMDB (2.7.5):
72
+ - FMDB/standard (= 2.7.5)
73
+ - FMDB/standard (2.7.5)
74
+ - fmt (6.2.1)
75
+ - glog (0.3.5)
76
+ - hermes-engine (0.72.4):
77
+ - hermes-engine/Pre-built (= 0.72.4)
78
+ - hermes-engine/Pre-built (0.72.4)
79
+ - libevent (2.1.12)
80
+ - OpenSSL-Universal (1.1.1100)
81
+ - RCT-Folly (2021.07.22.00):
82
+ - boost
83
+ - DoubleConversion
84
+ - fmt (~> 6.2.1)
85
+ - glog
86
+ - RCT-Folly/Default (= 2021.07.22.00)
87
+ - RCT-Folly/Default (2021.07.22.00):
88
+ - boost
89
+ - DoubleConversion
90
+ - fmt (~> 6.2.1)
91
+ - glog
92
+ - RCT-Folly/Futures (2021.07.22.00):
93
+ - boost
94
+ - DoubleConversion
95
+ - fmt (~> 6.2.1)
96
+ - glog
97
+ - libevent
98
+ - RCTRequired (0.72.4)
99
+ - RCTTypeSafety (0.72.4):
100
+ - FBLazyVector (= 0.72.4)
101
+ - RCTRequired (= 0.72.4)
102
+ - React-Core (= 0.72.4)
103
+ - React (0.72.4):
104
+ - React-Core (= 0.72.4)
105
+ - React-Core/DevSupport (= 0.72.4)
106
+ - React-Core/RCTWebSocket (= 0.72.4)
107
+ - React-RCTActionSheet (= 0.72.4)
108
+ - React-RCTAnimation (= 0.72.4)
109
+ - React-RCTBlob (= 0.72.4)
110
+ - React-RCTImage (= 0.72.4)
111
+ - React-RCTLinking (= 0.72.4)
112
+ - React-RCTNetwork (= 0.72.4)
113
+ - React-RCTSettings (= 0.72.4)
114
+ - React-RCTText (= 0.72.4)
115
+ - React-RCTVibration (= 0.72.4)
116
+ - React-callinvoker (0.72.4)
117
+ - React-Codegen (0.72.4):
118
+ - DoubleConversion
119
+ - FBReactNativeSpec
120
+ - glog
121
+ - hermes-engine
122
+ - RCT-Folly
123
+ - RCTRequired
124
+ - RCTTypeSafety
125
+ - React-Core
126
+ - React-jsi
127
+ - React-jsiexecutor
128
+ - React-NativeModulesApple
129
+ - React-rncore
130
+ - ReactCommon/turbomodule/bridging
131
+ - ReactCommon/turbomodule/core
132
+ - React-Core (0.72.4):
133
+ - glog
134
+ - hermes-engine
135
+ - RCT-Folly (= 2021.07.22.00)
136
+ - React-Core/Default (= 0.72.4)
137
+ - React-cxxreact
138
+ - React-hermes
139
+ - React-jsi
140
+ - React-jsiexecutor
141
+ - React-perflogger
142
+ - React-runtimeexecutor
143
+ - React-utils
144
+ - SocketRocket (= 0.6.1)
145
+ - Yoga
146
+ - React-Core/CoreModulesHeaders (0.72.4):
147
+ - glog
148
+ - hermes-engine
149
+ - RCT-Folly (= 2021.07.22.00)
150
+ - React-Core/Default
151
+ - React-cxxreact
152
+ - React-hermes
153
+ - React-jsi
154
+ - React-jsiexecutor
155
+ - React-perflogger
156
+ - React-runtimeexecutor
157
+ - React-utils
158
+ - SocketRocket (= 0.6.1)
159
+ - Yoga
160
+ - React-Core/Default (0.72.4):
161
+ - glog
162
+ - hermes-engine
163
+ - RCT-Folly (= 2021.07.22.00)
164
+ - React-cxxreact
165
+ - React-hermes
166
+ - React-jsi
167
+ - React-jsiexecutor
168
+ - React-perflogger
169
+ - React-runtimeexecutor
170
+ - React-utils
171
+ - SocketRocket (= 0.6.1)
172
+ - Yoga
173
+ - React-Core/DevSupport (0.72.4):
174
+ - glog
175
+ - hermes-engine
176
+ - RCT-Folly (= 2021.07.22.00)
177
+ - React-Core/Default (= 0.72.4)
178
+ - React-Core/RCTWebSocket (= 0.72.4)
179
+ - React-cxxreact
180
+ - React-hermes
181
+ - React-jsi
182
+ - React-jsiexecutor
183
+ - React-jsinspector (= 0.72.4)
184
+ - React-perflogger
185
+ - React-runtimeexecutor
186
+ - React-utils
187
+ - SocketRocket (= 0.6.1)
188
+ - Yoga
189
+ - React-Core/RCTActionSheetHeaders (0.72.4):
190
+ - glog
191
+ - hermes-engine
192
+ - RCT-Folly (= 2021.07.22.00)
193
+ - React-Core/Default
194
+ - React-cxxreact
195
+ - React-hermes
196
+ - React-jsi
197
+ - React-jsiexecutor
198
+ - React-perflogger
199
+ - React-runtimeexecutor
200
+ - React-utils
201
+ - SocketRocket (= 0.6.1)
202
+ - Yoga
203
+ - React-Core/RCTAnimationHeaders (0.72.4):
204
+ - glog
205
+ - hermes-engine
206
+ - RCT-Folly (= 2021.07.22.00)
207
+ - React-Core/Default
208
+ - React-cxxreact
209
+ - React-hermes
210
+ - React-jsi
211
+ - React-jsiexecutor
212
+ - React-perflogger
213
+ - React-runtimeexecutor
214
+ - React-utils
215
+ - SocketRocket (= 0.6.1)
216
+ - Yoga
217
+ - React-Core/RCTBlobHeaders (0.72.4):
218
+ - glog
219
+ - hermes-engine
220
+ - RCT-Folly (= 2021.07.22.00)
221
+ - React-Core/Default
222
+ - React-cxxreact
223
+ - React-hermes
224
+ - React-jsi
225
+ - React-jsiexecutor
226
+ - React-perflogger
227
+ - React-runtimeexecutor
228
+ - React-utils
229
+ - SocketRocket (= 0.6.1)
230
+ - Yoga
231
+ - React-Core/RCTImageHeaders (0.72.4):
232
+ - glog
233
+ - hermes-engine
234
+ - RCT-Folly (= 2021.07.22.00)
235
+ - React-Core/Default
236
+ - React-cxxreact
237
+ - React-hermes
238
+ - React-jsi
239
+ - React-jsiexecutor
240
+ - React-perflogger
241
+ - React-runtimeexecutor
242
+ - React-utils
243
+ - SocketRocket (= 0.6.1)
244
+ - Yoga
245
+ - React-Core/RCTLinkingHeaders (0.72.4):
246
+ - glog
247
+ - hermes-engine
248
+ - RCT-Folly (= 2021.07.22.00)
249
+ - React-Core/Default
250
+ - React-cxxreact
251
+ - React-hermes
252
+ - React-jsi
253
+ - React-jsiexecutor
254
+ - React-perflogger
255
+ - React-runtimeexecutor
256
+ - React-utils
257
+ - SocketRocket (= 0.6.1)
258
+ - Yoga
259
+ - React-Core/RCTNetworkHeaders (0.72.4):
260
+ - glog
261
+ - hermes-engine
262
+ - RCT-Folly (= 2021.07.22.00)
263
+ - React-Core/Default
264
+ - React-cxxreact
265
+ - React-hermes
266
+ - React-jsi
267
+ - React-jsiexecutor
268
+ - React-perflogger
269
+ - React-runtimeexecutor
270
+ - React-utils
271
+ - SocketRocket (= 0.6.1)
272
+ - Yoga
273
+ - React-Core/RCTSettingsHeaders (0.72.4):
274
+ - glog
275
+ - hermes-engine
276
+ - RCT-Folly (= 2021.07.22.00)
277
+ - React-Core/Default
278
+ - React-cxxreact
279
+ - React-hermes
280
+ - React-jsi
281
+ - React-jsiexecutor
282
+ - React-perflogger
283
+ - React-runtimeexecutor
284
+ - React-utils
285
+ - SocketRocket (= 0.6.1)
286
+ - Yoga
287
+ - React-Core/RCTTextHeaders (0.72.4):
288
+ - glog
289
+ - hermes-engine
290
+ - RCT-Folly (= 2021.07.22.00)
291
+ - React-Core/Default
292
+ - React-cxxreact
293
+ - React-hermes
294
+ - React-jsi
295
+ - React-jsiexecutor
296
+ - React-perflogger
297
+ - React-runtimeexecutor
298
+ - React-utils
299
+ - SocketRocket (= 0.6.1)
300
+ - Yoga
301
+ - React-Core/RCTVibrationHeaders (0.72.4):
302
+ - glog
303
+ - hermes-engine
304
+ - RCT-Folly (= 2021.07.22.00)
305
+ - React-Core/Default
306
+ - React-cxxreact
307
+ - React-hermes
308
+ - React-jsi
309
+ - React-jsiexecutor
310
+ - React-perflogger
311
+ - React-runtimeexecutor
312
+ - React-utils
313
+ - SocketRocket (= 0.6.1)
314
+ - Yoga
315
+ - React-Core/RCTWebSocket (0.72.4):
316
+ - glog
317
+ - hermes-engine
318
+ - RCT-Folly (= 2021.07.22.00)
319
+ - React-Core/Default (= 0.72.4)
320
+ - React-cxxreact
321
+ - React-hermes
322
+ - React-jsi
323
+ - React-jsiexecutor
324
+ - React-perflogger
325
+ - React-runtimeexecutor
326
+ - React-utils
327
+ - SocketRocket (= 0.6.1)
328
+ - Yoga
329
+ - React-CoreModules (0.72.4):
330
+ - RCT-Folly (= 2021.07.22.00)
331
+ - RCTTypeSafety (= 0.72.4)
332
+ - React-Codegen (= 0.72.4)
333
+ - React-Core/CoreModulesHeaders (= 0.72.4)
334
+ - React-jsi (= 0.72.4)
335
+ - React-RCTBlob
336
+ - React-RCTImage (= 0.72.4)
337
+ - ReactCommon/turbomodule/core (= 0.72.4)
338
+ - SocketRocket (= 0.6.1)
339
+ - React-cxxreact (0.72.4):
340
+ - boost (= 1.76.0)
341
+ - DoubleConversion
342
+ - glog
343
+ - hermes-engine
344
+ - RCT-Folly (= 2021.07.22.00)
345
+ - React-callinvoker (= 0.72.4)
346
+ - React-debug (= 0.72.4)
347
+ - React-jsi (= 0.72.4)
348
+ - React-jsinspector (= 0.72.4)
349
+ - React-logger (= 0.72.4)
350
+ - React-perflogger (= 0.72.4)
351
+ - React-runtimeexecutor (= 0.72.4)
352
+ - React-debug (0.72.4)
353
+ - React-hermes (0.72.4):
354
+ - DoubleConversion
355
+ - glog
356
+ - hermes-engine
357
+ - RCT-Folly (= 2021.07.22.00)
358
+ - RCT-Folly/Futures (= 2021.07.22.00)
359
+ - React-cxxreact (= 0.72.4)
360
+ - React-jsi
361
+ - React-jsiexecutor (= 0.72.4)
362
+ - React-jsinspector (= 0.72.4)
363
+ - React-perflogger (= 0.72.4)
364
+ - React-jsi (0.72.4):
365
+ - boost (= 1.76.0)
366
+ - DoubleConversion
367
+ - glog
368
+ - hermes-engine
369
+ - RCT-Folly (= 2021.07.22.00)
370
+ - React-jsiexecutor (0.72.4):
371
+ - DoubleConversion
372
+ - glog
373
+ - hermes-engine
374
+ - RCT-Folly (= 2021.07.22.00)
375
+ - React-cxxreact (= 0.72.4)
376
+ - React-jsi (= 0.72.4)
377
+ - React-perflogger (= 0.72.4)
378
+ - React-jsinspector (0.72.4)
379
+ - React-logger (0.72.4):
380
+ - glog
381
+ - react-native-webview (13.5.1):
382
+ - React-Core
383
+ - React-NativeModulesApple (0.72.4):
384
+ - hermes-engine
385
+ - React-callinvoker
386
+ - React-Core
387
+ - React-cxxreact
388
+ - React-jsi
389
+ - React-runtimeexecutor
390
+ - ReactCommon/turbomodule/bridging
391
+ - ReactCommon/turbomodule/core
392
+ - React-perflogger (0.72.4)
393
+ - React-RCTActionSheet (0.72.4):
394
+ - React-Core/RCTActionSheetHeaders (= 0.72.4)
395
+ - React-RCTAnimation (0.72.4):
396
+ - RCT-Folly (= 2021.07.22.00)
397
+ - RCTTypeSafety (= 0.72.4)
398
+ - React-Codegen (= 0.72.4)
399
+ - React-Core/RCTAnimationHeaders (= 0.72.4)
400
+ - React-jsi (= 0.72.4)
401
+ - ReactCommon/turbomodule/core (= 0.72.4)
402
+ - React-RCTAppDelegate (0.72.4):
403
+ - RCT-Folly
404
+ - RCTRequired
405
+ - RCTTypeSafety
406
+ - React-Core
407
+ - React-CoreModules
408
+ - React-hermes
409
+ - React-NativeModulesApple
410
+ - React-RCTImage
411
+ - React-RCTNetwork
412
+ - React-runtimescheduler
413
+ - ReactCommon/turbomodule/core
414
+ - React-RCTBlob (0.72.4):
415
+ - hermes-engine
416
+ - RCT-Folly (= 2021.07.22.00)
417
+ - React-Codegen (= 0.72.4)
418
+ - React-Core/RCTBlobHeaders (= 0.72.4)
419
+ - React-Core/RCTWebSocket (= 0.72.4)
420
+ - React-jsi (= 0.72.4)
421
+ - React-RCTNetwork (= 0.72.4)
422
+ - ReactCommon/turbomodule/core (= 0.72.4)
423
+ - React-RCTImage (0.72.4):
424
+ - RCT-Folly (= 2021.07.22.00)
425
+ - RCTTypeSafety (= 0.72.4)
426
+ - React-Codegen (= 0.72.4)
427
+ - React-Core/RCTImageHeaders (= 0.72.4)
428
+ - React-jsi (= 0.72.4)
429
+ - React-RCTNetwork (= 0.72.4)
430
+ - ReactCommon/turbomodule/core (= 0.72.4)
431
+ - React-RCTLinking (0.72.4):
432
+ - React-Codegen (= 0.72.4)
433
+ - React-Core/RCTLinkingHeaders (= 0.72.4)
434
+ - React-jsi (= 0.72.4)
435
+ - ReactCommon/turbomodule/core (= 0.72.4)
436
+ - React-RCTNetwork (0.72.4):
437
+ - RCT-Folly (= 2021.07.22.00)
438
+ - RCTTypeSafety (= 0.72.4)
439
+ - React-Codegen (= 0.72.4)
440
+ - React-Core/RCTNetworkHeaders (= 0.72.4)
441
+ - React-jsi (= 0.72.4)
442
+ - ReactCommon/turbomodule/core (= 0.72.4)
443
+ - React-RCTSettings (0.72.4):
444
+ - RCT-Folly (= 2021.07.22.00)
445
+ - RCTTypeSafety (= 0.72.4)
446
+ - React-Codegen (= 0.72.4)
447
+ - React-Core/RCTSettingsHeaders (= 0.72.4)
448
+ - React-jsi (= 0.72.4)
449
+ - ReactCommon/turbomodule/core (= 0.72.4)
450
+ - React-RCTText (0.72.4):
451
+ - React-Core/RCTTextHeaders (= 0.72.4)
452
+ - React-RCTVibration (0.72.4):
453
+ - RCT-Folly (= 2021.07.22.00)
454
+ - React-Codegen (= 0.72.4)
455
+ - React-Core/RCTVibrationHeaders (= 0.72.4)
456
+ - React-jsi (= 0.72.4)
457
+ - ReactCommon/turbomodule/core (= 0.72.4)
458
+ - React-rncore (0.72.4)
459
+ - React-runtimeexecutor (0.72.4):
460
+ - React-jsi (= 0.72.4)
461
+ - React-runtimescheduler (0.72.4):
462
+ - glog
463
+ - hermes-engine
464
+ - RCT-Folly (= 2021.07.22.00)
465
+ - React-callinvoker
466
+ - React-debug
467
+ - React-jsi
468
+ - React-runtimeexecutor
469
+ - React-utils (0.72.4):
470
+ - glog
471
+ - RCT-Folly (= 2021.07.22.00)
472
+ - React-debug
473
+ - ReactCommon/turbomodule/bridging (0.72.4):
474
+ - DoubleConversion
475
+ - glog
476
+ - hermes-engine
477
+ - RCT-Folly (= 2021.07.22.00)
478
+ - React-callinvoker (= 0.72.4)
479
+ - React-cxxreact (= 0.72.4)
480
+ - React-jsi (= 0.72.4)
481
+ - React-logger (= 0.72.4)
482
+ - React-perflogger (= 0.72.4)
483
+ - ReactCommon/turbomodule/core (0.72.4):
484
+ - DoubleConversion
485
+ - glog
486
+ - hermes-engine
487
+ - RCT-Folly (= 2021.07.22.00)
488
+ - React-callinvoker (= 0.72.4)
489
+ - React-cxxreact (= 0.72.4)
490
+ - React-jsi (= 0.72.4)
491
+ - React-logger (= 0.72.4)
492
+ - React-perflogger (= 0.72.4)
493
+ - snowplow-react-native-tracker (2.0.0):
494
+ - RCT-Folly (= 2021.07.22.00)
495
+ - React-Core
496
+ - SnowplowTracker (~> 5.4)
497
+ - SnowplowTracker (5.4.2):
498
+ - FMDB (~> 2.7)
499
+ - SocketRocket (0.6.1)
500
+ - Yoga (1.14.0)
501
+ - YogaKit (1.18.1):
502
+ - Yoga (~> 1.14)
503
+
504
+ DEPENDENCIES:
505
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
506
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
507
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
508
+ - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
509
+ - Flipper (= 0.182.0)
510
+ - Flipper-Boost-iOSX (= 1.76.0.1.11)
511
+ - Flipper-DoubleConversion (= 3.2.0.1)
512
+ - Flipper-Fmt (= 7.1.7)
513
+ - Flipper-Folly (= 2.6.10)
514
+ - Flipper-Glog (= 0.5.0.5)
515
+ - Flipper-PeerTalk (= 0.0.4)
516
+ - FlipperKit (= 0.182.0)
517
+ - FlipperKit/Core (= 0.182.0)
518
+ - FlipperKit/CppBridge (= 0.182.0)
519
+ - FlipperKit/FBCxxFollyDynamicConvert (= 0.182.0)
520
+ - FlipperKit/FBDefines (= 0.182.0)
521
+ - FlipperKit/FKPortForwarding (= 0.182.0)
522
+ - FlipperKit/FlipperKitHighlightOverlay (= 0.182.0)
523
+ - FlipperKit/FlipperKitLayoutPlugin (= 0.182.0)
524
+ - FlipperKit/FlipperKitLayoutTextSearchable (= 0.182.0)
525
+ - FlipperKit/FlipperKitNetworkPlugin (= 0.182.0)
526
+ - FlipperKit/FlipperKitReactPlugin (= 0.182.0)
527
+ - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.182.0)
528
+ - FlipperKit/SKIOSNetworkPlugin (= 0.182.0)
529
+ - FMDB
530
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
531
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
532
+ - libevent (~> 2.1.12)
533
+ - OpenSSL-Universal (= 1.1.1100)
534
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
535
+ - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
536
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
537
+ - React (from `../node_modules/react-native/`)
538
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
539
+ - React-Codegen (from `build/generated/ios`)
540
+ - React-Core (from `../node_modules/react-native/`)
541
+ - React-Core/DevSupport (from `../node_modules/react-native/`)
542
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
543
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
544
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
545
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
546
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
547
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
548
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
549
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
550
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
551
+ - react-native-webview (from `../node_modules/react-native-webview`)
552
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
553
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
554
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
555
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
556
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
557
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
558
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
559
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
560
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
561
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
562
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
563
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
564
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
565
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
566
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
567
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
568
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
569
+ - snowplow-react-native-tracker (from `../..`)
570
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
571
+
572
+ SPEC REPOS:
573
+ trunk:
574
+ - CocoaAsyncSocket
575
+ - Flipper
576
+ - Flipper-Boost-iOSX
577
+ - Flipper-DoubleConversion
578
+ - Flipper-Fmt
579
+ - Flipper-Folly
580
+ - Flipper-Glog
581
+ - Flipper-PeerTalk
582
+ - FlipperKit
583
+ - FMDB
584
+ - fmt
585
+ - libevent
586
+ - OpenSSL-Universal
587
+ - SnowplowTracker
588
+ - SocketRocket
589
+ - YogaKit
590
+
591
+ EXTERNAL SOURCES:
592
+ boost:
593
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
594
+ DoubleConversion:
595
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
596
+ FBLazyVector:
597
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
598
+ FBReactNativeSpec:
599
+ :path: "../node_modules/react-native/React/FBReactNativeSpec"
600
+ glog:
601
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
602
+ hermes-engine:
603
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
604
+ :tag: hermes-2023-08-07-RNv0.72.4-813b2def12bc9df02654b3e3653ae4a68d0572e0
605
+ RCT-Folly:
606
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
607
+ RCTRequired:
608
+ :path: "../node_modules/react-native/Libraries/RCTRequired"
609
+ RCTTypeSafety:
610
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
611
+ React:
612
+ :path: "../node_modules/react-native/"
613
+ React-callinvoker:
614
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
615
+ React-Codegen:
616
+ :path: build/generated/ios
617
+ React-Core:
618
+ :path: "../node_modules/react-native/"
619
+ React-CoreModules:
620
+ :path: "../node_modules/react-native/React/CoreModules"
621
+ React-cxxreact:
622
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
623
+ React-debug:
624
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
625
+ React-hermes:
626
+ :path: "../node_modules/react-native/ReactCommon/hermes"
627
+ React-jsi:
628
+ :path: "../node_modules/react-native/ReactCommon/jsi"
629
+ React-jsiexecutor:
630
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
631
+ React-jsinspector:
632
+ :path: "../node_modules/react-native/ReactCommon/jsinspector"
633
+ React-logger:
634
+ :path: "../node_modules/react-native/ReactCommon/logger"
635
+ react-native-webview:
636
+ :path: "../node_modules/react-native-webview"
637
+ React-NativeModulesApple:
638
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
639
+ React-perflogger:
640
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
641
+ React-RCTActionSheet:
642
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
643
+ React-RCTAnimation:
644
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
645
+ React-RCTAppDelegate:
646
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
647
+ React-RCTBlob:
648
+ :path: "../node_modules/react-native/Libraries/Blob"
649
+ React-RCTImage:
650
+ :path: "../node_modules/react-native/Libraries/Image"
651
+ React-RCTLinking:
652
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
653
+ React-RCTNetwork:
654
+ :path: "../node_modules/react-native/Libraries/Network"
655
+ React-RCTSettings:
656
+ :path: "../node_modules/react-native/Libraries/Settings"
657
+ React-RCTText:
658
+ :path: "../node_modules/react-native/Libraries/Text"
659
+ React-RCTVibration:
660
+ :path: "../node_modules/react-native/Libraries/Vibration"
661
+ React-rncore:
662
+ :path: "../node_modules/react-native/ReactCommon"
663
+ React-runtimeexecutor:
664
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
665
+ React-runtimescheduler:
666
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
667
+ React-utils:
668
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
669
+ ReactCommon:
670
+ :path: "../node_modules/react-native/ReactCommon"
671
+ snowplow-react-native-tracker:
672
+ :path: "../.."
673
+ Yoga:
674
+ :path: "../node_modules/react-native/ReactCommon/yoga"
675
+
676
+ SPEC CHECKSUMS:
677
+ boost: 57d2868c099736d80fcd648bf211b4431e51a558
678
+ CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
679
+ DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
680
+ FBLazyVector: 5d4a3b7f411219a45a6d952f77d2c0a6c9989da5
681
+ FBReactNativeSpec: 3fc2d478e1c4b08276f9dd9128f80ec6d5d85c1f
682
+ Flipper: 6edb735e6c3e332975d1b17956bcc584eccf5818
683
+ Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
684
+ Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
685
+ Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
686
+ Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
687
+ Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
688
+ Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
689
+ FlipperKit: 2efad7007d6745a3f95e4034d547be637f89d3f6
690
+ FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
691
+ fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
692
+ glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
693
+ hermes-engine: 81191603c4eaa01f5e4ae5737a9efcf64756c7b2
694
+ libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
695
+ OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
696
+ RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
697
+ RCTRequired: c0569ecc035894e4a68baecb30fe6a7ea6e399f9
698
+ RCTTypeSafety: e90354072c21236e0bcf1699011e39acd25fea2f
699
+ React: a1be3c6dc0a6e949ccd3e659781aa47bbae1868f
700
+ React-callinvoker: 1020b33f6cb1a1824f9ca2a86609fbce2a73c6ed
701
+ React-Codegen: a0a26badf098d4a779acda922caf74f6ecabed28
702
+ React-Core: 52075b80f10c26f62219d7b5d13d7d8089f027b3
703
+ React-CoreModules: 21abab85d7ad9038ce2b1c33d39e3baaf7dc9244
704
+ React-cxxreact: 4ad1cc861e32fb533dad6ff7a4ea25680fa1c994
705
+ React-debug: 17366a3d5c5d2f5fc04f09101a4af38cb42b54ae
706
+ React-hermes: 37377d0a56aa0cf55c65248271866ce3268cde3f
707
+ React-jsi: 6de8b0ccc6b765b58e4eee9ee38049dbeaf5c221
708
+ React-jsiexecutor: c7f826e40fa9cab5d37cab6130b1af237332b594
709
+ React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f
710
+ React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77
711
+ react-native-webview: 8baa0f5c6d336d6ba488e942bcadea5bf51f050a
712
+ React-NativeModulesApple: edb5ace14f73f4969df6e7b1f3e41bef0012740f
713
+ React-perflogger: 496a1a3dc6737f964107cb3ddae7f9e265ddda58
714
+ React-RCTActionSheet: 02904b932b50e680f4e26e7a686b33ebf7ef3c00
715
+ React-RCTAnimation: 88feaf0a85648fb8fd497ce749829774910276d6
716
+ React-RCTAppDelegate: 5792ac0f0feccb584765fdd7aa81ea320c4d9b0b
717
+ React-RCTBlob: 0dbc9e2a13d241b37d46b53e54630cbad1f0e141
718
+ React-RCTImage: b111645ab901f8e59fc68fbe31f5731bdbeef087
719
+ React-RCTLinking: 3d719727b4c098aad3588aa3559361ee0579f5de
720
+ React-RCTNetwork: b44d3580be05d74556ba4efbf53570f17e38f734
721
+ React-RCTSettings: c0c54b330442c29874cd4dae6e94190dc11a6f6f
722
+ React-RCTText: 9b9f5589d9b649d7246c3f336e116496df28cfe6
723
+ React-RCTVibration: 691c67f3beaf1d084ceed5eb5c1dddd9afa8591e
724
+ React-rncore: 142268f6c92e296dc079aadda3fade778562f9e4
725
+ React-runtimeexecutor: d465ba0c47ef3ed8281143f59605cacc2244d5c7
726
+ React-runtimescheduler: 4941cc1b3cf08b792fbf666342c9fc95f1969035
727
+ React-utils: b79f2411931f9d3ea5781404dcbb2fa8a837e13a
728
+ ReactCommon: 4b2bdcb50a3543e1c2b2849ad44533686610826d
729
+ snowplow-react-native-tracker: e0acb614d407ecd3670d758085bb01b4029723c8
730
+ SnowplowTracker: f954f5fe985411819ccdadd50ce142b7ad17efe2
731
+ SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
732
+ Yoga: 3efc43e0d48686ce2e8c60f99d4e6bd349aff981
733
+ YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
734
+
735
+ PODFILE CHECKSUM: 29cd18006247e70f8bfa782a3bf063fcdb99d7db
736
+
737
+ COCOAPODS: 1.12.0