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